@charset "utf-8";

#wrap {min-width:1400px;overflow:hidden;}
#header_top {background-color:#3e3e3e;height:40px;}
#header_top .head_top {width:1280px;margin:0 auto;}
#header_top .head_top:after {display:block;height:0;line-height:0;clear:both;content:"";}
#header_top .head_top form.header-form {margin:8px 10px 0 0;}
#header_top .head_top form.header-form select {border:none;padding:2px;}
#header_top .head_top form.header-form input {padding:3px 5px;}
#header_top .head_top form.header-form input.h-form-button{padding:3px 8px; background-color:#0072bc; border:1px solid #0165a6; color:#fff; text-align:center;}
#header_top .head_top ul {float:right;}
#header_top .head_top li {float:left;}
#header_top .head_top li a {display:block;line-height:2.7em; padding:5px 15px; font-size:11px;color:#e1e1e1;letter-spacing:0;}
#header_top .head_top li a:focus,
#header_top .head_top li a:hover { background:#fff;text-decoration:none; color:#333;}

#header {background:#fff;}
#header .head {width:1280px;margin:0 auto;height:70px;}
#header .head:after {display:block;height:0;line-height:0;clear:both;content:"";}
#header .head h1 {float:left; padding:24px 0;}
#header .head .gnb {float:right;}

#footer {background-color:#4f4f4f;}
#footer .foot {width:1280px; margin:0 auto;padding:30px 0 40px;overflow:hidden;}
#footer .foot div.info {float:left;}
#footer .foot div.info ul {}
#footer .foot div.info ul li {line-height:150%; font-size:13px; color:#aeafb0;}
#footer .foot div.info ul li > span{padding:0 7px;color:#727272}
#footer .foot div.info p {font-size:12px; color:#87898a;margin-top:20px;}
#footer .foot h2 {float:right;}


/* 메뉴 부분*/
.menu,
.menu ul,
.menu li,
.menu a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

/* Menu */
.menu {	
	position: relative;
	height: 40px;
	width: 631px;
	float: right;
}

.menu li {
	position: relative;
	list-style: none;
	float: left;
	text-align:left;
	display: block;
	height: 40px;
}

/* Links */

.menu li a {
	display: block;
	padding: 26px 40px;
	margin: 0;
	text-decoration: none;
	font-size:16px;
	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}
.menu li:first-child a { border-left: none; }
.menu li:last-child a{ border-right: none; }

.menu li:hover > a { color: #598527; }
.menu ul li:hover > a { color: #8fde62; }

/* Sub Menu */

.menu ul {
	position: absolute;
	top: 70px;
	left: 0;
	z-index:999;
	opacity: 0;
	
	background: #1f2024;

	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;

	-webkit-transition: opacity .25s ease .1s;
	-moz-transition: opacity .25s ease .1s;
	-o-transition: opacity .25s ease .1s;
	-ms-transition: opacity .25s ease .1s;
	transition: opacity .25s ease .1s;
}

.menu li:hover > ul { opacity: 1; }

.menu ul li {
	height: 0;
	overflow: hidden;
	padding: 0;

	-webkit-transition: height .25s ease .1s;
	-moz-transition: height .25s ease .1s;
	-o-transition: height .25s ease .1s;
	-ms-transition: height .25s ease .1s;
	transition: height .25s ease .1s;
}

.menu li:hover > ul li {
	height: 36px;
	overflow: visible;
	padding: 0;
}

.menu ul li a {
	width: 100px;
	padding:10px 30px 10px 40px;
	margin: 0;
	font-size:13px;
	color:#fff;
	
	border: none;
	border-bottom: 1px solid #353539;
}

.menu ul li:last-child a { border: none; }

/* Icons */

.menu a.arrow {background:url('../images/common/arrow.png') no-repeat 6px center; }