@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
	display:block;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

h1, h2, h3, h4, h5, h6, p, input, textarea, button {
	margin:0;
	padding:0;
	font-family:'Varela', sans-serif;
	font-weight:normal;
	font-style:normal;
}

p {
	font-size:0.9rem;
}

input {
	box-sizing:border-box;
}

a, a:hover, a:active {
	border:none;
	outline:none;
}

a {
	color:#2590af;
	text-decoration:none;
}

a:hover {
	color:#2590af;
	text-decoration:underline;
}

.clear {
	clear:both;
}

body {
	background-color:#e0e0e0;
	margin:0;
	padding:0;
	font-family:'Varela', sans-serif;
	font-weight:normal;
	font-style:normal;
}

/* --- HEADER --- */
#header {
	max-width:600px;
	margin:50px auto 0 auto;
	background:#415465;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

#header img {
	padding:0 50px;
}

#header .container .col-2  a.login {
	display:block;
	float:right;
	max-width:125px;
	width:100%;
	background:#FFF;
	color:#415465;
	text-align:center;
	padding:15px 0 13px 0;
	text-decoration:none;
	margin-right:15px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border-bottom:3px solid #e9e9ea;
}

#header .container .col-2  a.login:hover {
	text-decoration:none;
	border-bottom:3px solid #FFF;
}

#header .container .col-2  a.signup {
	display:block;
	float:right;
	max-width:125px;
	width:100%;
	background:#35a5c6;
	color:#FFF;
	text-align:center;
	padding:15px 0 13px 0;
	text-decoration:none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border-bottom:3px solid #2590af;
}

#header .container .col-2  a.signup:hover {
	text-decoration:none;
	border-bottom:3px solid #35a5c6;
}

/* --- MAIN CONTAINER --- */
.main-container {
	max-width:600px;
	margin:0 auto;
	background:#FFF;
	padding:50px 0 30px 0;
	-webkit-border-bottom-left-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	-moz-border-radius-bottomright: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.main-container h2 {
	font-size:1.8rem;
	color:#415465;
	padding:0 50px 30px 50px;
}

.main-container p {
	color:#415465;
	line-height:1.5rem;
	padding:0 50px 10px 50px;
}

.main-container a.signup {
	display:block;
	margin:30px auto 0 auto;
	max-width:350px;
	background:#35a5c6;
	font-size:1.2rem;
	color:#FFF;
	text-align:center;
	padding:15px 0 13px 0;
	text-decoration:none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border-bottom:3px solid #2590af;
}

.main-container a.signup:hover {
	text-decoration:none;
	border-bottom:3px solid #35a5c6;
}