﻿.nav-wrap{
    width: 1120px;
    margin: 0 auto;
}

.nav-copy-wrap{
	background-color: #112eae;
}

.nav{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.nav>li{
    position: relative;
}

.nav>li>a{
    display: block;
    font-size: 18px;
	font-weight: bold;
    padding: 0 6px;
    line-height: 50px;
	color: #ffffff;
    position: relative;
}

.nav>li>a::after{
    display: none;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
	height: 6px;
	background-color: #f9c708;
	border-radius: 4px 4px 0px 0px;
}

.nav>li.active>a::after{
    display: block;
}

.nav>li:hover>a::after{
    display: block;
}

.nav-two{
    display: none;
    position: absolute;
    top: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.9);
}

.nav-two>li{
    margin: 0 6px;
    margin-bottom: 5px;
}

.nav-two>li:first-child{
    margin-top: 7px;
}

.nav-two>li:last-child{
    margin-bottom: 11px;
}

.nav-two>li>a{
    display: block;
    white-space: nowrap;
    font-size: 16px;
	font-weight: bold;
	letter-spacing: 2px;
    line-height: 31px;
    padding-left: 7px;
    padding-right: 5px;
	color: #333333;
}

.nav-two>li:hover>a{
    background-image: -webkit-gradient(linear, 
		right top, left top, 
		from(#6092ff), 
		color-stop(13%, #5289ff), 
		to(#2a6dff)), 
	-webkit-gradient(
		linear, 
		left top, left bottom, 
		from(#eaeef7), 
		to(#eaeef7));
    background-image: -webkit-linear-gradient(right, 
		#6092ff 0%, 
		#5289ff 13%, 
		#2a6dff 100%), 
	-webkit-linear-gradient(
		#eaeef7, 
		#eaeef7);
    background-image: -moz-linear-gradient(right, 
		#6092ff 0%, 
		#5289ff 13%, 
		#2a6dff 100%), 
	-moz-linear-gradient(
		#eaeef7, 
		#eaeef7);
    background-image: -o-linear-gradient(right, 
		#6092ff 0%, 
		#5289ff 13%, 
		#2a6dff 100%), 
	-o-linear-gradient(
		#eaeef7, 
		#eaeef7);
    background-image: linear-gradient(-90deg, 
		#6092ff 0%, 
		#5289ff 13%, 
		#2a6dff 100%), 
	linear-gradient(
		#eaeef7, 
		#eaeef7);
	background-blend-mode: normal, 
		normal;
    border-radius: 2px;
    color: #ffffff;
}