
/*콘텐츠css*/
html, body{
	height:100%;
}
body{
	background:#f7f7f7;
}
div.contents{
	width:1200px;
	border-left:1px solid #ccc;
	border-right:1px solid #ccc;
	margin:0 auto;
	overflow:hidden;

}
/*좌측 사이드메뉴*/
div.side-menu{
	width:200px;
	float:left;

	box-sizing:border-box;
}
div.sub-logo{
	width:100%;
	padding:0 20px;
	box-sizing:border-box;
}
div.sub-logo>h6{
	color:#ccc;
	font-size:15px;
	font-weight:400;
	margin:0;
	margin-top:30px;
}
div.sub-logo>h3{
	color:#000;
	font-size:30px;
	font-weight:600;
	margin:0;
	margin-top:5px;
	margin-bottom:15px;
}
div.menu-list{
	width:100%;
}
div.menu-list>ul{
	width:100%;
}
div.menu-list>ul>li{
	width:100%;
	padding:10px 0;
	border-top:1px solid #ccc;
}
/*li.side-m5{
	border-bottom:1px solid #ccc;  이부분은 여기서만 감춰짐
}*/
div.menu-list>ul>li>a{
	color:#000;
	font-size:15px;
	font-weight:400;
	margin-left:30px;
}
div.menu-list>ul>li>ul{
	width:100%;
	display:none;
	padding-top:10px;
	margin-top:10px;
	border-top:1px solid #ccc;
	
}
div.menu-list>ul>li>ul>li{
	width:100%;
	padding:10px 40px;
}
div.menu-list>ul>li>ul>li>a{
	color:#666;
	font-size:14px;
	font-weight:400;
}
li.side-m5>ul {
    display: block !important;
    margin-top: 20px !important;
}

/*해당게시판일경우 사이드메뉴*/
li.side-m5{
	position:relative;
	width:208px !important;
}
li.side-m5>a{
	position:absolute;
	top:0;
	left:-20px;	
	width:100%;
}
li.side-m5>a>img{
	width:100%;
}



/*게시판부분*/
div.board-contents{
	width:999px;
	border-left:1px solid #ccc;
	float:left;
}
div.board-ben{
	width:100%;

}
div.board-ben>img{
	width:100%;
}
div.board-con{
	width:100%;
	padding:0 85px;
	box-sizing:border-box;
}


div.board-tab{
	width:100%;
	padding:20px 85px;
	box-sizing:border-box;
}
div.board-tab>ul{
	width:100%;
	overflow:hidden;
}
div.board-tab>ul>li{
	width:24%;
	height:50px;
	line-height:50px;
	margin:0 0.5%;
	box-sizing:border-box;
	float:left;
	text-align:center;
	border:1px solid #ccc;
}
div.board-tab>ul>li>a{
	color:#000;
	font-size:15px;
	font-weight:400;
}


li.tab1{
	background:#ccc;
}
li.tab1>a{
	color:#fff !important;
}


























