@CHARSET "ISO-8859-1";
/* Reset CSS
 * --------------------------------------- */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
    padding: 0;
    margin: 0;
}
a{
	text-decoration:none;
}
table {
    border-spacing: 0;
}
fieldset,img {
    border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
    font-weight: normal;
    font-style: normal;
}
strong{
	font-weight: bold;
}
ol,ul {
    list-style: none;
    margin:0;
    padding:0;
}
caption,th {
    text-align: left;

}
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
    font-size: 100%;
    margin:0;
    padding:0;
    color:#444;
}
q:before,q:after {
    content:'';
}
abbr,acronym { border: 0;
}


/* Custom CSS
 * --------------------------------------- */
body{
	font-family: arial,helvetica;
	color: #333;
	color: rgba(0,0,0,0.5);
}
.wrap{
	margin-left: auto;
	margin-right: auto;
	width: 960px;
	position: relative;
}
h1{
	font-size: 6em;
}
p{
	font-size: 2em;
}
.intro {
	padding-top:50px;
}
.intro p{
	width: 50%;
	margin: 0 auto;
	font-size: 1.5em;
	color: #fff;
}
.section{
	text-align:center;
}

header {
	z-index: 999;
	position: fixed;
	left: 10px;
	top: 10px;
	vertical-align: middle;
	display: block;
}
header p {
	position: fixed;
	right: 40px;
	top: 35px;
	font-size: 16px;
	color: #FFFFFF;
}
header p a {
	margin-left: 25px;
	text-decoration: none;
	color: #FFFFFF;
}

@media only screen and (min-width: 1000px) {
	.floatingleft {
		float:left;
		width:50%;
		margin-left:50px;
		animation-duration:1s;
		animation-name:slideinfromleft;
	}
	.floatingright {
		float:right;
		width:40%;
		margin-right:50px;
	}
}

@media only screen and (max-width: 999px) {
	.floatingleft {
		float:center;
		width:100%;
		margin-left:0px;
	}
	.floatingleft img {
		max-width:500px;
	}
	.floatingright {
		float:center;
		width:100%;
		text-align:center;
		margin-right:0px;
	}
}

@media only screen and (min-width: 700px) {
	header p {
		right: 40px;
		top: 35px;
	}
}

@media only screen and (max-width: 699px) {
	header p {
		left: 20px;
		top: 100px;
	}
}

.signupbutton {
	border: 2px solid #008CBA;
	background-color: #FFFFFF;
	color: navy;
	padding: 15px 32px;
	margin-top: 20px;
	text-align: center;
	text-decoration: none;
	font-size: 2.5vw;
	cursor:pointer;
}

.signupbutton:hover {
	background-color: #008CBA;
	color: #FFFFFF;
}

@keyframes slideinfromleft {
	from { margin-left:-1000px; }
	to { margin-left:50px; }
}