/* =Nav
----------------------------------------------- */
#div-menu {
  font-family: verdana;
  font-size: 8pt;
  background-color: #127F4C; /* Green */
  width: 100%;
  }

#div-menu ul {
  margin: 0;
  padding: 0 55px; /* 2nd figure positions LI's from left */
  list-style: none;
  }

#div-menu li {
  float: left;
  margin: 0;
  padding: 0;
  }

#div-menu a {
  display: block;
  margin: 0px 0 0 0;
  padding: 5px 10px 6px;
  border-right: 1px solid #A7A7A7; /* Gray */
  text-decoration: none;
  white-space: nowrap;
  color: #FFFFFF;
  }

/* Following rule allows entire region of link to to be 
   clickable in IE/Win. Holly Hack explained here:
   http://www.positioniseverything.net/explorer/escape-floats.html */
* html #div-menu a {
  width: 1%;
  }

#div-menu a:hover {
  background-color: #005930; /* Hover Color (Dark Green) */
  }

#div-menu #current a {
  background-color:#7E1512; /* No Hover for Current (Dark Red) */
  }

#div-menu .first {
  border-left: 1px solid #A7A7A7;
  }