/* menuV.css
 * For: menuDropdown.js (version: 0.1x)
 */

#mainMenu1 {
  background-color: #304BA4;
  color: White;
  margin: 0;
  padding: 0;
  text-align: center;
  /* if the menu is vertical:
   * set border to 'none'
   * padding-left must be equal to padding-right
   */
  width: 140px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  z-index: 1;
  position: absolute;
  /* if the menu is horizontal: use a 'static' position
   * if the menu is vertical: use an 'absolute' or 'fixed' position
   */
}

#menuList1 {
  border: 1px solid #273A7B;
  margin: 0;
  padding: 2px;
  /* do not use a position other than 'static' here */
  /* if the menu is vertical:
   * margin-left + border-left-width + padding-left must be equal to
   * margin-right + border-right-width + padding-right
   */
}

#menuList1 li {
  /* do not change these rules */
  display: inline;
  margin: 0;
  padding: 0;
  list-style: none;
  /* do not change these rules */
}

#menuList1 li a {
  background-color: transparent;
  color: White;
  display: block;
  border: 1px solid #273A7B;
  margin: 0;
  padding: 2px 10px;
  /* always set margin to '0' */
  /* Win/IE5.0 will ignore border and padding if display is 'inline' */
  text-decoration: none;
}

#menuList1 li a:hover, #menuList1 li a:focus {
  background-color: #506BC4;
  color: Yellow;
  border-color: #273A7B;
}

#menuList1 li a.actuator {
  color: Yellow;
  padding-right: 20px;
}

#menuList1 li a.actuator:hover, #menuList1 li a.actuator:focus {
  background-color: #506BC4;
  color: Yellow;
  border-color: #273A7B;
}

#menuList1 ul.menu {
  background-color: #E7C83F;
  color: #000;
  border: 1px solid #C7A51A;
  margin: 0;
  padding: 2px;
  text-align: left;
  /* only set '0' or negative margin */
  /* border  width must be the same on the four sides (in 'px' units) */
  /* padding width must be the same on the four sides (in 'px' units) */
  z-index: 100;
  position: absolute;
  visibility: hidden;
  /* always set position to 'absolute' and visibility to 'hidden' */
}
ul.menu li {
  background-color: transparent;
  color: White;
  border-color: #E7BF1A;
}

#menuList1 ul.menu .menu {
  background-color: #E7C83F;
  color: #000;
  border: 1px solid #C7A51A;
  margin-left: 2px;
  /* if a non-zero padding is set on .menu, set margin-left to margin-left + padding */
}
#menuList1 ul.menu li a:hover, #menuList1 ul.menu li a:focus {
  background-color: #977F1D;;
  color: White;
  border-color: #AB901F;
}

#menuList1 ul.menu li a {
  color: Black;
  padding-right: 20px;
    border-color: #E7BF1A;
}