body,td  { color: #182e18; font-size: 10pt; font-family: Arial, Geneva }

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px; /* Width of Menu Items */
	border-bottom: 0px solid #ccc;
	}

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

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #C9BF88; /* IE6 Bug */
	padding: 7px;
	border: 0px solid #ccc;
	border-bottom: 0;
	text-align: right;
	}

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

ul li a:hover { color: #663333; background: #C9BF88; } /* Hover Styles */
		
li ul li a { padding: 7px 15px; } /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; } /* The magic */