div.nav { /*CSS class for menu headers in general (expanding or not!)*/
   padding-top: 45px;
   padding-right: 0;
   font-family: Arial;
   font-weight: normal;
   font-size: 1em;
   letter-spacing: 1px;
   font-variant: small-caps;
   width: 140px;
   margin: 0px;
   padding-bottom: 0px;
   padding-left: 0px;
}
div.nav ul { /*CSS for UL of each sub menu*/
   list-style-type: none;
   margin: 0;
   padding: 0;
   margin-bottom: 0px; /*bottom spacing between each UL and rest of content*/
}
div.nav ul li {
   padding-bottom: 2px; /*bottom spacing between menu items*/
   font-family: Arial, Helvetica, sans-serif;
}
div.nav ul li a {
   color: #005ECA;
   display: block;
   padding-left: 25px; /*link text is indented 19px*/
   text-decoration: none;
   margin: 0px;
   padding-right: 0;
   padding-bottom: 7px;
}
div.nav ul li a:visited {
   color: #54859F;
}
div.nav ul li a:hover { /*hover state CSS*/
   color: #CCC;
   background-image: url(../images/hole.gif);
   background-repeat: no-repeat;
}
div.nav h3.expandable {
   background-repeat: no-repeat;
   background-position: right;
}
div.nav h3.expandable a {
   cursor: default;
}
div.nav h3 {
   margin: 0px;
   padding-top: 0px;
   padding-right: 0px;
   padding-bottom: 9px;
   padding-left: 0px;
   font-weight: normal;
   font-family: Arial, Helvetica, sans-serif;
   font-size: 1em;
}
div.nav h3 a {
   font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
   color: #D6000A;
   background-color: #000;
   background-image: url(../images/bullet.gif);
   background-repeat: no-repeat;
   padding-left: 25px;
   text-decoration: none;
   padding-top: 0px;
   padding-bottom: 4px;
   margin: 0px;
   border-top-style: none;
   border-right-style: none;
   border-bottom-style: none;
   border-left-style: none;
   display: block;
}
div.nav h3 a:visited {
   color: #BD5F65;
}

div.nav h3 a:hover {
   background-image: url(../images/hole.gif);
   background-repeat: no-repeat;
   color: #CCC;
}
div.nav h3.expandable a:hover {
   background-image: url(../images/bullet-down.gif);
   background-repeat: no-repeat;
}
div.nav h3 a.current ,div.nav ul li a.current   {
   color: #CCC;
}
