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

/* if the menu is horizontal:
 * avoid defining 'static' elements that have a non-zero border and that have
 * their 'width' or 'height' different than 'auto', when they are ancestors of
 * submenu elements (including #mainMenu and #menuList themselves)
 * it may cause slight positioning bugs in Win/IE5-6
 * for the same reason, avoid setting a non-zero border on the BODY element if
 * Win/IE6.0 switches to standards-compliant mode
 */
/* if the menu is horizontal and has a 'static' position:
 * do not set neither margin nor padding nor border on the HTML element, as it
 * will lead to wrong submenu position in Opera 7
 * do not set margin on the BODY element neither (use padding instead)
 */

#mainMenu1 {
  background-color: #369;
  color: #000;
  margin: 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: 1;
  position: static;
  /* if the menu is horizontal: use a 'static' position
   * if the menu is vertical: use an 'absolute' or 'fixed' position
   */
}

.menulist {
  margin: 0;
  padding: 0;
  /* do not use a position other than 'static' here */
}

.menulist li {
  /* do not change these rules */
/*  display: block;*/
  display: inline;
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  list-style: none;
  /* do not change these rules */
}

.menulist li a {
  display: block;
  font-size: 12px;
  font-weight: bold;
  background-color: #69C;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  /*background-color: #900;*/
  /*display: inline;*/
  padding: 0 8px 2px 8px;
  margin: 0 auto 0 auto;
  border: 1px solid #FFF;
  line-height: 12px;
}

.menulist li a:hover, .menulist li a:focus {
  background-color: #CCF;
  color: #036;
  border-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
 */
.menulist li a.actuator {
	width: auto; /* hides the following rule from Win/IE5.0 */
	background: url("images/fleche-bas-noire.gif") no-repeat 100% 50%;
	color: #FFF;
	background-color: #69C;
}

.menulist li a.actuator:hover, .menulist li a.actuator:focus {
  width/* */: auto; /* hides the following rule from Win/IE5.0 */
  background: url("images/fleche-bas-grise.gif") no-repeat 100% 50% #CCF;
  color: #036;
}

.menulist .menu {
  background-color: #58A;
  color: #000;
  border: 1px solid #036;
  margin: 0;
  margin-top: -1px !important;
  margin-top: -4px;
  margin-left: 8px !important;
  margin-left: 0;
  padding: 2px;
  z-index: 1;
  position: absolute;
  visibility: hidden;
}

.menulist .menu .menu {
  margin-left: 2px;
}

.menulist .menu li a {
  display: block;
  line-height: normal;
  
  font-size: 10px;
  font-weight: normal;
  text-align: left;
  background-color: #58A;
  border: none;
  color: #FFF;
}
.menulist .menu li a:hover {
  background-color: #CCF;
  color: #036;
}
.menulist .menu li a.actuator {
  background: url("images/fleche-noire.gif") no-repeat 100% 50%;
}

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