#sfnav, #sfnav ul { /* all lists */
	padding: 0;
	margin: 0 0 0 0;
	list-style: none;
	font-size: 14px;
}

/* IE6 Only */
* html #sfnav, #sfnav ul {
	margin: 0 0 -4px 0;
}

/* IE7 Only */
*:first-child+html #sfnav, #sfnav ul  {
	margin: 0 0 -4px 0;
}

#sfnav a {
	display: block;
	width: 105px;
	border: solid;
	border-width:1px 1px 0 1px; 
	border-color:#555;
	padding: 2px 0 2px 3px;
	margin:  0;
	text-align: center;
	background:#EEE;
	text-decoration: none;
	color: black;
}

#sfnav a:hover {
	background:#BBB;
}

#sfnav a.lower{ /* second-level lists */
	width: 200px;
	text-align: left;
}

#sfnav li { /* all list items */
	float: left;
	width: 105px; /* width needed or else Opera goes nuts */
	padding: 0;
	margin:  0;
	background-image: none;
}

#sfnav li ul { /* second-level lists */
	position: absolute;
	padding: 0;
	margin:  0;
	border: solid;
	border-width: 0 0 1px 0; 
	border-color:#555;
	width: 205px;
	font-size: 12px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#sfnav li ul li{ /* second-level lists */
	float: left;
	width: 205px;
	padding: 0;
	margin:  0;
	background-image: none;
}


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

#sfnav li.sfout ul { /* lists nested under hovered list items */
		left: -999em; 
}

#borderbox{
	clear:both; 	
	border-style: solid; 
	border-width: 1px; 
	border-color:#555;
	margin: 0;
	padding:0;
}

