/* Menu CSS */

/* not configurable */
.menuitemtoplevel {
  font-family: Arial;
  font-weight: bold;
  text-align: center;
  line-height: 26px;
  text-decoration: none;
  display: block;
  padding-left: 4px;
  padding-right: 4px;
}

/* configurable */
.menuitemtoplevel:link, .menuitemtoplevel:visited, .menuitemtoplevel:active {
  background-image: url(../images/menu-back.png);
  background-color: black;
  height: 26px;
  color: white;
  /* not configurable */
  text-decoration: none;
}

/* not configurable */
.menuitemtoplevel:hover {
  text-decoration: none;
}

.menupanel {
  /* not configurable */
  visibility: hidden;
  position: absolute;
  z-index: 100;
  /* configurable */
  background-image: url(../images/menu-back.png);
  background-color: black;
  width: 180px;
}

.menuitem {
  /* not configurable */
  display: block;
  width: 100%;
  /* configurable */
  background-color: black; 
  font-family: Arial;
  font-weight: bold;
  font-size: 8pt;
  text-align: left;
  line-height: 26px;
  color: white;
  text-decoration: none;
  width: 180px;
}

.menuitem:link, .menuitem:visited, .menuitem:active {
  color: white;
  background-color: black;
  text-decoration: none;
}

.menuitem:hover {
  text-decoration: none;
}


