ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	height: auto;
	width: auto;
}
li { /* all list items */
	float: left;
	position: relative;
	width: auto;
	height: 39px;
}

li.top {
	padding: 0;
	margin: 0;
	list-style: none;
	height: 62px;
	width: auto;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	width: auto;
	height: 39px;
	line-height: 0;
	top: 61px;
	left: 0px;
	border: 1px solid #FFF;
}

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 { /* lists nested under hovered list items */
	display: inline-block;
	top: 61px; 
	left: 0px; 
}

li:hover ul li a {
	top: 61px; 
	left: 0px; 

}

#content {
	clear: left;
}
