html, body{
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	display: block;
}
body{
	font-family: 'Titillium Web', sans-serif;
	position: relative;
	overflow: hidden;
}
.ease500{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
/****************************header*********************************/
header{
	position: absolute;
	width: 100%;
	z-index: 50;
	bottom: 250px;
	text-align: center;
}

nav{
	width: 100%;
	z-index: 50;
	height: 180px;
	background-color: rgba(0,148,255,0.6);
	position: absolute;
	top: -25px;
	bottom: 25px;
}

#logo {
	width: 230px;
	margin: 20px auto 1px auto;
}

#logo img{
	margin: 0 20px;
}

#banner{
/*	left: 200px;*/
	position: absolute;
	z-index: 100;
	width: 180px;
	height: 180px;
	overflow: hidden;
}

nav .content{
/*	margin-left: 380px;*/
	position: absolute;
	bottom: 13px;
	left: 22px;
	width: 100%;
}
nav .content a:after{
	content: ".";
	color: #444;
}
nav .content li{
	display: inline;
	margin-right: 5px;
	font-weight: 400;
	font-size: 12px;
	line-height: 11px;
	text-transform: uppercase;
	-webkit-transition: all 800ms ease;
	-moz-transition: all 800ms ease;
	-o-transition: all 800ms ease;
	transition: all 800ms ease;
}
nav .content h1{
	opacity: 1;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
nav .content a{
	text-decoration: none;
	color: #444;
}
nav .content a:hover {
	color: black;
}
nav .content li.active {
	font-weight: 600;
}
nav .content h1{
	text-transform: title;
	font-size: 28px;
	line-height: 1em;
	font-weight: 400;
	color: #444;
}
/****************************page*********************************/
#page{
	background: rgba(17,17,17,.7);
	width: 100%;
	height: 0;
	z-index: 1;
	position: absolute;
	box-sizing: border-box;
	display: block;
	margin-top: 180px;
	overflow: hidden;
	-webkit-transition: all 800ms ease;
	-moz-transition: all 800ms ease;
	-o-transition: all 800ms ease;
	transition: all 800ms ease;
}
#page .upspace{
	width: 100%;
	height: 100px;
	background-color: rgba(17,17,17,.6);
}
#page .content{
	width: 600px;
	height: 40%;
	margin: 23px 0 0 200px;
	font-size: 13px;
	line-height: 20px;
	font-weight: 300;
	color: #fff;
	opacity: 1;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
#page .content a{
	color: rgba(255,255,255,.8);
	text-decoration: none;
}
#page .close{
	background: url(../img/close.png) no-repeat center center;
	position: absolute;
	height: 50px;
	width: 50px;
	display: block;
	right: 100px;
	top: 130px;
}
/****************************footer*********************************/
#background{
	background-image: url(../img/bg.jpg);
	width: 100%;
	height: 100%;
	background-attachment:fixed;
	background-position: 0 -50px;
	z-index: 0;
	box-sizing: border-box;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}