/* styles pour le menu verical déroulant , même style que le munu ligne1  */

#menuv{
	display:inline-block;
	width:200px;      
	list-style-type: none;
	margin-top: 20px;    
	padding: 0;
}
#menuv > li	{
	width: 150px;
	height:auto;
	margin-top: 10px; 
	/*margin: 10px;/* 10px*/
	margin-left:20px;
	padding: 0;
	border: 0;
}
#menuv li a{
	display: block;
	color:#FFFFFF;
	/*height:25px;	/* 15 original */
	height:auto;
	background: slategray; /* #111; */
/*  background: -moz-linear-gradient(#444, #111); 
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #111),color-stop(1, #444));	
	background: -webkit-linear-gradient(#444, #111);	
	background: -o-linear-gradient(#444, #111);
	background: -ms-linear-gradient(#444, #111);
	background: linear-gradient(#444, #111); */
	-moz-border-radius: 50px;
	border-radius: 5px;
    -moz-box-shadow: 0 2px 1px #9c9c9c;
	-webkit-box-shadow: 0 2px 1px #9c9c9c;
	box-shadow: 0 2px 1px #9c9c9c; 
/*
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.5);*/
	margin: 0px;
	padding: 10px 8px;
	border:1px solid #FFFFFF;
	text-decoration: none;
	font-size:1.2 em;
/*	text-transform: uppercase;*/
}

#menuv li a:hover {
	color: darkgreen;
	/*background-color: rgb(175, 214, 1);
	background-color: rgba(175, 214, 1, 0.5);*/
	background-color: rgb(143, 188, 143);
	background-color: rgba(143, 188, 143, 0.5);
}

#menuv .titre{		/* titre du menu vertical  id=menuside class =.titre */
	/* text-shadow: 0px 0px 10px #000 , -1px -1px #000 ;*/
	font-weight:600;
	font-size:1.3em;
	color:darkcyan; /* precedent = chocolate */
	margin:20px 0 20px 5px;	/* top,right,bottom,left */
}
/*---------------fin du menu de premier niveau-------------*/

/*---------------début du menu déroulant-------------------*/
#menuv .menuderoulant {
	width:160px;    /*une largeur supérieur au menu li pour se rendre sur le menuderoulant meme avec un espace*/
	display: none;
	list-style-type: none;
	/*margin: -23px 0 0 135px; */  /*une marge top inferieur pour remonter le menuderoulant et une marge left pour le decaler à droite du menu*/
	margin-top:-18px;
	margin-right:0;
	margin-bottom:0;
	margin-left:121px;
	padding:0px;
	border: 0;
	position:absolute; /*pour eviter tout decalage*/
	z-index: 99999;    
}
#menuv .menuderoulant li{
	float: right;
	margin:0 auto;
	padding: 0;
	border: 0;
	width: 180px;	/* largeur des sous-menus */
	border-top: 1px solid transparent;
	border-right: 1px solid transparent;
}
#menuv .menuderoulant li a{
	display: block;
	color: #FFF;
	margin: 0;
	border: 0;
	text-decoration: none;
/*	height:10px;   */
	height:auto;
	background: lightslategray; /* #111; */
	background: -moz-linear-gradient(#444, #111); 
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #111),color-stop(1, #444));	
	background: -webkit-linear-gradient(#444, #111);	
	background: -o-linear-gradient(#444, #111);
	background: -ms-linear-gradient(#444, #111);
	background: linear-gradient(#444, #111);
	-moz-border-radius: 50px;
	border-radius: 5px;
	-moz-box-shadow: 0 2px 1px #9c9c9c;
	-webkit-box-shadow: 0 2px 1px #9c9c9c;
	box-shadow: 0 2px 1px #9c9c9c; */
/*	text-transform: lowercase;*/
	font-size:1em;
}
#menuv .menuderoulant li a:hover{
	background: #0186ba;
	background: -moz-linear-gradient(#04acec,  #0186ba);	
	background: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba));
	background: -webkit-linear-gradient(#04acec,  #0186ba);
	background: -o-linear-gradient(#04acec,  #0186ba);
	background: -ms-linear-gradient(#04acec,  #0186ba);
	background: linear-gradient(#04acec,  #0186ba);

}

#menuv .menuderoulant li a:visited {
background-color:rgb(227, 22, 30);
background-color:rgba(227, 22, 30, 0.5);
}

#menuv li:hover > .menuderoulant {
display: block;
}
/*----------fin du menu déroulant----------------*/