body {
	background-image: url(images/bannerleft.jpg);
	background-repeat: repeat-y;
	position: absolute;
	font-size: 9px;
	color: #303030;
	font-family: Verdana, Geneva, Arial;
	}


ul {
	position: absolute;
	top: 0px; 
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100px; /* Width of Menu Items */
	border-bottom: 1px solid #0000aa;
	}

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 99px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	border-left:1px solid #0000aa; border-right:1px solid #0000aa; border-top:1px solid #0000aa; display: block;
	text-decoration: none;
	color: #404040;
	background: #fff; /* IE6 Bug */
	padding: 5px;
	border-bottom: 0px none;
	}

ul li a.blanc {
	border-left:0px solid #0000aa; border-right:0px solid #0000aa; border-top:1px solid #0000aa; display: block;
	text-decoration: none;
	color: no-color;
	background: transparent; /* IE6 Bug */
	padding: 5px;
	border-bottom: 0px none;
	}

/* 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: #cc4c0f; background: #F0F8FF; } /* Hover Styles */

ul li a.blanc:hover { color: no-color; background: transparent; }
		
li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; } /* The magic */
