/* Reset */

/* Menu */
.menu {
	
	height: 45px;
	width: 1100px;
	background: #003b66;

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;}
.menu li {
width:10%; /* width:12.5% */
	z-index:99999999;
	position: relative;
	list-style: none;
	float: left;
	display: block;
	height: 45px;}
/* Links */

.menu li a {
	display: block;
	padding: 0 13px; /* padding: 0 26px */
	margin: 0px 0;
	line-height: 45px;
	text-decoration: none;
	font-size: 16px;
	color: #f3f3f3;
	text-shadow: 1px 1px 1px rgba(0,0,0,.6);
	-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: #fff;
	background: #0573ba;}
/* Sub Menu */

.menu ul {
width:115%;
	float:left;
	position: absolute;
	top: 45px;
	left: 0;
	opacity: 0;
	background: #003b66;
	-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;
	filter:alpha(opacity=85);  /*支持 ie 浏览器*/
	-moz-opacity:0.85; /*支持 firefox 浏览器*/
	opacity:0.85;}
.menu li:hover > ul {
	opacity: 0.80;}
.menu ul li {
        width:100%;
	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: 45px;
	overflow: visible;
	padding: 0;}
.menu ul li a {
	width: 100%;
box-sizing: border-box;
	padding: 0px 0 0px 10px; /* padding: 0px 0 0px 25px; */
	margin: 0;
	border: none;
	font-size:13px;
	border-bottom: 1px solid #002e4f;}
.menu ul li:last-child a {
	border: none;}
/* Icons */

.menu a.documents {
	background: url() no-repeat 6px center;}
.menu a.messages {
	background: url() no-repeat 6px center;}
.menu a.signout {
	background: url() no-repeat 6px center;}