a img { border:none; }

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

#nav a {
	display: block;/*needed for IE*/
}

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

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

#nav li li a {
	text-decoration:none;
	color:#000;
	border-bottom:1px solid #c00;
	background:#c00;
	display:block;
	width:103px;
	padding:5px;
	font-weight:bold;
}

#nav li li a:hover {
	text-decoration:none;
	color:#f9f9d5;
	border-bottom:1px solid #c00;
	background:#c00;
	display:block;
	width:103px;
	padding:5px;
	font-weight:bold;
}

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