/* 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: #EEEEEE;
	color: black;
	margin: 0;
	padding: 0 0px;
	/* 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;
	font-family: "Arial Narrow";
	cursor: pointer;
	border-bottom: thin solid black;
	height: 48px;
}

#menuList1 {
	
	
	margin: 0;
	padding: 0 0px;
	font-family: "Arial Narrow";
	cursor: pointer;
}

#menuList1 li {
  /* do not change these rules */
  background-color: #AAAAAA;
  display: inline;
  margin: 0;
  padding: 0;
  list-style: none;
  
  /* do not change these rules */
}

#menuList1 li a {
	/*  background-color: transparent; */
	background-color: #AAAAAA;
	color: #222222;
	
	/*border: 1.5px inset black; /* bordure des items du menu de niveau 0 */
	border: 0px inset black; /* Pas de bordure des items du menu de niveau 0  pour Didier*/
	margin: 0;
	padding: 1px 10px;
	/* Win/IE5.0 will ignore border and padding if display is 'inline' */
	display: inline;
	line-height: 1.5em;
	text-decoration: none;
}

#menuList1 li a:hover, #menuList1 li a:focus {
	background-color: navy;
	color: ButtonHighlight;
	border-color: ButtonHighlight;
}

/* 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: url("Images/fleche-bas-noire.jpg") no-repeat 100% 50%;
	/*color: #000;*/
	color: #222222;
	padding-right: 15px;
	
}

#menuList1 li a.act1, #menuList1 li a.act2 {
	width: auto; /* hides the following rule from Win/IE5.0 */
	/* bizarre ce background... mais ça marche ! */
	background: url("Images/fleche-bas-noire.jpg") no-repeat 100% 50%;
}

#menuList1 li a.act2
{
	color : #eaeaea ;
}
/** Cas des menus non actifs */ 
 #menuList1 li a.act2:hover {
	width: auto; /* hides the following rule from Win/IE5.0 */
	/* bizarre ce background... mais ca marche ! */
	background: #AAAAAA url("Images/fleche-bas-noire.jpg") no-repeat 100% 50%;	
}
/** Cas des menus Actifs */ 
#menuList1 li a.act1:hover  {
	width: auto; /* hides the following rule from Win/IE5.0 */
	/* bizarre ce background... mais ca marche ! */
	background: navy url("Images/fleche-bas-noire.jpg") no-repeat 100% 50%;	
}


#menuList1 li a.actuator:hover, #menuList1 li a.actuator:focus {
	width: auto; /* hides the following rule from Win/IE5.0 */
	background: navy url("Images/fleche-bas.png") no-repeat 100% 50%;
	color: Window;
}

#menuList1 .menu {
	background-color: #AAAAAA;
	/*color: #000;*/
	color: #222222;
	/* border: 1.5px inset #222222; Pas de bordure pour Didier */
	border: 0px inset #222222;
	margin: 0;
	padding: 1px;
	/* padding width must be the same on the four sides (in 'px' units) */
	z-index: 1;
	position: absolute;
	visibility: hidden;
}

#menuList1 .menu .menu {
  margin-left: 1px;
  /* 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: #AAAAAA url("Images/fleche-noire.png") no-repeat 100% 50%;
	
}

#menuList1 .menu li a.actuator:hover, #menuList1 .menu li a.actuator:focus {
	background: navy url("Images/fleche-bas.png") no-repeat 100% 50%;
	color: Window;
}

#menuList1 .menu li a.act0 {
	background-color: #AAAAAA;
}
/** Cas des menus Actifs */  
#menuList1 .menu li a.act0:hover, #menuList1 .menu li a.act1:focus {
	background-color: navy;
}
/** Cas des menus non actifs */ 
#menuList1 .menu li a.act2:focus {
	background-color: #AAAAAA;
}
#menuList1 .menu1 {
	background-color: #AAAAAA;
	color: #000;
	/* border: 1px inset #222222; /* toujours pas de bordure pour Didier */
	border: 0px inset #222222;
	margin: 0;
	padding: 1px;
	/* padding width must be the same on the four sides (in 'px' units) */
	z-index: 1;
	position: absolute;
	visibility: hidden;
}

#menuList1 .menu1 .menu1 {
  margin-left: 2px;
  /* if a non-zero padding is set on .menu, set margin-left to margin-left + padding */
  
}

#menuList1 .menu1 li a {
  display: block;
  line-height: normal;
  
}

#menuList1 .menu1 li a.actuator {
	background: #AAAAAA url("Images/fleche-noire.png") no-repeat 100% 50%;
}

#menuList1 .menu1 li a.actuator:hover, #menuList1 .menu li a.actuator:focus {
	background: navy url("Images/fleche-bas.png") no-repeat 100% 50%;
}

