@charset "utf-8";
/* CSS Document */

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

#nav a {
	display: block;
	text-align: center;
	padding: 7px 3px;
}

/* #nav, #nav ul, #nav li a:link{color: #FFFFFF; text-decoration: none;} */
#nav a:link{color: #FFFFFF; text-decoration: none;}
#nav a:visited{color: #FFFFFF; text-decoration: none;}
#nav a:hover{color: #FFFFFF; text-decoration: none;}
#nav a:active{color: #FFFFFF; text-decoration: none;}


#nav li ul a {
	display: block;
	text-align: center;
	padding: 4px 3px;
}

#nav li { /* all list items */
	float: left;
	width: 75px; /* width needed or else Opera goes nuts */
	border: #C0C0C0 1px solid;
	background: #808080;
	margin: 0px 1px 0px 0;
	font-size: 9pt;
}

#nav li a:hover { /* all list items */ /*the link is used to show a background hover as IE wont do it on a div or li*/
	background: #C0C0C0;
}

#nav li:hover {
}

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

#nav li ul a { /* seconf-level items */
	text-align: left; /*used to align the second level links to the left*/
}

#nav li ul li { /* seconf-level items */
	font-size: 9pt;
	width: 134px;
}

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