ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 173px; /* Width of Menu Items */
}
	
ul li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #7D816C;
	background-color: #D7D6C8;
	position: relative;
	font-size: 13px;
	font-weight: bold;
	width:auto;
}

li ul {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border:1px solid #7D816C;
	display: block;
	position: absolute;
	left: 173px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	z-index:10;
	width:auto;
}

/* Styles for Menu Items */
ul li a {
	border-left:0px solid #7C816C; border-right:0px solid #7C816C; border-top:0px solid #7C816C; display: block;
	text-decoration: none;
	color: #000000;
	background: #D3D3C5; /* IE6 Bug */
	padding: 5px 0px 5px 12px;
	/* IE6 Bug */
	border-bottom: 0px none;
	width: 173px; /* Width of Menu Items */
}

ul li a:hover {
	border-left:0px solid #7C816C; border-right:0px solid #7C816C; border-top:0px solid #7C816C; display: block;
	text-decoration: none;
	color: #C9CBC3;
	background: #797E68; /* IE6 Bug */
	padding: 5px 0px 5px 12px;
	/* IE6 Bug */
	border-bottom: 0px none;
	width: 173px; /* Width of Menu Items */
}
	
/* 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; 
   background: #797E68; /* IE6 Bug */   
} /* The magic */