﻿@charset "UTF-8";


.head {
    width:1200px;
 
    
}
a  {
	text-decoration:none;color:#cccccc;
}

.container_header {
	min-width: 200px;

}

.logoimg {
    float: left;
}
.head div{
	display: inline-block;
    margin: 0;
	padding: 0;
     
}
.top_login {
    float: right;
	font-weight: bold;
	color:#5f5f5f;
	font-size: 0.8em;

}
nav {
	margin-top: 0px; /*헤더부분 상단과의 사이 폭 설정 */
	background: #5f5f5f;
    z-index:10;

}
nav span {
	display: none;
}
nav ul {
	margin: 0;
	padding: 0;
	list-style: none outside none;

}
nav > ul { /*1depth -네이게이터 바 설정 */
	position: relative;
	float: left;
	width: 100%;  /*네이게이터의 길이 */
	background-color: #5f5f5f;
	border-bottom: 1px solid #333;
    z-index:1;

}
nav ul.subs { /* 2 depth */
	display: none;
	position: absolute;
	left: 0;
	top: 36px; /* 2 depth 메뉴가 나타나는 부분으로 바꾸면 안됨 */
	padding: 2%;
	width: 96%;
	background-color: #5f5f5f;
	color: #ffcc22;
	box-shadow: 0 0 2px rgba(0,0,0,0.2);
    z-index:1;
}
nav > ul > li { /* 1 depth */
	float: left;
	margin-bottom: -5px;
	text-align: left;
	border-bottom: 5px solid transparent;
	-webkit-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
    z-index:1;
}
nav li a { /* 1 depth, 2 depth 에 다 해당  */
	display: block;
	text-decoration: none;
	white-space: normal; /*줄바꿈에 처리방식*/
	-webkit-transition: color 450ms ease-in-out 0s, background-color 450ms ease-in-out 0s;
	transition: color 450ms ease-in-out 0s, background-color 450ms ease-in-out 0s;
     z-index:1;
}
nav > ul > li > a {/* 1 depth */
	display: block;
	padding: 10px 25px;
	font-size: 0.8em;
	font-weight: 400;
	color: #fff;
     z-index:1;
}
nav > ul > li:hover > a,
nav > ul > a:hover { /* 1 depth 메뉴에 마우스 올릴때 변하는 부분 */
	background: #ffcc22;
	color: #000;
     z-index:1;
}
nav >ul > li.active > a {
	background: #333;
	color: #fff;
     z-index:1;
}
nav li:hover ul.subs {
	display: block;
     z-index:1;
}
nav ul.subs > li {/* 1 depth */
	display: inline-block;
	float: none;
	padding: 6px 6px 6px 18px;
	width: 10%; /* 상세메뉴의 각 폭결정 현재 5개 가능 */
	vertical-align: top;
	border-left: 1px solid #ffcc22;
     z-index:1;

}
/* nav ul.subs > li:first-child {
	border-left: 1px solid #ffcc22; 
	color:#ffcc22;
     z-index:1;

}*/
nav ul.subs > li  {
	line-height: 25px;
	font-size: 0.85em;
	color: #f5f5f5;
	font-weight: bolder;
     z-index:1;


}
nav ul.subs > li a {
	line-height: 20px;
	font-size: 0.85em;
	color: #f5f5f5;
    font-weight: normal;
     z-index:1;
}
nav ul.subs > li a:hover {
	color: #ffcc22;
     z-index:1;
}
nav ul.subs > li > a { /* 3depth */
	margin-bottom: 20px;
	font-size: 0.85em;
	font-weight: 400;
	color: #f5f5f5;
     z-index:1;
}
nav ul.subs > li li {
	float: none;
	-webkit-transition: padding 150ms ease-out 0s;
	transition: padding 150ms ease-out 0s;
     z-index:1;
}
nav ul.subs > li li:hover {
	padding-left: 8px;
     z-index:1;
}

