/* 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,  #mainMenu0 {
  background-color: #FFCC00;
  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: 1;
  position: static;
  /* if the menu is horizontal: use a 'static' position
   * if the menu is vertical: use an 'absolute' or 'fixed' position
   */
}

mainMenuEmpty {
  background-color: #FF0000;
  display: inline;
  margin: 5px 6px 5px 5px;
  padding: 2px;
  list-style: none;
/* 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
   */
}

#menuList1, #menuList0 {
  background-color: #FFCC00;
  
  margin: 5px;
  padding: 2px;
  /* do not use a position other than 'static' here */
  }

#menuList1 li, #menuList0 li  { 
  /* do not change these rules */
/*  background-color: none; */
  display: inline;
  margin: 0 0 0 0;
  padding: 0;
  list-style: none;
  /* do not change these rules */
}

#mainMenuEmpty {
  /* do not change these rules  */
  /* background-color: #FFCB08;  6/7/2013: pour la correction barre de menu */
 
  margin: 1px 0px 0px 0px;
  padding: 5px;
  list-style: none;
  /* do not change these rules */
} 

#title {
	background-color: #F7CB08;
	color: #39597b;
	display: block; 
/*	display: inline; */
	line-height: 1.8em;
	border: 1px solid #000000;
   border-left: 0; 
	border-right: 0; 
	margin: 0px;
	padding: 1px 5px;
	font-family: Verdana;
	font-size: 12px;
	font-weight: bold; /* always set margin to '0' */
/* Win/IE5.0 will ignore border and padding if display is 'inline' */
	text-decoration: none;
}



#menuList1 li ul li a {
  /*background-color: transparent;*/
  background-color: #FFFFFF;
  color: #39597b;
  display: inline;
  line-height: 1.8em;
  border: 0px solid #000000;
  margin: 0;
  padding: 1px 10px;
  font-family:Verdana;
  font-size:11px;
  font-weight: normal; 
  /* always set margin to '0' */
  /* Win/IE5.0 will ignore border and padding if display is 'inline' */
  text-decoration: none;
}

#menuList1 li a, #menuList0 li a {
  /*background-color: transparent;*/
  background-color: #FFFFFF;
  color: #39597b;
  display: inline;
  line-height: 1.8em;
  border: 1px solid #000000;
/*  border-bottom: 0; */
  margin: 0;
  padding: 2px 10px;
  font-family:Verdana;
  font-size:12px;
  font-weight: normal; 
  /* 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: #F7CB08;
  color: #000;
  border-color: #000;
  /*text-decoration: underline; */
}

/* 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 */
  background-color: #FFFFFF;
  color: #39597b;
  font-size:12px;
  padding-right: 20px;
}

#menuList1 li a.actuator:hover, #menuList1 li a.actuator:focus {
  width/* */: auto; /* hides the following rule from Win/IE5.0 */
  background-color: #F7CB08;
  color: #000;
  /*text-decoration: underline;*/
}

#menuList1 .menu {
  background-color: #F7CB08;
  color: #000;
  border: 1px solid #000;
  border-top: 0;
  margin: 0;
  padding: 0px  ;
  font-size:12px;
  font-weight: normal; 
  /* 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;
  font-size:12px;
  /* 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;
}

#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;
}

