/* Reset */
.nav,
.nav ul,
.nav li,
.nav a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

/* Menu */
.nav {	
	height: 30px;
	width: 960px;
	z-index:99;
}

.nav li {
	position: relative;
	list-style: none;
	float: left;
	display: block;
	height: 30px;
	width:120px;
}

/* Links */

.nav li a {
	display: block;
	padding: 0px;
	margin: 0 auto;
	line-height: 30px;
	text-align:center;
	text-decoration: none;
	
	border-right: 1px solid #ffffff;

	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px;

	color: #ffffff;
	
	-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;
}

.nav li:first-child a { border-left: none; }
.nav li:last-child a{ border-right: none; }

.nav li:hover > a { background-color:#A60000; }

/* Sub Menu */

.nav ul {
	position: absolute;
	top: 30px;
	left: 0;

	opacity: 0;
	
	background: #A60000;

	-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;
}

.nav li:hover > ul { opacity: 1; }

.nav ul li {
	height: 0;
	overflow: hidden;
	padding: 0;
	width: 210px;

	-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;
}

.nav li:hover > ul li {
	height: 30px;
	overflow: visible;
	padding: 0;
}

.nav ul li a {
	width: 200px;
	padding:0px;
	padding-left:10px;
	margin: 0;
	text-align:left;
	background-color:#990000;

	border: none;
	border-bottom: 1px solid #990000;
}

.nav ul li:last-child a { border: none; }

/* Icons 

.nav a.documents { background: url(../img/docs.png) no-repeat 6px center; }
.nav a.messages { background: url(../img/bubble.png) no-repeat 6px center; }
.nav a.signout { background: url(../img/arrow.png) no-repeat 6px center; }*/