/*========== Common Styles ==========*/

	body { line-height: 120%; font-family: arial, sans-serif; color: #767676; background: #dcdcdc url('../img/light.png') no-repeat top center;
	}
	
	a, a:visited { text-decoration: none; color: #004469; }
	a:hover, a:active { outline: 0; }
	input:focus { outline: none; }
	
	::selection { background: #5f9fc8; }
	::-moz-selection { background: #5f9fc8; }
	
	* { -webkit-transition: width .5s; }
	
	hr {
		height: 2px;
		width: 100%;
		background: transparent url('../img/hr.png') repeat-x;
		border: none;
		padding: 0;
		margin: 0;
	}
	
	
/*========== Overhead ==========*/

	.overhead {
		background: url('../img/overhead_arrow.png') no-repeat center top;	
		width: 100%;
		border-top: 5px solid rgba(0, 0, 0, .70);
		height: 13px;
	}
	
	
/*========== Hero ==========*/

	.hero { 
		text-align: center; 
		background: url('../img/shadow.png') no-repeat bottom center;
	}
	
	.hero .logo { margin: 35px 0px; }

/* Title */

	.hero .title {
		font-family: 'BenchNine', arial, sans-serif;
		font-size: 2.50em; /* 36 / 16 */
		letter-spacing: -0.0555555555556em; /* 2 / 36 */
		line-height: 125%;
		text-transform: uppercase;
		color: #004469;
		text-shadow: 0px 1px 0px rgb(255, 255, 255);
		margin-top: 35px;
	}
	
	.hero .description {
		margin-top: 15px;
		font-size: 0.875em; /* 14 / 16 */
		letter-spacing: -0.0714285714286em; /* 1 / 14 */
	}
	
	.hero .highlight { color: #0086be; }
	
/* Countdown */
	
	#counter {
		font-family: 'BenchNine', arial, sans-serif;
		color: #434343;
		font-size: 2.25em; /* 36 / 16 */
		text-shadow: 0px 1px 0px rgb(255, 255, 255);
	}
	
	#counter .item {
		margin-top: 10px;
		margin-bottom: 10px;
		text-align: center;
		line-height: 140px;
		background: url('../img/dash.png') no-repeat top center;
	}
			
	.days, .hours, .minutes, .seconds {
		
		font-size: 0.75em; /* 36 / 16 */
		text-transform: uppercase;
		line-height: 14px;
		padding-top: 15px;
		color: #0086be; 
	}
	
/* Subscription Form */

	#subscription input.text {
		background: rgba(255, 255, 255, 0.15);
		border: 1px solid rgba(255, 255, 255, 0.2);
		box-shadow: inset 0 0 5px 0 rgba(0,0,0, 0.15);
		-webkit-box-shadow: inset 0 0 5px 0 rgba(0,0,0, 0.15);
		width: 342px;
		height: 57px;
		border-radius: 4px;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		line-height: 57px;
		font-size: 0.875em; /* 14 / 16 */
		letter-spacing: -0.0714285714286em; /* 1 / 14 */
		font-family: arial, sans-serif;
		padding-left: 20px;
		color: #a9a9a9;
	}
	
	#subscription input.submit {
		display: inline-block;
		background: url('../img/button_sprite.png') no-repeat;
		background-position: 0px 0px;
		width: 80px;
		height: 57px;
		line-height: 57px;
		cursor: pointer;
		text-indent: -999em;
		border: 0;
		margin-left: 20px;
	}
	
	#subscription input.submit:hover { background-position: 0px -57px; }
	
	.asterisk {
		font-size: 0.75em; /* 12 / 16 */
		letter-spacing: -0.0833333333em; /* 1 /12 */
		color: #0086be;
		padding-top: 10px;
		padding-bottom: 45px;
	}
	
	p#error {
		display: none;
		font-size: 0.875em; /* 14 / 16 */
		color: #c17035;
		padding: 10px 20px;
		background-color: rgba(255, 0, 0, .20);
		margin-bottom: 45px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
	}
	
	p#success {
		display: none;
		font-size: 0.875em; /* 14 / 16 */
		color: #688027;
		padding: 10px 20px;
		background-color: rgba(24, 73, 0, .20);
		margin-bottom: 45px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
	}
	
/*========== Footer ==========*/

	footer { margin-top: 20px; }
	
	.twitter { font-size: 0.75em; }
	
	.twitter a:hover { text-decoration: underline; }
	
	.copyright {
		float: right;
		font-size: 0.75em;
	}	
	
	
/* #Media Queries
================================================== */

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {
		
		.hero .title { font-size: 1.75em; }
		#subscription input.text { width: 260px; }
	
	}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {
	
		.hero { background: transparent; }
		.hero .title { font-size: 1.5em; }
		#subscription input.text { width: 260px; }
	
	}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {
	
		.hero { background: transparent; }
		.hero .title { font-size: 1.25em; }
		#subscription input.text { width: 190px; }
	
	}		