img{border:0px;}

#nav, #nav ul, #nav ul ul { /* all lists */
	padding-left: 5px;
	margin: 0;
	list-style: none;
	line-height: 1;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333333;
	text-decoration: none;
	line-height: 20px;
	font-weight: bold;
	z-index:99;
}

#nav a {
	display: block;
	color: #333333;
	text-decoration: none;
}

#nav li { /* all list items */
	float: left;
	width: 250px;  /*width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #D1D2D4;
	width: 100px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul li {
	width: 150px;
}
#nav li ul li ul li {
	width: 350px;
}
#nav li ul ul { /* second-level lists */
	position: absolute;
	background: #B3B3B3;
	width: 230px;
	margin: -20px 0 0 10em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
	width: 100px;
}

#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: #ccc;
}