h1 {
     font-family: verdana, tahoma, arial;
         font-size: 22px;
         color: #FF6600;
   }
h2 {
     font-family: verdana, tahoma, arial;
         font-size: 14px;
         font-weight: 500;
         color: #000000;
   }

h3 {
     font-family: verdana, tahoma, arial;
         font-size: 14px;
         font-weight: 500;
         color: #000000;
   }

h4 {
            font-family: verdana, tahoma, arial;
         font-size: 16px;
         color: #000000;
   }

h5 {
      font-family: verdana, tahoma, arial;
      font-size: 16px;
      color: #FF6600;
   }

h6 {
      font-family: verdana, tahoma, arial;
      font-size: 18px;
      color: #000000;
   }
A:link {
     color: #FFee00;
     text-decoration: none;
         }

A:active {
      color: #FFee00;
      text-decoration: none;
      }
A:visited {
      color: #FFee00;
      text-decoration: none;
      }
A:hover {
      color:  #FFee00;
      text-decoration: underline;
      }
.r:link {
     color: #FF6600;
     text-decoration: none;
         }
.r:active {
      color: #FF6600;
      text-decoration: none;
      }
.r:visited {
      color: #FF6600;
      text-decoration: none;
      }
r:hover {
      color:  #FF6600;
      text-decoration: underline;
      }

.text {
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 12px;
        color: #000000;
}

/*Nav bar styles*/

ul.nav,
.nav ul{
margin: 0;
padding: 0;
cursor: default;
list-style-type: none;
display: inline;
}

ul.nav{
display: table;
}

ul.block{
width: 100%;
table-layout: fixed;
}

ul.nav>li{
display: table-cell;
position: relative;
padding: 2px 6px;
}
/*
ul.nav>li:hover{
padding-right: 1px;
}*/

ul.nav li>ul{
display: none;
position: absolute;
max-width: 40ex;
margin-left: -6px;
margin-top: 2px;
}

ul.nav li:hover>ul{
display : block;
}

.nav ul li a{
display: block;
padding: 2px 10px;
}

/*Menu styles*/

ul.nav,
.nav ul,
.nav ul li a{
background-color: #19130f;
color: #ffee00;
}

ul.nav li:hover,
.nav ul li a:hover{
background-color: #19130f;
color: #ffee00;
}

ul.nav li:active,
.nav ul li a:active{
background-color: #19130f;
color: #ffee00;
}

ul.nav,
.nav ul{
border: 0px solid #369;
}

.nav a{
text-decoration: none;
}

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;