td {
	font-family: arial, helvetica, sans-serif; font-size: 13pt; 
}

a.nav:link {
	color: #000;
	background-color: #963;
	text-decoration: none;
	font-weight: bold;
	}

a.nav:visited {
	color: #000;
	background-color: #963;
	text-decoration: none;
	font-weight: bold;
	}

a.nav:active	{
	color: #000;
	background-color: #963;
	text-decoration: none;
	font-weight: bold;
	}

a.nav:hover {
	color: #D1BEB1;
	background-color: #963;
	text-decoration: none;
	font-weight: bold;
	}
	
.current {
	color: #D1BEB1;
	background-color: #963;
	font-weight: bold;
}

ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

li { /* all list items */
	float: left;
	position: relative;
	font-weight: bold;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	margin-top: 2px;
}

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: 1em;
	left: auto;
	margin-top: 3px; 
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}