/*-----------------------------Source du menu-------------------------------*/
/*http://www.htmldog.com/articles/suckerfish/dropdowns/example/vertical.html*/
/*--------------------------------------------------------------------------*/
                  /* Adaptation pour ArtiPHP : jimro */


#navigv img {display:block;}

#navigv, #navigv ul { /* tous les conteneurs de listes */
   padding: 0;
   margin: 0;
   list-style: none;
   width: 12.8em;
   z-index: 110; /* suffisant pour Firefox */
}

/* liste 1er niveau */
/********************/
#navigv li { /* tous les items de liste */
   position: relative;
   float: left;
   padding-right: 8px;
   margin:0;
   width: 12em;
   z-index: 120; /* nécessaire pour IE6 */
   background:url(biere/mg_titre.gif) no-repeat;}

#navigv li a {
   display: block;
   text-decoration: none;
   height: auto;
   padding-left: 15px;
   width: 10em; /* égale width de #navigv li moins padding (gauche+droit) de #navigv li a */
   line-height: 20px;
   color: #6B444A;
   /*color: #BF5500;*/
   /*color: #CC7700;*/
   font-weight:bold;
   font-size:12px;
}

#navigv li a:hover {
    text-decoration:underline;
    }

/* position de la petite flèche */
#navigv li a.daddyv {
   background: url(img/artimenurightarrow.gif) no-repeat;
   background-position: 3% 0.55em;
   height: auto;
   line-height: 1.75em;
}

/* listes 2e niveau */
/********************/

#navigv li ul {
   border: #cc9900 1px solid;
   background-color:#fffeba;
}
#navigv li ul {
   position: absolute;
	top: -1px;
   left: -999em;
   padding: 0;
   margin: 0 0 0 -13em; /*0 0 0 11em;*/
   /*background-color: transparent; /* #eee; *//* orange */
   _margin: 0 0 0 -12.9em; /*0 0 0 11.1em;*/ /* hack pour IE6 */
}

/* position de la petite flèche */
#navigv li ul li a.daddyv {
   /*background-color: none; /*#D0C5F2;*/ /* violet clair */
   background: url(img/artimenurightarrow.gif) no-repeat;
   background-position: 3% 0.45em;
   height: auto;
   line-height: 1.75em;
}

#navigv li ul li a.daddyv:hover {
   /*background-color: #fffeba;*/
}
#navigv li ul li {
   background-image:none;
    border-bottom: #cc9900 1px solid;
   }
 
/* listes 3e niveau */
/********************/
#navigv li ul ul { /* listes de 3e niveau */
   left: -999em;
}

#navigv li li a {
   font-weight: normal;
}

/* Affichage ou masquage des ul */
/********************************/
#navigv li:hover ul ul, #navigv li.sfhover ul ul {
   left: -999em;
}

#navigv li:hover ul, #navigv li li:hover ul, #navigv li.sfhover ul, #navigv li li.sfhover ul {
   left: auto;
}

/* Enchaînement des sélections */
/*******************************/
#navigv li:hover, #navigv li.sfhover, #navigv li li:hover, #navigv li li.sfhover {
	/*background: none; /*orange*/ /* à désactiver si on ne veut pas l'enchaînement des items sélectionnés */
}