div#menu {
	width: 150px;
	margin: 0;
	padding:0;
	position: absolute; 
	top: 190px; 
	left: 0; 
}

/* fond blanc pour le menu */ 

div#menu a {color: #162983;}

div#menu ul {
	padding: 0; 
	width: 149px; 
	border: solid #ff9352; 
	border-width: 1px 1px 0 1px; 
	margin: 0; 
	background: white;
}

/* fond different au survol de la souris pour les sous menu et les "basiques"*/ 

div#menu li:hover {background: #ff9352;}
div#menu ul.niveau2 li:hover {background: #ff9352;}

/* Rajout d'une petite fleche pour les sous menu */ 
/* div#menu li.sousmenu {background: url(fleche.gif) 95% 50% no-repeat;} */

div#menu ul li {
	position: relative; 
	list-style-type: none;
	list-style-image: none; 
	border-bottom: 1px solid #ff9352;
	line-height: 25px;
	margin: 0;
}
div#menu ul li ul li{
	list-style-image: none; 
	list-style-type: none;
}

div#menu ul ul {
	position: absolute; 
	top: -1px; 
	left: 149px; 
	display: none;
}

/* on rajoute une bordure a gauche et des padding, on doit donc réajuster la taille 125-(9 de bordure + 6 de padding) =115 */ 

div#menu li a {
	font-family: Arial, Tahoma, sans-serif; 
	font-size: 12px; 
	font-weight: bold; 
	text-decoration: none; 
	padding: 0 6px; 
	display: block; 
	width: 138px;
}

.nolink {
	font-family: Arial, Tahoma, sans-serif; 
	color: #162983;
	font-size: 12px; 
	font-weight: bold; 
	text-decoration: none; 
	padding: 0 6px; 
	display: block; 
	width: 135px;
}

div#menu ul.niveau1 li:hover ul.niveau2, 
div#menu ul.niveau2 li:hover ul.niveau3 {display: block;}
