/* menuV.css
 * For: menuDropdown.js (version: 0.1x)
 */

div.menu {
  background-color: transparent;
  color: #836A56;
  text-align : left;
  margin: 0;
  padding: 0;
  border:none;
  /* if the menu is vertical:
   * set border to 'none'
   * padding-left must be equal to padding-right
   */
  width: 90%;
  top: 15%;
  left: 5%;
  z-index: 4;
  position: absolute;
  /* if the menu is horizontal: use a 'static' position
   * if the menu is vertical: use an 'absolute' or 'fixed' position
   */
}

div.menu ul {
  color: #836A56;
  border: 2px solid #dbbf99;
  border-style:ridge;
  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
   */
  position : static;

}

div.menu ul li {
  /* do not change these rules */
//  display: inline;
  margin: 0;
  padding : 0;
  list-style: none;
  /* do not change these rules */
}

div.menu ul li a {
  background-color: transparent;
  color: #836A56;
  display: block;
  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;
}

div.menu ul li a:hover, div.menu ul li a:focus {
  background-color: #dbbf99;
  border-color: #CCC;
}

div.menu ul li a.actuator {
  background: url("../images/flechegrise.gif") no-repeat 100% 50%;
  padding-right: 20px;
}

div.menu ul li a.actuator:hover, div.menu ul li a.actuator:focus {
  background: url("../images/flechegrise.gif") no-repeat 100% 50% #dbbf99;
}

div.menu a:visited,  div.menu a:focus, div.menu a:hover, div.menu a:active{
  color: #836A56;
}

div.menu ul ul {
  background-color: #D1AC7B;
  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;
  display: none;
    /* always set position to 'absolute' and visibility to 'hidden' */
}

li.exemple {
  font-style:oblique;
}

div.menu ul ul li.exemple ul.exemple {
  padding-left: 10px;
}

div.menu ul ul{
  display: none;
  position: absolute;
  background-color: #dbbf99;
  border: 1px solid #808080;
  width: 200px;
}
div.menu ul ul li{
  margin-left: 0px;
}
div.menu ul ul li a:hover{
  background-color: #D1AC7B;
}





