.menu {	
	height: 50px;
	width: 960px;
}

.menu ul,
.menu li,
.menu a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

.menu li {
	position: relative;
	list-style: none;
	float: left;
	display: block;
	height: 50px;
	margin: 0 auto;
	width: auto;
	background: url(../images/navbg.png);
}

/* Links */

.menu li a {
	display: block;
	padding: 0 18px;
	line-height: 50px;
	text-decoration: none;
	border-left: 1px solid #393942;
	border-right: 1px solid #4f5058;
	font-size: 11px;
	color: #f3f3f3;
	min-width: 40px;
	text-transform: uppercase;
	text-align: center;
}

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

.menu li:hover > a { color: white;
	background: #296dac;border-top: solid thin black;}

/* Sub Menu */

.menu ul {
	position: absolute;
	top: 50px;
	left: 1px;
	font-size-adjust
	opacity: 0;
	background: #3483cd;
	-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;
}

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

.menu ul li {
	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{
	
}

.menu li:hover > ul li {
	height: 35px;
	overflow: visible;
	padding: 0;
	width: 230px;
	border-top: 1px solid black;
}

.menu ul li a {
	text-align: left;
	margin: 0;
	color: white;
	background:#296dac;
	border: none;
	height: 35px;
	line-height: 35px;
}

.menu ul li a:hover {
	color:blue;
	border:none;
	background: #3483cd;
}


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