/* Stylesheet */



/***** RESET *****/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration: none;
}



/* Selections */

::selection {
 	color: #fff;
 	text-shadow: none;
 	background: #444;
}

::-moz-selection {
 	color: #fff;
 	text-shadow: none;
 	background: #444;
}

/* Basics */

html, body {
	width: 100%;
	height: 100%;
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	color: #444;
	-webkit-font-smoothing: antialiased;
	background: #DBF4FF;
	background: -moz-linear-gradient(top,  #DBF4FF 0%, #F9FDFF 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#DBF4FF), color-stop(100%,#F9FDFF));
	background: -webkit-linear-gradient(top,  #DBF4FF 0%,#F9FDFF 100%);
	background: -o-linear-gradient(top,  #DBF4FF 0%,#F9FDFF 100%);
	background: -ms-linear-gradient(top,  #DBF4FF 0%,#F9FDFF 100%);
	background: linear-gradient(top,  #DBF4FF 0%,#F9FDFF 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#DBF4FF', endColorstr='#F9FDFF',GradientType=0 );	
}

#container {
	position: fixed;
	width: 500px;
	height: 300px;
	top: 50%;
	left: 50%;
	margin-top: -150px;
	margin-left: -250px;
	text-align: center;
	-webkit-animation-name: bounceInDown;
	-webkit-animation-fill-mode: both;
	-webkit-animation-duration: 1.5s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: bounceInDown;
	-moz-animation-fill-mode: both;
	-moz-animation-duration: 1.5s;
	-moz-animation-iteration-count: 1;
	-moz-animation-timing-function: linear;
	animation-name: bounceInDown;
	animation-fill-mode: both;
	animation-duration: 1.5s;
	animation-iteration-count: 1;
	animation-timing-function: linear;
}

h1 {
	font-size: 77px;
	font-weight: bold;
	color: #3BADE2;
	text-shadow: 0 1px 1px #000;behavior: url(../css/PIE.htc);
	margin-top: 20px;
	line-height:50px;
}

h1 span{
	letter-spacing:0.1em;
	font-size: 30px;
	font-weight: bold;
	text-shadow: 0 0 1px #000;
}

p {
	font-size: 18px;
	line-height: 1.3em;
	color: #4F5E66;
	margin: 1.1em auto;
	text-align: center;
	text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

p a {
	color: #3BADE2;
	border-bottom: 2px solid #3BADE2;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

p a:hover {
	color: #00479D;
	border-bottom: 2px solid #00479D;
} 

#subscribe {
	margin: 0 auto;
	text-align: center;
}

::-webkit-input-placeholder {
   color: rgba(255, 255, 255, 0.4);
}

::-moz-input-placeholder {
   color: rgba(255, 255, 255, 0.4);
}

input {
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	font-size: 25px;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}


input[type=email] {
	outline: none;
	width: 90%;
	padding: 15px;
	margin: 0 auto;
	color: #fff;
	border: none;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.9);
	-moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.9);
	-o-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.9);
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.9);
}

input[type=email]:hover {
	background: rgba(0, 0, 0, 0.5);
}

input[type=email]:focus {
	-webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 1), 0 0 0 5px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, 1), 0 0 0 5px rgba(0, 0, 0, 0.2);
	-o-box-shadow: inset 0 0 8px rgba(0, 0, 0, 1), 0 0 0 5px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 0 8px rgba(0, 0, 0, 1), 0 0 0 5px rgba(0, 0, 0, 0.2);
	background: rgba(0, 0, 0, 0.6);
}

input[type=submit] {
	position: absolute;
	margin-left: -105px;
	margin-top: 5px;
	font-size: 25px;
	color: #222;
	text-shadow: 0 1px 0 #fff;
	padding: 10px;
	width: 100px;
	height: 50px;
	border: none;
	background: #f0f0f0;
	background: -moz-linear-gradient(top, #f0f0f0 0%, #c3d7ff 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f0f0), color-stop(100%,#c3d7ff));
	background: -webkit-linear-gradient(top, #f0f0f0 0%,#c3d7ff 100%);
	background: -o-linear-gradient(top, #f0f0f0 0%,#c3d7ff 100%);
	background: -ms-linear-gradient(top, #f0f0f0 0%,#c3d7ff 100%);
	background: linear-gradient(top, #f0f0f0 0%,#c3d7ff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#c3d7ff',GradientType=0 );
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	-o-box-shadow: 0 0 5px rgba(0, 0, 0, 1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	box-shadow: 0 0 5px rgba(0, 0, 0, 1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer;
}

input[type=submit]:hover {
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
	-o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
	width: 125px;
	margin-left: -130px;
	
}

input[type=submit]:active {
	background: #c3d7ff;
	background: -moz-linear-gradient(top,  #c3d7ff 0%, #f0f0f0 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c3d7ff), color-stop(100%,#f0f0f0));
	background: -webkit-linear-gradient(top,  #c3d7ff 0%,#f0f0f0 100%);
	background: -o-linear-gradient(top,  #c3d7ff 0%,#f0f0f0 100%);
	background: -ms-linear-gradient(top,  #c3d7ff 0%,#f0f0f0 100%);
	background: linear-gradient(top,  #c3d7ff 0%,#f0f0f0 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c3d7ff', endColorstr='#f0f0f0',GradientType=0 );
	
}


/* Media Queries */

@media screen and (max-width: 480px) {

	#container {
		width: 460px;
		margin-left: -230px;
	}
	
	
}

@media screen and (max-width: 320px) {

	#container {
		width: 300px;
		margin-left: -150px;
}
	
	input {
		font-size: 20px;
		padding: 5px;
	}
	
	input[type=submit] {
		margin: 0;
		font-size: 20px;
		width: 80px;
		height: 40px;
		padding: 5px;
		margin-left: 217px;
		margin-top: -43px;
	}
	
}


