ul {
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: none;
	width: 157px; /* Width of Menu Items */
	border-bottom: 1px solid #000000;
}

/* First level list items */
ul li {
	position: relative;
	font-weight: bold;
	width: 157px; /* Width of Menu Items */
	color: #FFFFFF;
}

/* Second level list items */
li ul {
	position: absolute;
	left: 156px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	font-weight: bold;
}

/* Styles for list items that are links */
ul li a {
	display: block;
	color: #FFFFFF;
	background: #3366AA; /* IE6 Bug */
	padding: 4px;
	border: 1px solid #000000;
	border-bottom: 0;
}
ul li a:visited{
	display: block;
	color: #FFFFFF;
	background: #3366AA; /* IE6 Bug */
	padding: 4px;
	border: 1px solid #000000;
	border-bottom: 0;
}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }

/* Hover Styles */
ul li a:hover { color: #000000; background: #EEEEEE; }
li ul:hover { color: #000000; background: #EEEEEE; }

/* The magic */
li:hover ul, li.over ul { display: block; }