		
#nav-buttons {
	font: normal 12px verdana, Georgia, san-serif;
	}

#nav-buttons ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px; /* Width of Menu Items */
	border-bottom: 1px solid #000;
	}

#nav-buttons ul li {
   Margin-Left: 1px;
   Margin-Right: 1px;
	line-height: 150%;

	position: relative;
	}
	
#nav-buttons li ul {
	position: absolute;
	left: 149px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
#nav-buttons ul li a {
	display: block;
	text-decoration: none;
	color: #EEEEEE;
	background: #202020; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #888888;
	border-bottom: 1;
	}

/* Fix IE. Hide from IE Mac \*/
* html #nav-buttons ul li { float: left; height: 1%; }
* html #nav-buttons ul li a { height: 1%; }
/* End */

#nav-buttons ul li a:hover { color: #00FF00; background: #404040; } /* Hover Styles */
		
#nav-buttons li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
		
#nav-buttons li:hover ul, li.over ul { display: block; } /* The magic */