#mainMenu1 {
  background-color: #823055; color: #FFF; margin: 0 0 0 0; padding: 0;
  /* if the menu is horizontal and has a 'static' position:
   * do not set a non-zero margin-top, if the BODY element has a zero
   * padding-top and this menu is its first 'static' child
   * this is due to an Opera 7 bug :-(
   */
  z-index: 0; position: static;
  /* if the menu is horizontal: use a 'static' position
   * if the menu is vertical: use an 'absolute' or 'fixed' position
   */
}

#menuList1 {
  border: 0px solid #CCC; margin: 0; padding: 0; background-color:#823055; color:#FFFFFF; width:100%;
  /* do not use a position other than 'static' here */
}

#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: #fff; display: inline; line-height: 1.8em; border-right: 2px solid #EEE; margin: 0; padding: 3px 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: #a76e88;
  color: #FFF;
}

/* As Win/IE5.0 doesn't apply padding on inline elements, background images
 * must be hidden from it, otherwise they will be displayed behind text
 */
#menuList1 li a.actuator {
  width/* */: auto; /* hides the following rule from Win/IE5.0 */
  color: #fff;
  padding-right: 20px;
  background-color:#823055;
}

#menuList1 li a.actuator:hover, #menuList1 li a.actuator:focus {
  width/* */: auto; /* hides the following rule from Win/IE5.0 */
  color: #fff;
  background-color:#a76e88;
}

#menuList1 li a.actuator2 {
  width/* */: auto; /* hides the following rule from Win/IE5.0 */
  color: #823055;
  padding-right: 20px;
  background-color:#cccccc;
}

#menuList1 li a.actuator2:hover, #menuList1 li a.actuator2:focus {
  width/* */: auto; /* hides the following rule from Win/IE5.0 */
  color: #fff;
  background-color:#999999;
}

#menuList1 .menu {
  background-color: #EEE;
  color: #000;
  margin: 0;
  padding: 2px;
  /* 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: 0;
  position: absolute;
  visibility: hidden;
  /* always set position to 'absolute' and visibility to 'hidden' */
}

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

#menuList1 .menu li a {
  display: block;
  line-height: normal;
  border-bottom: 1px solid #ccc;
}

/*#menuList1 .menu li a.actuator {
  background: url("images/fleche-noire.jpg") no-repeat 100% 50%;
}

#menuList1 .menu li a.actuator:hover, #menuList1 .menu li a.actuator:focus {
  background: url("images/fleche-grise.jpg") no-repeat 100% 50% #f8f8f8;
}*/