.menu {
	height: 50px;
	width: auto;
	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%);
	-webkit-border-radius: 0;
	margin: 0px;
	padding-right: 5%;
	padding-left: 10%;
}

.menu li {
	position: relative;
	height:38px;
	list-style: none;
	float: left;
	display: block;
	border-left-width: 1px;
	border-left-color: #393942;
	border-left-style: solid;
	padding-top: 6px;
	padding-right: 14px;
	padding-bottom: 6px;
	padding-left: 14px;
}
.menu li:hover {
	background-color: #2c2d33;
}





.menu li a {
	display: block;
	text-decoration: none;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 13px;
	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;	line-height: 18px;
}

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

.menu li:hover > ul li {
	height: 36px;
	overflow: visible;
	padding: 0;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	
	}




.menu li:first-child  {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #393942;
	
}

.menu li:last-child   {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #393942;
	
}


.menu ul {
	position: absolute;
	top: 40px;
	opacity: 0;
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	margin: 0px;
	left: -1px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
    background-color: #2c2d33;
	}



.menu ul:last-child {
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
}

.menu ul li {
	height: 0;
	overflow: hidden;
	padding: 0;
	

    -webkit-transition: height .2s ease .1s;
    -moz-transition: height .2s ease .1s;
    -o-transition: height .25s ease .1s;
    -ms-transition: height .25s ease .1s;
    transition: height .25s ease .1s;
	border:hidden;	
}
.menu ul li a {
	width: 100px;
	margin: 0;
	color: #FFF;
	padding-top: 4px;
	padding-right: 0;
	padding-bottom: 4px;
	padding-left: 35px;
}
.menu ul li a:hover {
	width: 100px;
	margin: 0;
	color: white;
	background-color: #666;
}

.menu ul li:last-child a:hover {
	width: 100px;
	margin: 0;
	color: white;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	}
