BODY {
	margin: 0;
	background-color: #ffd;
	font: 11px Verdana, Helvetica, sans-serif;
}
P {
	font: 11px Verdana, Helvetica, sans-serif;
}
TD {
	font: 11px Verdana, Helvetica, sans-serif;
}
H1 {
	font: bold 24px Garamond, "Times New Roman", serif;
	text-align: center;
	margin: 15px 0;
}
H2 {
	font: bold 18px Garamond, "Times New Roman", serif;
	border-bottom: 1px solid #c22;
}
H3 {
	font: bold 14px Garamond, "Times New Roman", serif;
	margin-bottom: 0;
}
ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

li { /* all list items */
	float: left;
	position: relative;
	width: 105px;
	border-right: 1px solid #fff;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
}

li ul li {
	width: 175px;
	padding: 5px;
	border-top: 1px solid #fff;
	border-right: 0;
}

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;
}
a.menu {
font-size: 12px; color: #000; padding: 10px; text-decoration: none; font-weight: bold;
}
a.submenu {
font-size: 12px; color: #000; padding: 0 5px; text-decoration: none; font-weight: bold;
}
a:hover.menu {
font-size: 12px; color: #fff; padding: 10px; text-decoration: none; font-weight: bold;
}
a:hover.submenu {
font-size: 12px; color: #fff; padding: 0 5px; text-decoration: none; font-weight: bold;
}