/* CSS Document */

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-transform:uppercase;
	font-size:7pt;
}


#nav li { /* all list items */
	position: relative;
	float: left;
	margin-bottom: -1px;
	clear:left;
}

#nav li ul { /* second-level lists */
	position: absolute;
	left: -999em;
	margin-left: 218px;
	margin-top: -2.5em;
	padding: 3px;

	background:#fff;
	border: 1px solid #333; 
	width:auto;	
}

#nav li ul ul { /* third-and-above-level lists */
	left: -999em;
}

#nav li a {
	width: 218px;
	display: block;
	color: #333;
	text-decoration: none;
	padding: 0;
	text-align:right;	
}

#nav li li a {
	width:auto;
	text-align:left;
	padding:3px;
}

*html #nav li li a {			/* a hack for IE6 */
	width:200px;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#nav a:visited {
	color:#999;
}

#nav a:hover {
	color:#900;
}

