/* menuV.css
 * For: menuDropdown.js (version: 0.1x)
 */

#mainMenu1 {
  z-index: 2;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
	text-align: left;
	margin: 0 15px;
	position: absolute;
	width: 130px;
  /* if the menu is horizontal: use a 'static' position
   * if the menu is vertical: use an 'absolute' or 'fixed' position
   */
}

#menuList1 {
	list-style: none;
	padding: 0px;
	margin: 0;
	background: #FFFFFF url(../../images/bouton2.gif) no-repeat center center;
	height:83px;
	width:130px;

  /* 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
   */
}

#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: transparent;
  color: #fff;
  display: block;
  border: 1px solid #FF99FF;
  margin: 0;
  padding: 2px 10px;
  /* 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: #f8f8f8;
  color: #000;
  margin-left:0px;
/*  font-weight:bold;
  border-color: #CCC;*/

}

#menuList1 li a.actuator {
  background: url("/images/fleche-noire.gif") no-repeat 100% 50%;
  color: #fff;
  padding-right: 20px;

}

#menuList1 li a.actuator:hover, #menuList1 li a.actuator:focus {
  background: url("/images/fleche-bas-noire.gif") no-repeat 100% 50% #f8f8f8;
  color: #000;
  margin-left:0px;
}

#menuList1 .menu {
  background-color: #AD2170;
  color: #ffffff;
  border: 1px solid #CCC;
  margin: 0;
  padding: 2px;
  /* 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) */
  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 */
}
