/* another son of suckerfish...
http://www.htmldog.com/articles/suckerfish/dropdowns/
http://www.alistapart.com/articles/horizdropdowns
*/
#nav ul.menu { /* top level ul */
  padding: 0 0 0 9px;
  margin: 0;
  list-style: none;
  height: 2em;
  background-color: #1c2350;
  z-index:100;
  font-size:16px;
} 

#nav a {
  display: block;
  padding: 0 11px;
  margin: 0;
  line-height: 2em;
  /*width: 6em;*/
  color: white;
  background-color: #1c2350;
  text-decoration: none;
}
#nav span {
  display: block;
  padding: 0 15px;
  margin: 0;
  line-height: 2em;
  /*width: 6em;*/
  color: white;
  background-color: #1c2350;
  text-decoration: none;
}

#nav a:hover {
  color: white;
  background-color: #cb0000;
  text-decoration: undeline;
}

#nav a.active {
  text-decoration: none;
  background-color: #1c2350;
}

#nav li {
  display: inline;
  float: left;
  margin: 0;
  padding: 0;
  /*height: 1.6em;*/
  /*width: 10em;/* fixed width works better, but looks ugly */
}

/* second-level lists */

#nav ul.menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#nav li ul {
  position: absolute;
  width: 13.8em; 
  left: -999em; /* to hide menus because display: none isn't read by screen readers */
}

#nav li li {
  /*height: auto;*/
  float: left;
  width: 13.8em;
}

#nav li ul a {
  /*display: block;*/
  padding: 0.1em 0 0.2em 0.8em;

  width: 13em;
  /*height: auto;*/
  /*text-align: left;*/
  line-height: normal;
  color: white;
  background-color: #3a589e;
  border-bottom: 1px solid #a5acbe;
}

#nav li ul a:hover {
  color: white;
  background-color: #cb0000;
}

#nav li ul ul {
  margin: -1.3em 0 0 14em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
  left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
  left: auto;
}



