/*  
	----- MENU.CSS -----
	This css document controls the layout and functionality of the dropdown menu
*/

#nav li 			
{ 
	float: left;
	position: relative;
	width: 9em;
}
ul 
{ 
	padding: 0px;
	margin: 0px;
	list-style: none;
}


li ul 
{ 
	display: none;
}

ul li ul li
{
	padding: 1px 10px;
}

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;
}

li:hover ul, li.over ul  
{
	display: block;
	position: absolute;	
	top: 25px;
	left: 20px;
}
