ul 
{
	margin: 0;
	padding: 0;
	list-style: none;
	width: 189px;
	border: none;
	z-index: 0;
}

ul li 
{
	position: relative;
}

/* Styles for Menu Items */
ul li a 
{
	display: block;
	text-decoration: none;
	background: white; /* IE6 Bug */
}

ul li a:hover { 
	text-decoration: none;
	background: white; 
} /* Hover Styles */
		
/* Sub Menu Styles */  
li ul li a { 
	font-family: Verdana;
	font-size: 9px;
	font-style: normal;
	font-weight: bold;
	padding: 4px;
	border-bottom: 1px solid #ccc;
	color: black;
} 

li ul li a:link, li ul li a:visited { 
	padding-left: 7px;
	padding-right: 7px;
	color: black;
} 

li ul li a:hover
{
	padding-left: 7px;
	padding-right: 7px;	
	color: #076EB9;
}

li ul 
{
	position: absolute;
	left: 189px;
	top: 0;
	display: none;
	text-transform: uppercase;
}

li:hover ul, li.over ul
{ 
	border-top: 1px;
	border-left: 1px;
	border-right: 1px;
	border-bottom: 0px;
	border-color: #CDCDCD;
	border-style: solid;
	display: block; 
}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */