/* CSS Document */

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1.2;
}

#nav a {
	display: block;
	width: 10em;
	color:#000000;
}

#nav li { /* all list items */
	float: left;
	width: 6em; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #ffffff;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	color:#000000;
}

#nav li ul  a.link { /* second-level lists */
	position: absolute;
	background: #ffffff;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	color:#000000;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#content {
	clear: left;
	color: #FFFFFF;
}

.home {
width:4em;
}

.toplinks a:link {color: #ffffff; text-decoration: none; font-size:8px;}
.toplinks a:active {color: #ffffff; text-decoration: none; }
.toplinks a:visited {color: #ffffff; text-decoration: none; }
.toplinks a:hover {color: #ffffff; text-decoration: underline; }

#nav li:hover, #menu li.hover {
    position: static;
}

