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

 #mainMenu1 {
  color: #cc0000;
 margin: 0;
 padding: 0;
 /* if the menu is vertical:
 * set border to 'none'
 * padding-left must be equal to padding-right
 */
/* width: 9em;*/
 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
 */
 top:260px;
   left:250px;
   text-align:left;
}

 #menuList1 {
 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;
 /* do not change these rules */
 }

 #menuList1 li a {
 background:url(medias/puce-stitres.gif) no-repeat 6px 12px;
  background-color: transparent;
  line-height:25px;
  color: #cc0000;
 display: block;
 font-size:14px;
  font-weight:bold;
 margin: 0;
 padding: 2px 20px;
 /* 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 {
 color: #0099ff;
 }

 #menuList1 li a.actuator {
 background:url(medias/puce-stitres.gif) no-repeat 6px 12px;
  background-color: transparent;
  color: #cc0000;
 }

 #menuList1 li a.actuator:hover, #menuList1 li a.actuator:focus {
color: #0099ff;
 }

 #menuList1 .menu {
  background-color: #cc0000;
  color: #fff;
 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) */
 z-index: 1;
 position: absolute;
 visibility: hidden;
 /* always set position to 'absolute' and visibility to 'hidden' */
 }
 
 
 #menuList1 .menu li a {
  display: block;
  line-height: normal;
  color:#fff;
   font-size:12px;
  font-weight:bold;
  background:none;
  text-align:left;
   background:url(medias/puce-fleche.gif) no-repeat 2px 5px;
}

#menuList1 .menu li a.actuator {
  color:#fff;
  font-weight:bold;
  text-align:left;
  background:url(medias/puce-fleche.gif) no-repeat 2px 5px;
}

#menuList1 .menu li a:hover, #menuList1 .menu li a:focus {
  color:#a6dcff;
  font-weight:bold;
  text-align:left;
}

 #menuList1 .menu .menu {
 margin-left: 2px;
 /* if a non-zero padding is set on .menu, set margin-left to margin-left + padding */
 }