ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

li { /* all list items */
	float: left;
	position: relative;
	width: 15em; 
	text-align: center; 
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1.3em; 
	left: 0;
/*	padding: 5px; */
}

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: block;
	z-index: 1; 
}

#content {
	clear: left;
}

#nav { margin-top: 5px; margin-bottom: 5px; margin-left: auto; margin-right: auto; 
width: 75em; height: 22px; border: #444444 1px solid; }

#nav li {padding-top: 2px; padding-bottom: 2px;}

#nav a {font-weight: bold;}

#nav a:hover {background-color: #444444;}

#nav ul.drop {border: #444444 solid 1px; background-color: #000000;}

/* .menubar {border: #44444 solid 1px;} */

h1 {clear: both; display: block;} 