#mainMenu1 {
  background-color: #FFFFFF;
  color: #336699;
  margin: 0;
  padding: 0;
  /* if the menu is vertical:
   * set border to 'none'
   * padding-left must be equal to padding-right
   */
  /*width: 18%;*/
  position: relative;
  margin-left:auto;
  margin-right:auto;
  
  /* if the menu is horizontal: use a 'static' position
   * if the menu is vertical: use an 'absolute' or 'fixed' position
   */
}

#menuList1 {
  margin: 0;
  padding: 2px;
  width:100%;
  /* 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;
  color: #336699;
  /* do not change these rules */
}

#menuList1 li a {
  background-color: transparent;
  color: #336699;
  display: block;
  font-size:11px;
  border-bottom: 1px solid #EEE;
  margin: 0;
  padding: 2px 10px;
  height:auto !important;
  height:0px;
  line-height:14px;
  /* always set margin to '0' */
  /* Win/IE5.0 will ignore border and padding if display is 'inline' */
  text-decoration: none;
  width:160px;
}

#menuList1 li a:hover, #menuList1 li a:focus {
  background-color: #94c9e5;
  color:#ffffff;
  border-color: #CCC;
}

#menuList1 li a.actuator {
  color: #336699;
  /*padding-right: 20px;*/
  width:160px
}

#menuList1 li a.actuator:hover, #menuList1 li a.actuator:focus {
  color:#ffffff; 
  background-color:#94c9e5;
}

#menuList1 .menu {
  background-color: #ffffff;
  color: #336699;
  border: 1px solid #CCC;
  margin: 0;
  margin-left:-2px;
  padding: 2px;
  width:200px;
  /* 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: 1;
  position: absolute;
  visibility: hidden;
  /* always set position to 'absolute' and visibility to 'hidden' */
}

#menuList1 .menu .menu {
  margin-left: 2px;
  border: 1px solid #CCC;
  /* if a non-zero padding is set on .menu, set margin-left to margin-left + padding */
}
