
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px; /* Width of Menu Items */
	/*border-bottom: 1px solid #425f7d;*/
	font-family: Georgia;
	font-weight: normal;
	font-style: normal;
	font-size: 9pt;

	}

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 149px;  /*Set 1px less than menu width */
	display: none;
    top: 0;
	}

/* Styles for Menu Items 
Dark Green: #664
Olive: #CCCC99
Tan: #eeeecc
Lavender: #6A6AB4
*/
ul li a {
	display: block;
	text-decoration: none;
	color: #fff;
	/*background: #fff;  IE6 Bug
	-moz-opacity:0.60;
	-khtml-opacity:0.60;
	opacity:0.60;
	filter:alpha(opacity=60);*/
	padding: 5px;
	/*border: 1px solid #223850;*/
	border-bottom: 0;
	}

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

/* Hover Styles */
ul li a:hover {
    color: #ffffff;
    background-color: #425f7d;
    -moz-opacity:0.95;
	-khtml-opacity:0.95;
	opacity:0.95;
	filter:alpha(opacity=95);
    }
li ul li a {
    padding: 2px 5px;
    color: #ffffff;
    background-color: #425f7d;
    }
li ul li a:hover {
    padding: 2px 5px;
    color: #ffd457;
    background-color: #425f7d;
    border: 1px solid #dcdcdc;
    }
    
/* Sub Menu Styles */
	
li:hover ul, li.over ul { display: block;} /* The magic */

