/*
  CSS file for a horizontal menu.

  Copy this file to "hmenu1.css" and edit it to your needs. You should replace "1" with the menu number as used in the calling file (hmenu1.php).

  In index.php, the container where you include hmenu1.php, has to have the "hmenu1" as id, e.g. <td id=hmenu1>.
*/

#hmenu1  table {
  float: left;
}

#hmenu1  td.menu_button {
  vertical-align: middle;
  text-align: center;
  height: 18px;
  width: 120px;
}

#hmenu1  td.menu_button:hover,
#hmenu1  td.menu_button:hover a,
#hmenu1  td.menu_button a:hover {
  cursor: pointer;
  color: #1A54A6;
  background-color: white;
}

#hmenu1  td.menu_button,
#hmenu1  td.menu_button a {
  font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
  background-color: #1A54A6;
  color: white;
  font-size: 10px;
  font-weight: normal;
  font-weight: bold;
}

