body {
	font: normal 11px verdana;
	}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 200px; /* Width of Menu Items */
	text-align: left;
        background: #DACBEC;
	}
	
ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: -200px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	text-align: left;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #black;
	background: #DACBEC; /* IE6 Bug */
	padding: 5px;
	border-bottom: 0;
	}
ul li a:hover {background: #ECE4F6;}
	
/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.over ul { display: block;} /* The magic */
