@charset "utf-8";
/* CSS Document */

nav {
	margin-top: 67px;
	z-index: 99999;
}

nav ul {
	background: url(../../images/nav_img_line.png) no-repeat bottom center;
	padding: 6px 0px;
}

nav li {
	width: 140px;
	height: 30px;
	font-size: 13px;
	font-weight: 900;
	color: #fff;
	background: no-repeat 5px 3px;
	padding-top: 10px;
	padding-left: 10px;
	cursor: pointer;
	margin: 3px auto;
    position: relative;
}

nav li i {
	margin: 0 3px;
	vertical-align: middle;
	opacity: 0.5;
	font-size: 18px !important;
	font-weight: 100;
}

nav li.text {
	vertical-align: middle;
}

nav li:hover {
	background-color: #3f77b2;
}

nav li.active {
	background-color: #396b9f;
	cursor: default;
}

nav li.active:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-right: 7px solid #e7e7e7;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    position: absolute;
    top: 12px;
    right: 0px;
}

nav li:hover i, nav li.active i  {
	color: #fbd00a;
	opacity: 1;
}

