ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 170px;
	}
ul ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100px;
	background-color: #E6DFCD;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F1A277;
	}
ul ul a:hover {
	list-style: none;
	color: #DD0000;
	text-decoration: underline;
	background-color: #E6DFCD;
	}
ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 170px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #996600;
	background-color: #E6DFCD;
	font-family:"Times New Roman", Times, serif;
	font-size: 14px;
	font-style: italic;
	font-weight: bold;
	padding-left: 3px;
	}
	
/* 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 */

