ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 110px; /* Width of Menu Items */
	border-bottom: 0px solid #ccc;
		}
	
ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 109px; /* Set 1px less than menu width */
	width: 140px;
	top: 0;
	display: none;

	}

/* Styles for Menu Items */
ul li a {
	border-left:0px none; border-right:0px none; border-top:0px none; border-bottom: 0px none;
	display: block;
	text-decoration: none;
	color: #fff;
	padding: 2px;
		/* IE6 Bug */
	background-image: url('../images/redstripe.jpg');
	font-style:normal; font-variant:normal; font-weight:normal; font-size:10pt; font-family:Arial}
	
/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

ul li a:hover { color: gold; background: black; filter:Alpha(opacity=100); } /* Hover Styles */
		
li ul li a { padding: 2px 5px; } /* Sub Menu Styles */

li:hover ul, li.over ul { display: block; } /* The magic */