body {
	font-family: Arial;
	font-size: 12px;
	color: #6b625e;
	}

.ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 180px; /* Width of Menu Items */
	border-bottom: 0px solid #dbc7ad;
	}

.ul li {
	position: relative;
	}
	
.li ul {
	position: absolute;
	left: 179px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
.ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #FFFFFF; /* IE6 Bug */
	padding: 5px;
	border: 0px solid #dbc7ad;
	border-bottom: 0;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	
	}

.li ul a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #dadada; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #FFFFFF;
	border-bottom: 1;px
	border-top: 1px;
	border-left: 1px;
	border-right: 1px;
	
	}


/* 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: #000000; } /* Hover Styles */

		
.li ul li a { padding: 5px 5px;} /* Sub Menu Styles */
.li ul a:hover { color: #FFFFFF; background: #000000; } /* Sub Menu Styles */		
.li:hover ul, li.over ul { display: block; } /* The magic */