@charset "utf-8";
/* These Dropdown lists work fine in IE and Firefox
They are not controlled by individual classes like the original
ones that I used from Suckerfish.
They also line up real well not like the old ones who acted up
*/


/*Container for the Navigation Bar
Can only Set the background Color
And the width and borders
Padding and Margins have no effect on the unordered lists in this div
*/
#nav {
	background-color: #000000;
	height: 20px;
	width: 100%;
	border-top-width: medium;
	border-top-style: groove;
	border-top-color: #CCCCCC;
	border-left-width: medium;
	border-left-style: groove;
	border-left-color: #CCCCCC;
	z-index: 10;
}
/*Bullits off
And most important 0 padding and 0 margins
Nothing else goes into this div
*/
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1em;
}

#nav li { /* all list items */
	float: left;
	width: 100px; /* width needed or else Opera goes nuts */
}
#nav li a {
	font-size: 1em;
	color: #FFFFFF;
	display: block;
	font-variant: small-caps;
	text-decoration: none;
	padding-top: 2px;
	padding-left: 4px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999999;
	font-weight: bold;
}
#nav li a:hover {
	color: #CCCCCC;
	border-left-width: medium;
	border-left-style: double;
	border-left-color: #FFFFFF;
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 100px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background-color: #FFFFCC;
}
#nav li ul a {
	color: #333333;
	font-size: 10px;
}
#nav li ul a:hover {
	border-left-width: medium;
	border-left-style: groove;
	border-left-color: #0000FF;
	font-size: 10px;
	color: #0000FF;
}

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

