
/*menu déroulant*/
dl, dt, dd, ul, li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#menu {
	z-index:110;
	
}

#menu dl {
	float: left;
	width: 150px;
	margin: 0;
	}
	
#menu dl a {/*décale les sous-listes du bord gauche*/
	padding-left: 0.7em;
	}
	
#menu dt {
	cursor: pointer;
	text-align: left;
	font-weight: normal;
	background: #38302A;/*marron*/
	border: 1px solid silver;
	height: 30px;
	line-height: 2.4em;
	color: silver;
	
	}

#menu dt a {
	color: white;/*marron#38302A*/
	text-decoration: none;
	display: block;
	height: 100%;
	border: 0 none;
	font-size: 110%;
	padding-left:0.7em;
	}

#menu dt a:hover {
	background: #ff9966;/*rose orangé clair*/
	color: #38302A;
	}
	
#menu dt a:hover {
	color:#D3676B;/*change juste la couleur du mot "danse"*/
	}

#menu dd {
	border: 1px solid #534E45;/*couleur fond page*/
	position: absolute;
	display: none;
	width: 150px;
}

#menu li {
	text-align: left;
	background: silver;
	}
	
#menu li a {
	color: #38302A;/*marron*/
	text-decoration: none;
	display: block;
	height: 100%;
	border: 0 none;
	}
		
#menu li a:hover {
	background:#d86516;/*orange*/
	color: white;
	}

.lien_actif {
	background: #ff9966;/*rose orangé clair*/
	}

*.decalage {padding-left: 0.7em;}
	
