@charset "UTF-8";
nav {

	
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font:Verdana, Arial, Helvetica, sans-serif ,5em;
	text-align:center;
}
ul li {
	position: relative;
	float: left;
	width: 100px; font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#FFFFFF;
		
}
li ul {
	position: absolute;
	top: 31px;
	display: none;a:link { color: red; text-decoration: none; }
a:visited { color: orange; text-decoration: none; } 
a:hover {
	color: #FF6600;
} 

	
}
ul li a {
	display: block;
	text-decoration: none;
	line-height: 18px;
	color: #ffffff;
	padding: 6px;
	background: #333333;
	margin: 0px;
	

	
	
	
}

ul li a:hover { background: #ff9933; }

li:hover ul, li.over ul { display: block;}

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;
}
