#nav, #nav ul { /* all lists */
		padding: 0; margin: 0; list-style: none; float : left; width : 300px; }
	
	#nav li { /* all list items */
		position : relative; float : left; line-height : 18pt; margin-bottom : -1px; width: 300px; border-bottom: 1px solid #ececec; }
	
	#nav li ul { /* second-level lists */
		position : absolute; left: -999em; width: 300px; margin-left : 301px; margin-top : -35px; }
	

	
	#nav li a:link { width: 11em; w\idth : 285px; display : block; color : #e6dec7; font-size: 10pt; font-family: "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif; font-weight : normal; line-height: 12pt; background-color: #9e1d21; text-decoration : none; height: auto; padding : 9px 10px 9px 5px; border-top: 1px solid #ececec; }
#nav li a:visited { width: 11em; w\idth : 285px; display : block; color : #e6dec7; font-size: 10pt; font-family: "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif; font-weight : normal; line-height: 12pt; background-color: #9e1d21; text-decoration : none; height: auto; padding : 9px 10px 9px 5px; border-top: 1px solid #ececec; }
#nav li a:hover { color: #9e1d21; font-size: 10pt; font-family: "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif; font-weight: normal; line-height: 12pt; background-color: #e6dec7; text-decoration: none; display: block; padding: 9px 10px 9px 5px; width: 285px; height: auto; border-top: 1px solid #ececec; }
#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: 300px; }
	
	#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: 300px; }

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"), "");
		}
	

