@charset "utf-8";
/* CSS Document */

.header{
	width:100%;
	background:#fff;
}
.header-top{
	width:83.33%;
	margin:0 auto;
	height:35px;
	text-align:right;
}
.header-top a{
	position:relative;
	display:inline-block;
	line-height:35px;
	padding:0 5px;
	margin-left:10px;
	color:#595959;
	font-size:12px;
}
.header-top a span{
	display: inline-block;
	height:24px;
	width:24px;
	top:6px;
	margin-right:3px;
}
.header-bottom{
	width:100%;
	height:66px;
	background:#004090;
	-moz-box-shadow:inset 0px -4px 0px #009851;
	-webkit-box-shadow:inset 0px -4px 0px #009851;
	box-shadow:inset 0px -4px 0px #009851;
}
.header-bottom .menu{
	position:relative;
	width:83.33%;
	height:62px;
	margin:0 auto;
	text-align:right;
}
.header-bottom .menu .logo{
	position:absolute;
	top:0;
	left:0;
}
.header-bottom .menu .nav{
	height:62px;
}
.header-bottom .menu .nav li{
	position:relative;
	display:inline-block;
	margin-left:20px;
}
.header-bottom .menu .nav li a{
    display: block;
    width: 80px;
    height: 66px;
    line-height: 62px;
    font-size: 16px;
    color: #fff;
    text-align: center;
}
.header-bottom .menu .nav .subnav{
	position:absolute;
	left:-20px;
	width:120px;
	background:#fff;
	-moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
	box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
	visibility:hidden;
	opacity:0;
	z-index:9;
}
.header-bottom .menu .nav .subnav:after {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #fff;
	border-width: 10px;
	margin-left: -10px;
}
.header-bottom .menu .nav .subnav li{
	display:block;
	margin:0;
	border-bottom:1px solid #f5f5f5;
}
.header-bottom .menu .nav .subnav li a{
	display:block;
	width:100%;
	height:30px;
	line-height:30px;
	color:#595959;
	font-size:12px;
	padding:0;
	text-align:center;
}
.header-bottom .menu .nav .subnav li a:hover{
	background:#f5f5f5;
}
.header-bottom .menu .nav li:hover .subnav{
	visibility:inherit;
	opacity:1;
}