@import url("reset.css");

	body {
		font-family: "Open Sans";
		position: relative;
	}
	
	#sitewrapper {
		position: relative;
		background-color: #FFF;
	}
	
		header {
			min-width: 1300px;
		}
			header #logo {
				text-align: center;
				height: 90px;
			}
				header #logo img {
					margin-top: 15px;
				}
			
			header nav {
				height: 130px;
				text-align: center;
			}
			header ul#nav {
				height: 40px;
				background-color: #134472;
				text-align: center;
				line-height: 40px;
			}
				header ul#nav li {
					height: 40px;
					display: inline;
					text-transform: uppercase;
					margin-right: 55px;
					font-size: 20px;
				}
				header ul#nav li.no-transform {
					text-transform: none;
				}
				header ul#nav li.nav-last-link {
					margin-right: 0px;
				}
					header ul#nav li a {
						color: #FFBC8C;
						text-decoration: none;
						font-size: 0.8em;
						font-weight: 400;
					}
					header ul#nav li a.select {
						font-weight: bold;
						text-decoration: underline;
						color: #FFF;
					}
			
		main {
			background-color: #f4f4f4;
			min-height: 1000px;
			min-width: 1300px;
		}
		
		main #instruction {
			margin: 0 0 10px 10px;
			padding-top: 10px;
		}
		
		#main-content {
			width: 1000px;
			margin: 0 auto;
		}
		
		main .col {
			width: 50%;
			float: left;
			margin-top: 40px;
		}
		
		main .col h2 {
			font-weight: 400;
			margin-bottom: 20px;
			font-size: 50px;
			color: #7b7b7b;
		}
		main .col p  {
			margin-bottom: 20px;
		}
		
		main .col label {
			text-transform: uppercase;
			width: 175px;
			float: left;
			clear: both;
			text-align: right;
			font-weight: 400;
			margin: 4px 10px 10px 0;
			color: #7b7b7b;
		}
		main .col input, main .col select {
			float: left;
			height: 30px;
			padding: 0 0 0 5px;
			width: 300px;
		}
		
		main input.error, main select.error {
			border: 2px solid red;
		}
		
		.g-recaptcha {
			float: left;
			margin-top: 20px;
		}
			.g-recaptcha.error {
				border: 2px solid red;
			}
		
		#sample-submit {
			height: 40px;
			width: 100px;
			margin-top: 20px;
			color: white;
			background-color: #144474;
		}
		
		p.sample-thankyou {
			display: none;
			font-size: 18px;
		}
		
		