@charset "UTF-8";

body,td,th {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color: #666;
}
a:link {
	color: #009;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #009;
}
a:hover {
	text-decoration: underline;
	color: #333;
}
a:active {
	text-decoration: none;
	color: #333;
}
.darker_gray { color: #333; }
.xsmall {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: x-small;
}
.xxsmall {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: xx-small;
}
.small_type {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: small;
}
.large_type {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 22px;
	color: #333;
}
.palatino_body {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: medium;
}
.wide_spacing {
	line-height: 2em;
}
.narrow_spacing {
	line-height: 1.3em;
}

* {
 margin: 0;
 padding: 0;
}

body {
 margin-top: 1em;
 background: #fff;
 font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
 color: #666;}

p { margin-bottom: 1em; }

ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	background: #EEE;
	font-size: small;
	margin-bottom: 0.75em;
}

li { /* all list items */
	float: left;
	position: relative;
	width: 116px;
	background: #EEE;
	font-size: small;
	margin-bottom: 0.75em;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	background: #EEE;
	font-size: small;
	margin-bottom: 0.75em;
}

li>ul {
	top: auto;
	left: auto;
	margin-bottom: 0.75em;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}

#content {
	clear: left;
}

<script type="text/javascript"><!--//--><![CDATA[//><!--
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;

//--><!]]></script>
