/* menuV.css
 * For: menuDropdown.js (version: 0.1x)
 */

#mainMenu1 {
  margin: 0;
  padding: 0;
  /* if the menu is vertical:
   * set border to 'none'
   * padding-left must be equal to padding-right
   */
  /*top: 0.6em;*/
  left: 0.6em;
  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: 2px; 

  /* 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;
  background:white  bottom left; 
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight:bold;
  color: #6699CC ;
  display: block;
  text-decoration: none;
  border: dotted #0099CC;
  border-width: 0 0 1px 0;
  

  /* do not change these rules */
}

#menuList1 li a {
background-color: white;
  display: block;
  color: #6699CC ;
 /* border: 1px solid #EEE;*/
  /*margin: 0;*/
   margin: 0 ;
   padding: 5px 10px;
   width: 160px;
  _width: 190px;

  /* always set margin to '0' */
  /* Win/IE5.0 will ignore border and padding if display is 'inline' */
  text-decoration: none;
  text-align: left;
}

#menuList1 li a:hover, #menuList1 li a:focus {
  /*background-color: #f8f8f8;*/
   color: #F7970C;
   /*border-color: #FFF;*/
}

#menuList1 li a.actuator {
  background: url("images/fleche-noire.jpg") no-repeat 100% 50%;
  color: #6699CC;
  padding-right: 20px;
 
}

#menuList1 li a.actuator:hover, #menuList1 li a.actuator:focus {
  background: url("images/fleche-grise.jpg") no-repeat 100% 50% #f8f8f8;
  color: #6699CC;

}


#menuList1 .menu {
	color: #6699CC;
	
	/*border: 1px solid #CCC;*/
    margin: 0;
	_margin: 0;
	padding: 0px;
	_padding: 0px;
	/* 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;
	height: 104px;
	/* 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 */
}

