/* Styles for Navigation */

ul {margin: 0;padding: 0;list-style: none;width: 148px;}

ul li {position: relative;}
li ul {position: absolute;left: 148px; /* Set 1px less than menu width */top: 0;display: none;}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #FFFFFF;
	border-bottom: 1px solid #CCCCFF;
	border-top: none;
	border-right: none;
	border-left: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	padding-top: 3;
	padding-bottom: 3;
	background-color: #233AAE;
	text-align: center;
}

 /* Hover Styles */
ul li a:hover {
	color: #0E5732;
	background: #FFFFFF;
	font-weight: bold;
}
li ul li a:hover {
	color: #0E5732;
	background: #ECFBEE;
	font-weight: bold;
}


/* Sub Menu Styles */
li ul li a { 
	color: #000066;
		border-bottom: 1 px solid #233AAE;
	  border-top: 1 px solid #233AAE;
	  border-right: 1 px solid #233AAE;
	  border-left: 1px solid #233AAE;
    padding: 3px;
	  text-align: left;
	  background: #ECFBEE;
}

 /* The magic */
li:hover ul, li.over ul { 
   display: block;
	 	 text-align: left;
} 

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
