/* menuV.css
 * For: menuDropdown.js (version: 0.1x)
 */
#menugauche {
/* td qui contient le menu gauche : préciser obligatoirement la largeur */
	width: 130px;
	vertical-align: top;
	height: 300px;
	background-color: #0d65be;
	
}

#mainMenu1 {
  background-color: transparent;
  color: #000;
  margin: 0;
  padding: 0;
  border: none;
  /* if the menu is vertical:
   * set border to 'none'
   * padding-left must be equal to padding-right
   */
  /* position du menu par rapport au haut de la page */
 width: 130px;
 
  /*top: 185px;*/
  z-index: 1;
  position: absolute;
  /* if the menu is horizontal: use a 'static' position
   * if the menu is vertical: use an 'absolute' or 'fixed' position
   */
}

#menuList1 {
/*  border: 1px solid #CCC; */
  margin: 0;
  padding: 0px;
  position: static;
  /* do not use a position other than 'static' here */
  /* if the menu is vertical:
   * margin-left + border-left-width + padding-left must be equal to
   * margin-right + border-right-width + padding-right
   */
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size:12px;
}

#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: #0d65be;
  color: #fff;
  display: block;
  /*border: 1px solid #EEE;*/
  border-bottom: 1px solid White;
  margin: 0;
  padding: 4px 5px ;

  /* always set margin to '0' */
  /* Win/IE5.0 will ignore border and padding if display is 'inline' */
  text-decoration: none;
  /*height: 24px;*/
}

#menuList1 li a:hover, #menuList1 li a:focus {
  background-color: #ffc701;
  color: #0148a2;
  /*border-color: #CCC;*/
}

#menuList1 li a.actuator {
/* menu principal quand il comporte un sous-menu */
  background: url("images/fleche1.gif") no-repeat 100% 50%;
  background-color: #0d65be;
  color: #fff;
  padding-right: 20px;
}

#menuList1 li a.actuator:hover, #menuList1 li a.actuator:focus {
  background: url("images/fleche2.gif") no-repeat 100% 50%;
  background-color:#ffc701;
  color: #0148a2;
}

#menuList1 .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' */
}

#menuList1 .menu .menu {
  margin-left: 2px;
  /* if a non-zero padding is set on .menu, set margin-left to margin-left + padding */
}