/* CSS Document */

body {
	font-family: arial, helvetica, serif;
}

ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

li:hover {
	
	background-position: 0 -50px;
	padding:0;
	margin:0;
	display:block;
}

li ul { /* second-level lists */
	display: none;
	position:absolute;
	top: 25px;
	left: 525px;
}

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 */
	display:none;
	top: auto;
	left: auto;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
	top: 40px;
	left: 525px;
}

li ul li a:hover, li.over ul li a {
	background-color:#990000;
}

#content {
	clear: left;
}
