@charset "utf-8";
/* index.css
 * ****************************
 *
 * 1: BODY
 * 2: WRAPPER
 * 3: CONTENT
 * 4: SKIP
 *
 * ****************************
 */

/* -----------------------------------------------------
	1: BODY 
----------------------------------------------------- */
* {
	margin				: 0px;
	padding				: 0px;
	-moz-box-sizing 	: border-box;
		 box-sizing 	: border-box;
}
body {
	background			: #00111B;
	font-family			: architects-daughter, Verdana, Geneva, sans-serif;
}
#BACKG {
	position			: relative;
	width				: 100%;
	background			: url(../images/indexBody.png) no-repeat center -50px;
}
/* -----------------------------------------------------
	2: WRAPPER
----------------------------------------------------- */
#WRAPPER {
	position			: relative;
	width				: 100%;
	height				: 600px;
}
/* -----------------------------------------------------
	3: CONTENT
----------------------------------------------------- */
#CONTENT {
	position			: relative;
	margin				: auto;
	width				: 100%;
	height				: 100%;
	background			: center;
}
#CONTENT #TOP h2 {
	position			: absolute;
	top					: 100;
	display				: none;
	margin				: auto;
	width				: 100%;
	color				: #FFF;
	text-align			: center;
	text-shadow			: 3px 3px 3px #000;
	font-weight			: bold;
	font-size			: 190%;
}
#CONTENT #CAR {
	position			: absolute;
	top					: 300px;
	left				: 105%;
	display				: none;
	width				: 100%;
	height				: 220px;
	background			: url(../images/indexCar.png) no-repeat;
	background-size		: contain;
	text-indent			: -9999px;
}
#CONTENT #LOGO {
	position			: absolute;
	display				: none;
	margin				: 160px auto 0;
	width				: 100%;
	height				: 150px;
	background			: url(../images/indexLogo.png) no-repeat center;
	background-size		: contain;
	text-indent			: -9999px;
}
/* -----------------------------------------------------
	4: SKIP
----------------------------------------------------- */
#SKIP {
	position			: absolute;
	top					: 2%;
	right				: 5%;
	font-size			: 140%;
}
#SKIP a {
	display				: block;
	color				: #FFF;
	text-decoration		: none;
}
#SKIP a:hover {
	text-decoration		: underline;
}