@charset "utf-8";
/* ----------------------------------------------------------- */
/* ------------------------ 헤더 영역 ------------------------ */
/* ----------------------------------------------------------- */
#header {
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	z-index: 999;
}
#headerInner {
}
#headerInner .logoWrap {
	height: 30px;
	line-height: 30px;
	background: #fff;
	z-index: 999;
	text-align: center;
	box-sizing: border-box;
	transition: all .3s;
	overflow: hidden;
}
#headerInner .logoWrap.scroll {
	height: 0;
	line-height: 0;
	/* opacity: 0; */
}
#headerInner .logoWrap h1.logo {
}
#headerInner .logoWrap .infoMenu {
	position: absolute;
	width: 130px;
	top: 0;
	right: 0px;
	text-align: right;
}
#headerInner .logoWrap .infoMenu li {
	display: inline-block;
	padding: 0 7px 0 9px;
	background: url(../images/menu_vertical_line.jpg) no-repeat 0px center;
}
#headerInner .logoWrap .infoMenu li:first-child {
	background: none;
}
#headerInner .logoWrap .infoMenu li:last-child {
	padding-right: 0;
}
#headerInner .logoWrap .infoMenu li a {
	font-weight: bold;
	color:#666;
}
#headerInner .logoWrap .infoMenu li a:hover, #headerInner .logoWrap .infoMenu li a:focus {
	color: #FFCC00;
}
.naviWrap {
	position: relative;
	height: 80px;
	background-color: #fff;
	transition: .3s;
}
.naviWrap.scroll {
	height: 60px;
}
.naviWrap .naviBg {
	position: absolute;
	left: 0;
	top: 80px;
	width: 100%;
	height: 0px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.7);
	transition: all 0.3s;
}
.naviWrap.scroll  .naviBg {
	top: 60px;
}
.naviWrap .naviBgSlidingDown {
	height: 170px;
}
.naviBgWrab {
	position: relative;
	background: #fff;
	height: inherit;
	border-bottom: 1px solid #ccc;	
}
.naviBgWrab h1 {
	position: absolute;
	top:25px;
	left: 0;
	width: 250px;
	text-align: center;
	transition: .3s;
}
.naviBgWrab .siteWidthLayer > a {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 80px;
	font-size: 18px;
	color: #000;
	text-align: center;
	line-height: 80px;
	transition: .3s;
}
.naviWrap.scroll .naviBgWrab .siteWidthLayer > a {
	line-height: 60px;
}
.naviBgWrab .siteWidthLayer > a:hover {
	color: #047cc1;
}
.naviWrap.scroll .naviBgWrab h1 {
	top: 10px;
}
#navigation {
	height: inherit;
	margin-left: 250px;
	margin-right: 80px;
}
#navigation > li {
	position: relative;
	float:left;
	width: 20%;
	text-align: center;
	font-size: 18px;
	line-height: 80px;
}
.naviWrap.scroll #navigation > li  {
	line-height: 60px;
}
#navigation > li > a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: #000;
	
	background-color: rgba(0,80,166,0);	
	transition: all .3s;
}
#navigation > li.on > a, #navigation > li:hover > a {
	color: #047cc1;
}
/* #navigation > li > a:before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	background-color: skyblue;
	border-radius: 4px;
	opacity: .5;
} */
/* #navigation > li:last-child > a:before {
	display: none;
} */
#navigation > li > a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background-color: #047cc1;
	opacity: 0;
	transition: all .3s;
}
#navigation > li.on > a:after {
	width: 100px;
	opacity: 1;
	bottom: -1px;
}
#navigation > li > a > span.menuName {
	display: block;
	width: 100%;
	height: 100%;
}
#navigation > li > ul {
	position: absolute;
	top: 80px;
	left: 0;
	width: 100%;
	opacity: 0;
	line-height: 0;
	transition: all 0.3s;
}
.naviWrap.scroll #navigation > li > ul {
	top: 60px;
}
#navigation > li > ul.subSlidingDown {
	padding:  10px 0;
	opacity: 1;
	line-height: 2;
}
#navigation > li > ul > li {
	position: relative;
	font-size: 16px;
}
#navigation > li > ul > li > a {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	font-weight: normal;
	text-align: center;
}
#navigation > li > ul > li.on > a,
#navigation > li > ul > li:hover > a {
	color: skyblue;
}
#navigation > li > ul > li > ul{
	display: none;
}