/*body {
	font: normal 11px verdana;
	}*/

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 180px; /* Width of Menu Items */
	/*border-bottom: 1px solid #ccc;*/
	}
	
ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 177px; /* Set 1px less than menu width */
	width: 180px; /* Width of Menu Items */
	padding: 5px;	
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #fff;
	background: #808080; /* IE6 Bug */
	padding: 8px;
	border-bottom: 1px solid #fff; /* IE6 Bug */
	}
	
ul li a:hover {
   background: #e0e0e0;
	color: #7a0019;
}	
/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
* html ul li a:hover {
   background: #e0e0e0;
	color: #7a0019;
}
/* End */

li:hover ul, li.over ul { display: block; } /* The magic */
.light {
	background: #9a9a9a;
}	
