#nav, #nav ul { /* all lists */
		margin: 0; list-style: none; float : left; width : 220px; height: auto; clear: left; padding: 0; }
	
	#nav li { /* all list items */
		float : left; width: 250px; height: auto; clear: left; border-bottom: 1px solid white; }
	
	#nav li ul { /* second-level lists */
		position : absolute; left: -999em; width: 250px; height: 100px; margin-left : 251px; margin-top : -36px; padding-left: 0; border-bottom: 1px solid #fff; }
	

	
	#nav li a:link { width: 11em; w\idth : 250px; display : block; color : #82b4d3; font-size: 9pt; font-family: verdana; font-weight : normal; text-decoration : none; height: auto; border-bottom: 1px solid #fff; }
#nav li a:hover { color: #666; font-size: 9pt; font-family: verdana; font-weight: normal; line-height: 18pt; text-decoration: none; display: block; width: 250px; height: auto; border-bottom: 1px solid white; }
#nav li a:visited { color: #82b4d3; font-size: 9pt; font-family: verdana; font-weight: normal; line-height: 18pt; text-decoration: none; display: block; width: 250px; height: auto; border-bottom: 1px solid white; }
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul { left: -999em; width: 220px; border-bottom: 1px solid #fff; }
	
	#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; width: 220px; }

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
