body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: lighter;
	/* font-variant: small-caps; */
	}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 201px; /* Width of Menu Items */
	border-bottom: 1px solid #CCCCCC;
	}

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 200px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #CCCCCC;
	background: #414141; /* IE6 Bug */
	padding: 12px;
	border: 1px solid #ccc;
	border-bottom: 0;
	text-align:right;
	}

/* 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: #000000;
	background: #FFCC00;
	font-weight: normal;
	} /* Hover Styles */
		
li ul li a { 
	padding: 5px 5px; 
	text-align: center;
	} /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; } /* The magic */
