#bandeau {
	background:#C8ABD7;
	height:28px;
	margin-left:-32px;
}

#menu {
	text-transform: uppercase;
	margin-top:-23px;
	padding: 2px 0 0 0;
	position:absolute;
}
/* retire les points et les marges et padding  */
#menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
/* met le niveau 1 en ligne et positionne les sous menu */
#menu li {
	float: left;
	position: relative;
	z-index: 100;
	line-height:1.5em;
	margin:0 2px;
	background-color: Gray;
}
#menu ul ul li{
	border:none;
}
/* design de tous les liens */
#menu a {
	display: block;
	font-size: 1em;
	margin: 0;
	padding: 3px 0;
	text-decoration: none;
	white-space: nowrap;
}
/* style the links hover */
/*#menu:hover {
	color: #000;
	background: #d4d8bd;
}
*/
/* cache les sous-menu */
#menu ul ul{
	visibility: hidden;
	position: absolute;
	background-color:#BCCF8E;
}
/* rend le sous-menu visible quand on survolle une liste ou un lien */
#menu ul li:hover ul, #menu ul a:hover ul {
	visibility: visible;
}
/*design sous menu */
#menu ul ul li{
	background-color: Lime;
	clear:left;
}
#menu ul ul li a{
	text-transform: none;
	color: #ffffff !important;
	padding:0 0.5em;
}
#menu ul ul li a:hover {
	background-color: #D2691E;
	color: #ffffff;
}
