body {
	font-family: arial, helvetica, serif;
}

ul {
	/* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

li {
	/* all list items */
	float: left;
	position: relative;
	width: 110px;
	border-bottom: thin solid black;
}

li ul {
	/* second-level lists */
	display: none;
	position: absolute;
	top: 2.4em;
	left: 0;
	text-align: center;
	font-family: Arial;
	font-size: 11px;
	background-color: #383838;
}

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;
}

.menuLink {
	COLOR: #ffffff; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif; TEXT-DECORATION: none;
}
.menuLink A {
	COLOR: #ffffff; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif; TEXT-DECORATION: none;
}
.menuLink A:hover {
	COLOR: #ffffff; FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif; TEXT-DECORATION: underline;
}
