.std	{  text-decoration:none; color:#404040; font-family:Arial, Helvetica; font-size:12pt}
h1	{  text-decoration:bold; color:#606080; font-family:Arial, Helvetica; font-size:15pt}
h2	{  text-decoration:bold; color:#606080; font-family:Arial, Helvetica; font-size:13pt}
a:link	{  text-decoration:none; color:#408060; font-family:Arial, Helvetica; font-size:12pt}
a:visited	{  text-decoration:none; color:#408060; font-family:Arial, Helvetica; font-size:12pt}
a:active	{  text-decoration:underline; color:#408060; font-family:Arial, Helvetica; font-size:12pt}
a:hover	{  text-decoration:underline; color:#408060; font-family:Arial, Helvetica; font-size:12pt}
table.std	{  text-decoration:none; color:#404040; font-family:Arial, Helvetica; font-size:12pt; list-style: none}


#nav li ul {
	position: absolute;
	width: 10em;
	left: -100em;
	list-style: none;
	list-style-type: none;
}
#nav ul.NoBullet {
  list-style-type: none}
/*#nav li {
	position: absolute;
	width: 10em;
	left: -999em;
	list-style: none;
}*/



#nav li:hover ul {
	left: auto;
	list-style: none;
}

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"), "");
		}
	}
}

#nav li:hover ul, #nav li.sfhover ul {
	left: auto;
}

if (window.attachEvent) window.attachEvent("onload", sfHover);