body {
	font: 14px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
	}

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

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 89px; /* Set 1px less than menu width */
	top: 0;
	width: 375px;
	display: none;
	background: #FFFFFF;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #00CCFF;
	background: none; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #CCCCCC;
	border-bottom: 0;
	}

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

ul li a:hover { color: #FFFFFF; background: #00CCFF; } /* Hover Styles */
		
li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; } /* The magic */
