/* * * *
 *
 *   Menu dynamique multi-niveaux
 *   Version 2.0
 *   Par Raphael Wils
 *   Email : info@r-wils.com
 *   web site : www.r-wils.com
 *
 * * * */

/* --------------------- styles par défaut  ------------------ */

#menu{
	background:#67C1D3; /*#0095da*/
}
#menu p{
	font-size:1.2em;
}

/* styles avec javascript
   .jav : classe affectée au conteneur #menu par le script
--------------------------------------------------------------- */

#menu.jav{
	position:absolute;
	top:101px;
	left:0px;
}
.jav, .jav ul, .jav li, .jav a{
	width:150px;                   /* * * LARGEUR DU MENU 8em * * */
	margin:0;
	padding:0;
	list-style:none;
	background:#67C1D3; /*#AECA1D*/
}
.jav ul ul, .jav ul ul li, .jav ul ul a{
	width:150px;                  /* * * LARGEUR DES SOUS MENUS 10em * * */
	background:#67C1D3; /*#BFE10E*/
}
.jav ul ul{
	position:absolute;
	z-index: 2;
	visibility:hidden;
	border:1px solid white;  /* bordure des sous menus  */
	/*
	margin-top:-5px;           opposé de la bordure ci-dessus
	*/
	left:100%;
}
.jav li{
	float:left; /* pour IEwindows */
	clear:both;
}
html>body .jav li{float:none;}

.jav a{
	color: #FFFFFF;
	text-decoration: none;
	text-align: left;
	font-weight: 600;
	font-size: 11px;
	border-bottom: 1px solid white;
	float:left;
}
.jav span{display:none;} /* span typographiques */


/* le span dont il est question dans ce qui suit est ajouté par
   le javascript.
   ---------------------------------------------------------- */

.jav a span{
	display:block;
	/* la valeur 12px est égale à la largeur des fleches,
	cela évite que le texte ne se superpose à la fleche */
	padding:5px 9px;
	cursor:pointer;
	height:1%; /* pour IEwindows. Etale la zone sensible
		          à tout le span et non plus seulement au texte */
}
html>body .jav a span{height:auto;}

/* menu normal avec une fleche (fleche grise dans l'exemple) */
.jav a.fleche{
	background:#67C1D3 url(fleche3.gif) no-repeat right;
}

.jav ul ul a.fleche{
	background:#67C1D3 url(fleche3.gif) no-repeat right; /*#BFE10E*/
}

/* menu avec une fleche dont dont le sous menu est visible 
	(fond orange clair et fleche rouge dans l'exemple) */
.jav a.flecheActive{
	color:#DE2524; /*#AECA1D*/
	background:#67C1D3 url(fleche3.gif) no-repeat right; /*#e1f18e*/
}
.jav a.flecheActive span{
	border-color:#f90;
}

/* menu pointé (fond orange vif dans l'exemple) */
.jav a:hover, .jav a:focus, .jav a:active{
	/*
	background: #f60;
	color: white;
	*/
	background: #67C1D3; /*#e1f18e*/
	color: #DE2524; /*#AECA1D*/
	text-decoration: none;
}
.jav a:hover span, .jav a:focus span, .jav a:active span{
	border-color:#f96 #930 #930 #f96;
}
.jav a.flecheActive:hover,
.jav a.flecheActive:focus,
.jav a.flecheActive:active{
	background:#67C1D3 url(fleche3.gif) no-repeat right; /*#e1f18e*/
}
