
/* Reset */
.menu,
.menu ul,
.menu li,
.menu a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

/* Menu */
.menu {	
	margin:10px 0px 5px 0px;
	padding:0px 0px 0px 140px;
	width:850px;
	height:41px;
	background:url(../images/menunav-bg.jpg) no-repeat left top;
	float:left;
}

.menu li {
	margin:0px;
	padding:0px;
	position: relative;
	list-style: none;
	float: left;
	display: block;
	height: 40px;
}

/* Links */

.menu li a {
	display: block;
	padding: 0 22px;
	margin: 7px 0;
	line-height: 28px;
	text-decoration: none;

	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 13px;
	background: url(../images/menu-seperator.jpg) no-repeat right;

	color: #FFF;
	text-shadow: 1px 1px 1px #00578c;

	-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: #00578c; text-shadow: 0px 1px 1px #FFF;}
.menu li a.activate { color: #00578c; text-shadow: 0px 1px 1px #FFF;}

/* Sub Menu */

.menu ul {
	position: absolute;
	top: 40px;
	left: 0;

	opacity: 0;
	
	background: #38acea;

	-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 li {
	height: 30px;
	overflow: visible;
	padding: 0;
}

.menu ul li a {
	width:170px;
	float:left;
	text-align:left;
	padding: 0px 0px 0px 28px;
	margin: 0;
	background:none;

	border: none;
	border-bottom:1px solid #2a96d0;

	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 12px;

}

.menu ul li a:hover {
	background-color:#ade0f8;
}

.menu ul li:last-child a { border: none; }
