@charset "utf-8";

/*
Site Name: 
Description: layout
*/

/* base layout
----------------------------------------- */
#container{
	padding: 0px;
	margin: 0px auto;
	text-align: center;
}
#header{
	position: absolute;
	left: 0;
	right: 0;
	z-index: 100;
}
#header .inner{
    margin: 0 auto;
	padding: 0;	
}
.fixed #header{
	height: 40px;
	background: rgba(17, 17, 17, 0.6);
	animation-name: slideInDown;
	animation-duration: 0.5s;
	animation-fill-mode: both;
	position: fixed;
	top: 0!important;
}
.fixed #header .inner{
    width: 100%;
}
#content{
	text-align: left;
	clear: both;
}
.wrapper,
.inner{
    width: 950px;
    max-width: 100%;
    margin: 0  auto 100px;
	padding: 0 30px;
    position: relative;
}
#footer{
	background-color: #333;
	overflow: hidden;
}
@media all and (max-width: 768px){
#header{
	width: 100%;
	height: 40px;
	position: fixed;
	top: 0;
	z-index: 1001;
}
#header .inner{
	padding: 0;
	padding-right: 40px;
}
.fixed #header{
	animation: none;
}
}

/* content layout */
#main{
	width: 100%;
}
/*#contents #main .inner:not(#history-section .inner){
	margin-bottom: 80px;
}
@media all and (max-width: 768px){
#contents #main .inner:not(#history-section .inner){
	max-width: calc(100% - 60px);
	margin: 0 30px 40px;
	background-color: #FFF;
	overflow: hidden;
	z-index: 10;
	position: relative;
	top: -40px;
}
}*/

#contents #main .bg-black {
    color: #FFF;
    margin: 60px 0;
    padding: 30px 0;
    background-color: #111111;
    overflow: hidden;
}
/* column css
----------------------------------------- */
div.area80{
	width:80%;
	overflow:hidden;
}
div.area60{
	width:60%;
	overflow:hidden;
}
div.area55{
	width:55%;
	overflow:hidden;
}
div.area50{
	width:50%;
	overflow:hidden;
}
div.area45{
	width:45%;
	overflow:hidden;
}
div.area40{
	width:40%;
	overflow:hidden;
}
div.area35{
	width:35%;
	overflow:hidden;
}
@media all and (max-width: 768px){
div.area80,
div.area60,
div.area55,
div.area50,
div.area45,
div.area40,
div.area35{
	width:100%;
	overflow:hidden;
}
}

div.left{
	float:left;
	text-align: left;
}
div.right{
	float:right;
	text-align: left;
}
div.center{
	margin-right: auto;
	margin-left: auto;
}