*{
	padding:0;
	margin:0;
	box-sizing:border-box;
	font-family:snas-serif;
}
ul{
	list-style:none;
}
a{
	text-decoration:none;
}
.user-select{
	-webkit-user-select:none; 
	-moz-user-select:none; 
	-ms-user-select:none; 
	user-select:none;
}
#wrapper{
	display:flex;
	flex-direction:column;
	min-height:100vh;
	overflow:hidden;
	background-color:#EAEAEA;
}
header{
	position: fixed;
    top: 0;
    background-color: #529BBF;
    width: 100vw;
    z-index: 100;
}
#content{
	flex:1 0 auto;
	position:relative;
	display:flex;
	width: 79vw;
    margin: 0 auto 20px;
}
footer{
    padding:0.75rem 0;
	background-color:#62BED5;
	text-align:center;
	color:#000;
}
header .container{
	margin:0 auto;
	display:flex;
	position:relative;
}
header .logo-container{
	flex:1;
	display:flex;
	align-items:center;
}
header .logo{
	width:100%;
	background-repeat:no-repeat;
	background-position:50%;
	text-align: center;
    padding: 5px 0;
}
header .logo img{
	width: 100%;
    max-width: 580px;
}
#content > .leftCont{
	position: relative;
	min-width: 230px;
	white-space:nowrap;
	overflow: hidden;
	margin-left: 10px;
	transition:left .5s ease, opacity .3s ease;
}
#content > .leftCont h3.csBg {
	width: 230px;
    height: 125px;
    background: url(../images/csBg.png) no-repeat 50% 50%;
    text-align: center;
}
#content > .leftCont h3.csBg strong{
	display:inline-block;
	margin-top:72px;
	color:#FFF;
	font-size:1.1em;
}
#content > .leftCont ul{
	border-right: 1px solid #C6C6C6;
	padding-bottom: 10px;
}
#content > .leftCont ul li{
	padding: 7px 5px;
    color: #895D27;
    letter-spacing: 2px;
    font-size: 1.1em;
    font-weight: bolder;
	text-indent: 1.2em;
	cursor: pointer;
}
#content > .leftCont ul li:hover{
	color:#FFF;
	background:#09C;
}
#content > .leftCont ul li.active{
	color:#F00;
	background:#000;
}
#content > .leftCont ul + p{
	margin: 5px 0 0;
}
#content > .leftCont ul + p .fas.fa-angle-double-left{
	text-align: center;
    display: none;
    font-size: 2rem;
    cursor: pointer;
    background: #2089e3;
    color: #fff;
    border-radius: 15px;
	padding: 3px 0;
	transition:padding .5s ease;
}
#content > .leftCont ul + p .fas.fa-angle-double-left:hover{
	padding: 3px 20px 3px 0;
}
#content p .fas.fa-angle-double-right{
	display: none;
    position: fixed;
    left: -10px;
    top: calc((100vh - 52px) / 2);
    font-size: 2rem;
    align-items: center;
    cursor: pointer;
    background: #2089e3;
    color: #fff;
    padding: 10px;
    width: 60px;
    justify-content: flex-end;
	border-radius:0 20px 20px 0;
	transition:left .3s ease, opacity .3s ease;
}
#content p .fas.fa-angle-double-right:hover{
	left:0;
}
#check{
	display:none;
}
#check:checked + .leftCont{
	left:0;
	opacity:1;
	pointer-events: auto;
}
#check:checked + .leftCont + .rightCont{
	left: 0;
}
#check:checked ~ p .fas.fa-angle-double-right{
	opacity:0;
	pointer-events:none;
}
#content > .rightCont{
	flex: 1;
	position: relative;
	left: 0;
	transition:left .5s ease;
	overflow-y: hidden;
	overflow-x: auto;
}
#content > .rightCont .title{
	display:flex;
}
#content > .rightCont .title .tlBg01{
	background: url(../images/title01.gif) no-repeat;
    width: 40px;
    height: 57px;
}
#content > .rightCont .title .tlBg02{
	background: url(../images/title02.gif) repeat;
    height: 57px;
    line-height: 62px;
    color: #fff;
}
#content > .rightCont .title .tlBg03{
	background: url(../images/title03.gif) no-repeat;
    width: 93px;
    height: 57px;
}
#content > .rightCont > ul > li > dl{
	margin: 15px 20px 0 40px;
	letter-spacing: 2px;
}
#content > .rightCont > ul > li > dl hr{
    margin: 15px 0px;
}
footer a{
	margin-left:10px;
	color:#fff;
}
footer a span{
	margin-left:5px;
	color:#000;
}
@media(max-width:1200px){
	#content{
		width: calc(100vw + 215px);
	}
	#content > .leftCont{
		left:-230px;
		opacity:0;
		pointer-events: none;
	}
	#content > .leftCont ul + p .fas.fa-angle-double-left{
		display: block;
	}
	#content p .fas.fa-angle-double-right{
		display: flex;
	}
	#content > .rightCont{
		left: -220px;
	}
}
@media(max-width:768px){	
	footer{
		font-size:1.5vw;
	}
}