@media
  only screen and (max-width:  640px) /*and (orientation: portrait)
, only screen and (max-height: 640px) and (orientation: landscape)*/ {
	html, body {
		width: 100%;
		-ms-overflow-x: hidden;
		overflow-x: hidden;
		-ms-overflow-y: auto;
		overflow-y: auto;
	}
	
	.mobile {
		display: inherit !important;
	}
	
	.notmobile {
		display: none !important;
	}
	
	body > header
	, body > .content
	, body > .content > footer {
		min-width: 640px;
	}
	
	.customize-support {
		padding-top: 46px;
	}
	
	body.customize-support > header {
		top: 46px;
	}
	
	body.customize-support > header nav {
		top: 175px;
	}
	
	body > header {
		height: auto;
		background-color: transparent;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
	
	body > header > div {
		height: 129px;
		display: block;
		background-color: #fff;
		
		-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
		-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
		position: relative;
  	z-index: 2;
	}
	
	body > header .handle {
		position: absolute;
		right: 0px;
		top: 0px;
		
		display: block;
		width: 140px;
		height: 100%;
		cursor: pointer;
		
		-webkit-touch-action: manipulation;
		-moz-touch-action: manipulation;
		-ms-touch-action: manipulation;
		touch-action: manipulation;
	}
	
	body > header .handle:before {
		content: '';
		
		background-position: 0px 0px;
		background-repeat: no-repeat;
		background-image: url('images/mobile_nav_handle.png');
		
		display: block;
		width: 50px;
		height: 33px;
		
		position: absolute;
		top: 45px;
		right: 45px;
	}

	body > header.open .handle:before {
		background-position: 0px -33px;
	}
	
	body > header .logo {
		display: block;
		margin-left: 45px;
		height: 129px;
	}
	
	body > .content > main > div {
		padding-top: 129px;
	}
	
	body > header.open {
		height: 100%;
	}
	
	body > header nav {
		display: block;
		
		position: fixed;
		left: 0px;
	  top: 129px;
	  bottom: 0px;
	  
	  width: 100%;
	  min-width: 100%;
	  height: auto;
	  
		-ms-overflow-y: auto;
		overflow-y: auto;

		margin: 0px;
		
		background-color: #b4252d;
		
		-webkit-transition: -webkit-transform 300ms ease-in-out;
		-moz-transition: -moz-transform 300ms ease-in-out;
		-ms-transition: -moz-transform 300ms ease-in-out;
		-o-transition: -moz-transform 300ms ease-in-out;
		transition: transform 300ms ease-in-out;
		
		-webkit-transform: translateY(-100%);
		-moz-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		-o-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	
	body > header.open nav {
		-webkit-transform: translateY(0%);
		-moz-transform: translateY(0%);
		-ms-transform: translateY(0%);
		-o-transform: translateY(0%);
		transform: translateY(0%);
	}
	
	body > header nav > ul > li {
		float: none;
		position: relative;
		
		font-family: News Cycle, sans-serif;
		font-size: 33px;
		font-weight: 600;
		color: #fff;
		text-align: left;
		line-height: 115px;
		letter-spacing: 1px;
		height: auto;
		border-bottom: 1px solid #7d262b;
		
		-webkit-touch-action: manipulation;
		-moz-touch-action: manipulation;
		-ms-touch-action: manipulation;
		touch-action: manipulation;
	}
	
	body > header nav > ul > li > a {
		padding: 0px 50px;
		height: 115px;
	}
	
	body > header nav > ul > li > div {
		display: block;
		position: absolute;
		right: 45px;
		left: inherit;
		top: 48px;
		
		width: 42px;
		height: 19px;
		
		background-color: transparent;
		background-repeat: no-repeat;
		background-position: 0px -19px;
		background-image: url('images/mobile_nav_handle2.png');
	}
	
	body > header nav > ul > li.open > div {
		background-position: 0px 0px;
	}
	
	body > header nav > ul > li:hover > a {
		color: #fff;
	}

	body > header nav > ul > li > ul {
		display: block;
		background-color: #851b21;
		position: static;
		height: auto;
		width: 100%;
		overflow: hidden;
		margin: 0px;
		padding: 0px;

		max-height: 0px;
		
		-webkit-transition: max-height 300ms ease, padding 300ms ease;
		-moz-transition: max-height 300ms ease, padding 300ms ease;
		-ms-transition: max-height 300ms ease, padding 300ms ease;
		-o-transition: max-height 300ms ease, padding 300ms ease;
		transition: max-height 300ms ease, padding 300ms ease;
		
		-webkit-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.25);
		-moz-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.25);
		box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.25);
	}
	
	body > header nav > ul > li:focus {
		outline: 0px;
	}

	body > header nav > ul > li.open > ul {
		border-top: 1px solid #7d262b;
		padding: 20px 0px;
	}
	
	body > header nav > ul > li > ul > li {
		padding-left: 80px;
		line-height: 60px;
		
		font-family: Crimson Text, serif;
		font-weight: 400;
		font-size: 33px;
		color: #fff;
	}
	
	body > header nav > ul > li > ul > li > a {
		width: 100%;
		height: 100%;
	}
	
	body > header nav > ul:after {
		display: none;
	}
	
	body > .content {
		padding-bottom: 0px;
		display: block;
	}
	
	body > .content > main, body > .content > footer {
		display: block;
	}
	
	body > .content > main > div, body > .content > footer > div {
		display: block;
	}
	
	body > .content > footer > div {
		position: static;
		display: block;
		height: auto;
	}
	
	body > .content > footer > div > nav {
		width: 545px;
		min-width: 545px;
		font-size: 21px;
	}
	
	body > .content > footer > div > nav > ul {
		width: 260px;
		margin-bottom: 60px;
	}
	
	body > .content > footer > div > nav > ul:nth-child(even) {
		float: right;
	}
	
	body > .content > footer > div > nav > ul:first-child {
		border-left: 1px solid #777777;
	}
	
	body > .content > footer > div > nav > ul:last-child {
		float: none;
		clear: both;
		display: block;
		border-left: 0px;
		border-top: 1px solid #777777;
		width: 100%;
		padding: 20px 0px;
		line-height: 30px;
	}
	
	body > .content > footer > div > nav > ul:last-child br {
		display: none;
	}
	
	body > .content > footer > div > nav > ul:last-child br:after {
		content: ', ';
		display: inline;
	}
	
	body > .content > main > div > header {
		height: 388px;
		background-position: center top;
	}
	
	body > .content > main > div > h1 {
		height: auto;
		line-height: normal;
		padding: 30px 0px;
		font-size: 60px;
		display: block;
		width: auto;
		margin: 0px 50px;
	}
	
	.form_table {
		margin-bottom: 40px;
	}
	
	.form_table td {
		padding: 5px 0px 5px 35px;
		text-align: left;
	}
	
	.form_table label {
		font-size: 23px;
		line-height: 35px;
	}
	
	.form_table input[type=text]
	, .form_table input[type=email]
	, .form_table input[type=tel]
	, .form_table select
	, .form_table textarea {
		width: 355px;
		height: 35px;
		line-height: 35px;
		
		-webkit-box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.1);
		-moz-box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.1);
		box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.1);
		
		font-size: 20px;
		padding: 0px 6px;
	}
	
	.form_table textarea {
		line-height: normal;
		padding: 6px;
		height: auto;
	}
	
	.form_table .file_button {
		height: 35px;
		line-height: 33px;
		font-size: 15px;
		padding: 0px 20px;
		
		-webkit-border-radius: 18px;
		-moz-border-radius: 18px;
		border-radius: 18px;
		
		-webkit-box-shadow: inset 0px -14px 10px rgba(0, 0, 0, 0.1);
		-moz-box-shadow: inset 0px -14px 10px rgba(0, 0, 0, 0.1);
		box-shadow: inset 0px -14px 10px rgba(0, 0, 0, 0.1);
	}
	
	.form_table .file_desc {
		font-size: 25px;
		line-height: 27px;
	}
	
	.radio div {
		width: 22px;
		height: 22px;
		margin-left: 10px;
		
		-webkit-border-radius: 11px;
		-moz-border-radius: 11px;
		border-radius: 11px;
		
		-webkit-box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.33);
		-moz-box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.33);
		box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.33);
	}
	
	.radio div:after {
		height: 8px;
		width: 8px;
		
		margin-top: -4px;
		margin-left: -4px;
		
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;
	}
	
	.parallax_wrapper:after {
		display: none;
	}
}

@media only screen and (max-height: 640px) /*and (orientation: landscape)*/ {
	.customize-support {
	  padding-top: 32px;
	}
	
	body.customize-support > header {
	  top: 32px;
	}
	
	body.customize-support > header nav {
	  top: 161px;
	}
}