/* navMenu */


/********************************************* menus */

#menuContainer {
	height: 25px;
	color: #FFFFFF;
	font-size: 11px;
	font-weight: bold;
	padding: 55px 0px 0px 0px;
	margin-bottom: 0px;
}
#menuContainer a {
	color: #FFFFFF;
}
#menuContainer a:hover {
	color: #1068d4;
}
.mNavLabel {
	text-align: center;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul li {
	float: left;
	position: relative;
	width: 78px; /* Width of Menu Items */
	background: none;
	cursor: pointer;
}	
li ul {
	display: none;
	position: absolute;
	top: 15px; /* Up/Dn Menu */
	left: 10px; /* Left/Right Menu */
}
/* Styles for Menu Items */
ul li a {
	text-decoration: none;
	font-size: 12px;
	color: #FFFFFF;
	display: block;
	text-align: center;
	margin: 0px 1px 0px 1px;
}
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

/* Sub Menu Styles t r b l */
ul li ul li a {
	padding: 5px;
	background-color: #1068d4;
	text-decoration: none;
	border: 1px solid #1068d4 ;
	border-bottom-color: #3A444B;
}
/* Hover Styles */
.mNavLabel a:hover {
	color: #FFFFFF;
	background-color: #FFFFFF;
	text-decoration: none;
}
.dropMenu li a:hover {
	color: #1068d4;
	background-color: #FFFFFF;
	text-decoration: none;
}
/* The magic */
li:hover ul, li.over ul {
	display: block;
} 
