/*
* Noto Sans KR (korean) http://www.google.com/fonts/earlyaccess
*/
@font-face {
	font-family: 'Noto Sans KR';
	font-style: normal;
	font-weight: 100;
	src: url('/V4/css/fonts/NotoSansKR-Thin.woff2') format('woff2'),
	url('/V4/css/fonts/NotoSansKR-Thin.woff') format('woff'),
	url('/V4/css/fonts/NotoSansKR-Thin.otf') format('opentype');
}
@font-face {
	font-family: 'Noto Sans KR';
	font-style: normal;
	font-weight: 300;
	src: url('/V4/css/fonts/NotoSansKR-Light.woff2') format('woff2'),
	url('/V4/css/fonts/NotoSansKR-Light.woff') format('woff'),
	url('/V4/css/fonts/NotoSansKR-Light.otf') format('opentype');
}
@font-face {
	font-family: 'Noto Sans KR';
	font-style: normal;
	font-weight: 400;
	src: url('/V4/css/fonts/NotoSansKR-Regular.woff2') format('woff2'),
	url('/V4/css/fonts/NotoSansKR-Regular.woff') format('woff'),
	url('/V4/css/fonts/NotoSansKR-Regular.otf') format('opentype');
}
@font-face {
	font-family: 'Noto Sans KR';
	font-style: normal;
	font-weight: 500;
	src: url('/V4/css/fonts/NotoSansKR-Medium.woff2') format('woff2'),
	url('/V4/css/fonts/NotoSansKR-Medium.woff') format('woff'),
	url('/V4/css/fonts/NotoSansKR-Medium.otf') format('opentype');
}
@font-face {
	font-family: 'Noto Sans KR';
	font-style: normal;
	font-weight: 700;
	src: url('/V4/css/fonts/NotoSansKR-Bold.woff2') format('woff2'),
	url('/V4/css/fonts/NotoSansKR-Bold.woff') format('woff'),
	url('/V4/css/fonts/NotoSansKR-Bold.otf') format('opentype');
}
@font-face {
	font-family: 'Noto Sans KR';
	font-style: normal;
	font-weight: 900;
	src: url('/V4/css/fonts/NotoSansKR-Black.woff2') format('woff2'),
	url('/V4/css/fonts/NotoSansKR-Black.woff') format('woff'),
	url('/V4/css/fonts/NotoSansKR-Black.otf') format('opentype');
}


/* GNB */
ul {
	margin: 0;
	padding: 0;
}
li {
	list-style: none;
}
.gnb {
	position: relative;
	width: 100%;
	height: 61px;
	margin: 9px 0 0 14px;
	text-align: center;
	zoom: 1;
}
.gnb:after {
	content: "";
	clear: both;
	display: block;
}
.gnb ul, .gnb li {
	float: left;
}
.gnb a {
	display: inline-block;	
	font-weight: bold;
	transition: all ease .4s;
}
.gnb a:hover,
.gnb a:active,
.gnb a:focus {
	text-decoration: none;
}
.gnb > ul {
	width: 95%;	
}
.gnb > ul > li {
	width: 15%;
}
.gnb > ul > li > a {	
	position: relative;
	height: 40px;
	line-height: 39px;
	font-size: 14.5px;
	color: #fff;
	text-shadow: 0 0 3px rgba(0,0,0,.8);
}
.gnb > ul > li.active > a,
.gnb > ul > li > a:hover,
.gnb > ul > li > a:focus,
.gnb > ul > li > a:active {
	color: #e2ff41;
	line-height: 38px;
	font-size: 15px;
}
.gnb > ul > li > a:after {
	content: '';
	display: block;
	position: absolute;
	left: 0px;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #e2ff41;
	opacity: 0;
	transition: width 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.gnb > ul > li.active > a:after {
	width: 100%;
	opacity: 1;
}

.gnb ul ul {
    display: none;
	position: absolute;
    top: 42px;
	margin-left: -0px;
    z-index: 1;
    -webkit-transition: opacity 0.25s ease;
    -moz-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;  
}
.gnb li.active ul {
	display:block;
	padding: 0 15px;
	border-radius: 30px;
	background: #fff;
	box-shadow: 1px 1px 2px rgba(0,0,0,.5);
}
.gnb li:nth-child(2) ul {
	margin-left: -50px;
}
.gnb li:nth-child(3) ul {
	margin-left: -220px;
}
.gnb li:nth-child(4) ul {
	margin-left: -150px;
}
.gnb li:nth-child(5) ul {
	margin-left: -100px;
}
.gnb li:nth-child(6) ul {
	margin-left: -400px;
}
.gnb li li a {
	box-sizing: border-box;
	height: 28px;
	padding: 0 7px;
	color: #222;
	font-size: 12.5px;
	line-height: 28px;
}
.gnb li li:hover > a,
.gnb li li.focus > a {
	color: #000;	
}