/*******************************************************************************
** nav_menu.css
** Styles pertaining to the navigation menu in Webview; by default on the
** left-hand side of the page
*/

#ColNav h1 {
  background-color: #b1c9cb;
  border: solid #669999 1px;
  margin: 0px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 10px;
  font-weight: normal;
  font-size: 11px;
  letter-spacing: 1px;
}

#ColNav ul {
  margin: 0px;
  margin-bottom: 10px;
  border: solid #669999 1px;
  border-top: none;
  padding: 0px;
  padding-left: 0px;
  padding-top: 2px;
  padding-bottom: 2px;
  letter-spacing: 1px;
  list-style: none;
  font-size: 11px;
}

#ColNav ul li {
  margin: 0px;
  padding: 0px;
  padding-left: 10px;
  padding-right: 10px;
}

#ColNav ul li a {
  display: block;
  vertical-align: middle;
  width: 100%;
  height: 16px;
  text-decoration: none;
  color: #000000;
}

#ColNav ul li a:visited {
  color: #000000;
}

#ColNav ul li a:hover {
  background-color: #b1c9cb;
}


