body {
	font: normal 11px verdana;
	background: #FFFFDD;
	}

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

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 0px; /* Set 1px less than menu width */
	top: 23;   /* This should be set to the width you want your menu items 17 */
	display: none; /* This is the base class defined in the last slide of java, so initially the display is none */
	}

/* Styles for Menu Items, Defined at the link or <a> tag level */
ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #FFFFDD; /* IE6 Bug */
	padding: 5px;
	border: 0px;
	border-bottom: 0;
	}

/* 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: #E2144A; background: #ffdd00; text-decoration: none;} /* Hover Styles */
		
li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; } /* The magic */