@charset "utf-8";
/* CSS Document */

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px; /* Width of Menu Items */
	border-bottom: 1px solid #a7a37e;
	}

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 150px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}
	
ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #A7A37E;
	padding: 10px;
	border: 1px solid #a7a37e;
	border-bottom: 0;
	background-color: #B8B596;
	}
li:hover ul {
	display: block;
	color: #FF0000;
}
