/* LIST MENU STYLES START*/

ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	z-index: 997;
}

#nav li { /* all list items */
	float: left;
	position: relative;
	z-index: 999;
}

#nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	z-index: 998;
}

#nav li:hover 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;
	display:block;
}

#nav li ul li ul .ulsubmenu {
  display: none;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}



/* LIST MENU STYLES END */
