@charset "utf-8";
/* CSS Document */

		
html {
	margin: 0;
	padding: 0;	
}

body {
	margin: 0;
	padding: 0;
	background-color: #191919;
	color: #ccc;
	font-family: 'Ubuntu', sans-serif;
	font-size: 20px;
	line-height: 28px;
	text-align: center;
	min-width: 850px;
}

header {
	display: block;
	width: 100%;
	min-width: 650px;
	min-height: 80px;
	padding: 50px auto;
	text-align: center;	
	background: url(../images/background-menu.png) #191919;
	background-size: 100%;
	color: #fff;
	box-sizing: border-box;			
}

header .title {
	display: inline-block;
	float: left;
	margin-left: 40px;
	text-decoration: none;
	color: #ccc;			
}

header .title img { height: 75px; }

header a:visited {
	color: #ccc;
	text-decoration: none;
}

header .option {
	float: right;
	font-size: 25px;
	line-height: 40px;
	display: inline-block;
	margin: 20px 40px auto auto;
	padding: 3px 15px;
	border: 2px solid #666;
	border-radius: 5px;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-transition: .3s; /* Safari */
	transition: .3s;
	text-decoration: none;
	color: #ccc;		
}

header .option:active {
	color: #ccc;
	text-decoration: none;
}

header .option:hover {
	border: 2px solid #fff;
	-webkit-transition: .3s; /* Safari */
	transition: .3s;
	color: #ccc;		
}

header .sub-title {
	display: block;
	margin-top: 75px;
	font-size: 40px;
	line-height: 50px;
	font-weight: bold;
}

/*
header {
	display: block;
	width: 100%;
	min-width: 650px;
	min-height: 90px;
	padding: 50px auto;
	text-align: center;	
	background-color: #191919;
	background-image: url(../images/background-menu.png);
	background-size: 100%;
	color: #fff;
	box-sizing: border-box;			
}

header .title {
	display: inline-block;
	float: left;
	margin-left: 10px;
	vertical-align: text-bottom;
}

header .title img { height: 80px; }

header .option {
	float: right;
	font-size: 25px;
	line-height: 40px;
	display: inline-block;
	margin: 10px 40px auto auto;
	padding: 2px 35px;
	border: 2px solid #666;
	border-radius: 5px;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-transition: .3s;
	transition: .3s;
}

header .option:hover {
	border: 2px solid #fff;
	-webkit-transition: .3s;
	transition: .3s;			
}

header .option:visited, header .option:active, header .option:link {
	color: #ccc;
	text-decoration: none;
}

header .sub-title {
	display: block;
	margin-top: 75px;
	font-size: 40px;
	line-height: 50px;
	font-weight: bold;
}
*/
h1 { font-size: 30px; line-height: 35px; }
h2 { font-size: 30px; line-height: 35px; font-style: italic; color: #fff; padding: 2px 8px; border-bottom: 2px solid white; }
h3 { font-size: 20px; line-height: 25px; font-style: italic; }
strong { font-style: italic; color: #fff; }
		
.main-container {
	display: block;
	width: 100%;
	min-width: 850px;
	padding: 0;
	margin: 0;
	background-color: #191919;	
}

section {
	display: block;
	width: 100%;
	padding: 40px 6%;
	box-sizing: border-box;
	text-align: left;	
}

.white { background-color: #333; color: #fff; }
.black { background-color: #191919; color: #fff; }

section .left {
	display: inline-block;
	vertical-align: top;
	width: 46%;
	margin-right: 2%;
}

section .right {
	display: inline-block;
	vertical-align: top;
	width: 45%;	
	margin-left: 2%;		
}

form { display: block; margin: 10px auto;}

#homepage-signup-email {
	border: 1px solid #ccc;
	outline: none;
	border-radius: 4px;
	box-sizing: border-box;			
	display: inline-block;
	margin: 0px 25px 0px 0px;
	width: 450px;
	height: 40px;
	background-color: transparent;
	background-color: rgba(200,200,200,0.2);
	font-size: 25px;
	font-weight: normal;
	color: #fff;
	padding: 5px 15px;
	vertical-align: middle;
}

#homepage-signup-submit {
	border: none;
	outline: none;
	border-radius: 4px;
	width: 200px;
	height: 40px;
	vertical-align: middle;
	cursor: pointer;
	display: inline-block;
	color: #666;
	text-shadow: 1px 1px #ccc;
	border: none;
	border-radius: 12px;
	font-size: 20px;
	line-height: 40px;	

	background: rgba(147,206,222,1);
	background: -moz-linear-gradient(top, rgba(147,206,222,1) 0%, rgba(117,189,209,1) 41%, rgba(73,165,191,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(147,206,222,1)), color-stop(41%, rgba(117,189,209,1)), color-stop(100%, rgba(73,165,191,1)));
	background: -webkit-linear-gradient(top, rgba(147,206,222,1) 0%, rgba(117,189,209,1) 41%, rgba(73,165,191,1) 100%);
	background: -o-linear-gradient(top, rgba(147,206,222,1) 0%, rgba(117,189,209,1) 41%, rgba(73,165,191,1) 100%);
	background: -ms-linear-gradient(top, rgba(147,206,222,1) 0%, rgba(117,189,209,1) 41%, rgba(73,165,191,1) 100%);
	background: linear-gradient(to bottom, rgba(147,206,222,1) 0%, rgba(117,189,209,1) 41%, rgba(73,165,191,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#93cede', endColorstr='#49a5bf', GradientType=0 );
}

#homepage-signup-submit:hover {
	box-shadow: 0px 0px 20px #ccc;	
}

footer {
	display: block;
	width: 100%;
	min-height: 60px;
	margin-top: 30px;
	background-color: rgba(95,95,95,0.3);
	color: #fff;
	font-size: 15px;
	line-height: 25px;
}

footer .top, footer .bottom {
	display: inline-block;
	min-width: 600px;
	margin: 10px auto 0px auto;
	font-size: 15px;
	line-height: 20px;
	vertical-align: middle;
}

footer .top { text-align: left; }
footer .bottom { text-align: right; font-size: 11px; }

@media (max-width: 1200px) {
	footer .top { text-align: center; }
	footer .bottom { text-align: center; margin-bottom: 10px; }	
}

footer .top a {
	display: inline-block;
	margin: auto 20px;
}

footer a {
	color: #00aaff;
	text-decoration: none;
}

.transferClass {
	border: 2px dashed white;	
}

input, select, textarea {
	font-family: 'Ubuntu', sans-serif;
	font-size: 20px;
	line-height: 23px;
	padding: 2px 8px;
	box-sizing: border-box;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;	
	outline: none;
	color: #191919;
}

input[type=button],
input[type=submit] {
	border: 2px solid #ccc;
	background: rgba(200,200,200,.4);
	cursor: pointer;
}

input[type=button]:hover,
input[type=submit]:hover {
	border: 2px solid #ccc;
	background: rgba(25,25,25,.7);
	color: #fff;
}


