@charset "utf-8";


/* header 스타일 */
header { 
	display: none;
}
@media (max-width:960px) {
	header { display: block;}
}
@media (min-width: 768px) {
	.navbar-toggle {
		display: block;
	}
}
.navbar-toggle {
    position: relative;
    float: right;
    background-image: none;
    border-radius: 4px;
	margin-right: 0;
	margin-top: 24px;
	border:1px solid #f6f6f6;
}
.navbar-toggle .icon-bar {
    background-color: #ee4823;
}

/* PC header */
.header {
    position: relative;
    width: 100%;
    height: 85px;
    border-top: 4px solid #ee4823;
    background: #fff;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);   
    z-index: 3;
}
.header .in {
    position: relative;
    width: 960px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 960px) {
    .header {
        display: none;
    }    
}


/* mobile menu */
.logo {
	text-align: center;
	border-bottom: 1px solid #ddd;
	height: 80px;
	padding-top: 20px;
}
.logo a {
	display: inline-block;
	width: 120px;
	height: 40px;
	background-image: url(../img/main/mobile_logo.png);
	background-size: 120px 40px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min-device-pixel-ratio: 2) {
	.logo a {
		background-image: url(../img/main/mobile_logo.png);
		background-size: 120px 40px;
	}
}

#cd-lateral-nav {
	position: fixed;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	/* the secondary navigation is covered by the main element */
	z-index: 999;
	width: 208px;
	background-color: #fff;
	overflow-y: auto;
	/* this creates the subtle slide in animation of the navigation */
	-webkit-transform: translateX(-208px);
	-moz-transform: translateX(-208px);
	-ms-transform: translateX(-208px);
	-o-transform: translateX(-208px);
	transform: translateX(-208px);
}
@media (max-width:1024px) {
	#cd-lateral-nav {
		position: fixed;
		height: 100%;
		left: 0;
		top: 0;
		bottom: 0;
		z-index: 999;
		width: 208px;
		background-color: #fff;
		overflow-y: auto;
		
		-webkit-transform: translateZ(0);
		-webkit-backface-visibility: hidden;
		-webkit-transition-property: -webkit-transform;
		-moz-transition-property: -moz-transform;
		transition-property: transform;
		-webkit-transition-duration: 0.4s;
		-moz-transition-duration: 0.4s;
		transition-duration: 0.4s;
		
		-webkit-transform: translateX(-208px);
		-moz-transform: translateX(-208px);
		-ms-transform: translateX(-208px);
		-o-transform: translateX(-208px);
		transform: translateX(-208px);
	}	
}	
#cd-lateral-nav .bot_menu > li > a {
	display: block;
	height: 66px;
	line-height: 65px;
	padding-left: 35px;
	font-family: nanumbold;
	font-size: 1.5rem;
	color: #666;
  	background: #fff;
	border-bottom: 1px solid #ddd;
	text-decoration: none;
} 
#cd-lateral-nav .bot_menu > li > a:hover {
	background: #ee4823 url(../img/main/down.png) right 20px center no-repeat;
	color: #fff;
}
#cd-lateral-nav a.submenu-open {
	background: #ee4823 url(../img/main/down.png) right 20px center no-repeat !important;
	color: #fff !important;
}
#cd-lateral-nav .sub-menu {
	padding: 20px 0;
	background: #f9f9f9;
	border-bottom: 1px solid #ddd;
}
#cd-lateral-nav .sub-menu a {
	display: block;
	line-height: 30px;
	padding-left: 36px;
	font-family: nanumbold;
	font-size: 1.3rem;
	color: #666;
	text-decoration: none;
} 






/* right 스타일 */
@media (max-width:960px) {
	.cd-main-content {
		margin-top: 80px;
	}
}

.footer {
    background: #fff;
}
.footer .fbt {
    background: #4b4e51;
}
.footer .in {
    position: relative;
    padding: 0 15px;
}
@media (min-width:960px) {
    .footer .in {
        width: 960px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }
}
.footer address {
    margin-bottom: 0;
    padding: 30px 0;
    font-family: nanumbold;
    font-size: 1.1rem;
    color: #878787;
    line-height: 16px;
    background: url(../img/main/footer_logo.png) right center no-repeat;
}
@media (max-width:992px) {
    .footer address {
        background: none;
    }
}
.footer address p {
    margin-top: 10px;
}

.footer .fbt ul a {
    display: inline-block;
    font-family: Arial;
    font-size: 1.3rem;
    color: #dfdfdf;
    height: 54px;
    line-height: 54px;
    text-decoration: none;
}
.footer .fbt li:after {
    content: "|"; 
    font-family: Arial;
    font-size: 1.2rem;
    color: #dfdfdf;
    line-height: 54px;
    padding: 0 20px;
}
.footer .fbt li:last-of-type:after {
    content: ""; 
    padding: 0;
}
@media (max-width:768px) {
    .footer .fbt li:after {
        padding: 0 5px;
    }
}












