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

#containerv { /* conteneur du menu vertical */
	visibility: hidden;
   position: absolute;
   z-index: 30;
   text-align: left;
   padding-top: 1em;
   padding-left: 0.25em;
   left: 401px;
   top: 300px;
   margin-left: 0.2em; /* marge gauche nécessaire pour Firefox */
   _margin-left: 0; /* mais non nécessaire pour IE6 */
   font-family:Verdana, Arial, Helvetica, sans-serif;
   font-size: 12px;
}


#containerv2 { /* conteneur du menu vertical */
	visibility: hidden;
   position: absolute;
   z-index: 30;
   text-align: left;
   padding-top: 1em;
   padding-left: 0.25em;
   left: 438px;
   top: 155px;
   margin-left: 0.2em; /* marge gauche nécessaire pour Firefox */
   _margin-left: 0; /* mais non nécessaire pour IE6 */
   font-family:Verdana, Arial, Helvetica, sans-serif;
   font-size: 12px;
}

#navigv, #navigv ul { /* tous les conteneurs de listes */
   float: left;
   padding: 0;
   margin: 0;
   list-style: none;
   width: 11em;
   background: #D5EAFF; /*violet clair*/
   z-index: 110; /* suffisant pour Firefox */
   width: 240px;
}

/* liste 1er niveau */
/********************/
#navigv li { /* tous les items de liste */
   position: relative;
   float: left;
   background: #00007F; /*violet clair*/
   padding: 0;
   margin: 0 0 -2px 0;
   width: 240px;
   border: #ffffff 1px solid; /* violet foncé */
   z-index: 120; /* nécessaire pour IE6 */
}

#navigv li a {
   display: block;
   color: #ffffff; /* violet foncé */
   font-weight: bold;
   text-decoration: none;
   height: auto;
   padding: 0 0.5em;
   width: 224px; /* égale width de #navigv li moins padding (gauche+droit) de #navigv li a */
   line-height: 1.75em;
}

#navigv li a:hover {
   color: #000000; /* blanc */
   background-color: #D5EAFF; /* orange */
}

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

/* listes 2e niveau */
/********************/
#navigv li ul {
   position: absolute;
	top: -1px;
   left: -999em;
   padding: 0;
   margin: 0 0 0 11em;
   _margin: 0 0 0 11.1em; /* hack pour IE6 */
}

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

#navigv li ul li a.daddyv:hover {
   background-color: #FC962A; /* orange */
}

/* 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: #FC962A; /*orange*/ /* à désactiver si on ne veut pas l'enchaînement des items sélectionnés *//*
} */
