.submenu ul { /* all lists */
    padding: 0;
	margin: 0;
	list-style: none;
	text-align: left;
}

.submenu li { /* all list items */
	float: left;
	position: relative;
	font-size: 11px;
	font-weight: normal;
	
}

.submenu li ul { /* second-level lists */
	display: none;
	top: 2.1em; 
	position: absolute;
	width: 96px;
	left: 0;
	margin-top: 3px;
	padding-top: 4px;
	padding-bottom: 2px;
	background-color: #BDBDB1;
	text-align: left;
	border:solid 1px #BDBDB1;
}

.submenu li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
	text-align: left;
}

.submenu li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
	text-align: left;
	z-index: 99;
}

.submenu a { 
	background-color: #FDFF84;
	padding-top: 2px;
	padding-bottom: 2px;
	color: #000;
	font-size: 11px;	
	font-weight: normal;
	
}	

.submenu li ul a:hover, li ul a.over { 
	background-color: Gray;	
	color: #FDFF84;
	width: 100%;
	padding-top: 2px;
	padding-bottom: 2px;
	font-size: 11px;
	font-weight: normal;
}	


.submenu a:hover { 
	
	font-size: 11px;
	font-weight: normal;
}