/* propriétés de la td qui contient le menu haut : optionnel 
#menuhaut {
}
*/
/* 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)
 */

#mainMenu2 {
  background-color: #0d65be;
  color: #fff;
/*  margin: 0 0 20px; marges autour du menu */
  padding: 0;
  border-top: 2px solid #fff;
  /* 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
   */
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-align: right;
}

#menuList2 {
/* intérieur du menu */
  /*border: 1px solid #286BBD;*/
  margin: 0;
  padding: 0;
  /* do not use a position other than 'static' here */
}

#menuList2 li {
  /* do not change these rules */
  display: inline;
  margin: 0px;
  padding: 0;
  list-style: none;
  
  /* do not change these rules */
}

#menuList2 li a {
/* boutons liens premier niveau */
  background-color: transparent;
  color: #fff;
  display: inline;
  line-height: 1.8em;
  border-right: 1px solid #fff;
  /*margin: 0;*/
  padding: 2px 6px;
  /* always set margin to '0' */
  /* Win/IE5.0 will ignore border and padding if display is 'inline' */
  text-decoration: none;
}

#menuList2 li a:hover, #menuList2 li a:focus {
 background-color: #ffc701;
color: #0148a2;
  /*border: 1px solid #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
 */
#menuList2 li a.actuator {
  width/* */: auto; /* hides the following rule from Win/IE5.0 */
  /*background: url("images/fleche-bas-noire.jpg") no-repeat 100% 50%;*/
  color: #fff;
  background-color: transparent; 
  /*padding-right: 5px;*/
  z-index:10;
  
 
}

#menuList2 li a.actuator:hover, #menuList2 li a.actuator:focus {
  width/* */: auto; /* hides the following rule from Win/IE5.0 */
  background-color: #ffc701;
color: #0148a2;
 
}

#menuList2 .menu {
   background-color: #fff;
  color: #000;
  border: 1px solid #CCC;
  margin: 0;
  padding: 2px;
  width: 250px;
  /* 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' */
}

#menuList2 .menu .menu {
  /*margin-left: 2px;*/
  /* if a non-zero padding is set on .menu, set margin-left to margin-left + padding */
}

#menuList2 .menu li a {
  display: block;
  line-height: normal;  
 	border-bottom: 1px solid White;
	color: #fff;
	background: #0d65be;
	text-align: left;
	margin: 0;
  padding: 4px 5px ;
}

#menuList2 .menu li a.actuator {
 background-color: #c4b57e;
color: #FFFFFF;
}

#menuList2 .menu li a:hover, #menuList2 .menu li a.actuator:focus {
  background-color: #ffc701;
color: #0148a2;
}
