ul.menu {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px; /* Width of Menu Items */
	border-bottom: 1px solid #000000;
	}
	
#nav { }

#nav li a:hover { text-decoration: none; }	
	
ul li.menuLink {
	position: relative;
	}
	
li.menuLink ul {
	position: absolute;
	left: 149px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul li.menuLink a {
	display: block;
	text-decoration: none;
	color: #000000!important;
	background: #fff; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #000000; /* IE6 Bug */
	border-bottom: 0;
	text-align: center;
	}
	
/* Holly Hack. IE Requirement \*/
* html ul li.menuLink { float: left; height: 1%; }
* html ul li.menuLink a { height: 1%; }
/* End */

li:hover ul, li.over ul { display: block; text-decoration: none!important; z-index: 1000; } /* The magic */

li.menuLink a:hover { background-color: #eee; color: #c51e53!important; font-weight: bold; }