body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	table-layout: center center;
	text-align: inherit;
	color:#000000;
	margin: 0;
	background-image: url(../images/background.png);
	background-position: top center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	font-size: 11pt;
	padding-right: inherit;
	border: 0;
	
}

td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
  vertical-align:baseline;
  color:#FFFFFF;
  }

li {
	float: left;
	position: relative;
	width: 11em;
	font-size: 14px;
	font-weight:bold;
	color:#FFFFFF;
  }
  
li ul {
  display: none;
  position: absolute; 
  top: 0em;
  left: 10.5em;
  clear: left;
  font-style: italic;
  background-color:#dfcfae;
  color:#FFFFFF;
  }
  
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;

