﻿/* Reset */
*{
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}
/* Menu */
/*.menu {
	height: 40px;
	width: 505px;
	background: #4c4e5a;
	background: -webkit-linear-gradient(top, #4c4e5a 0%, #2c2d33 100%);
	background: -moz-linear-gradient(top, #4c4e5a 0%, #2c2d33 100%);
	background: -o-linear-gradient(top, #4c4e5a 0%, #2c2d33 100%);
	background: -ms-linear-gradient(top, #4c4e5a 0%, #2c2d33 100%);
	background: linear-gradient(top, #4c4e5a 0%, #2c2d33 100%);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}*/
.menu li {
	position: relative;
	list-style: none;
	float: left;
	display: block;
	height: 40px;
}
/* Links */

.menu li a {
	display:inline-block;
	text-decoration: none;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	color: #f3f3f3;
	-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: #206cca;
}
/* Sub Menu */

.nav ul li.only ul li{float:none;}
.nav ul li.wygk ul li{float:none;}

.menu ul {
	position: absolute;
	top: 40px;
	left: 0;
	opacity: 0;
	background:rgba(0,0,0,0.5);
	border-radius: 0 0 5px 5px;
	border-bottom:5px;
	border-right:5px;
	border-top:0px;
	border-left:0px;
	behavior: url(ie-css.htc);
	-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;
	z-index:1000;
	width:100%;
	
}
.menu li:hover > ul {
	opacity: 1;
	filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7f000000, endcolorstr=#7f000000);
	
}
.menu ul li {
	height: 0;
	overflow: hidden;
	padding: 0;
	text-align:center;
	-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;
	width:100%;
}
.menu li:hover > ul li {
	height: 36px;
	overflow: visible;
	padding: 0;
	text-align:center;
	width:100%;
}
.menu ul li a {
	line-height:32px;
	border: none;
	border-bottom: 1px solid #353539;
	/*padding:0px 10px;*/
}
.menu ul li:last-child a {
	border: none;
}
.menu ul> li{
	margin:0;
}
/* Icons */

.menu a.documents {
	background: url(../images/docs.png) no-repeat 6px center;
}
.menu a.messages {
	background: url(../images/bubble.png) no-repeat 6px center;
}
.menu a.signout {
	background: url(../images/arrow.png) no-repeat 6px center;
}



