

ul#accordeon{
	margin:0;
	padding:0;
}

ul#accordeon.container{
	/* The topmost UL */
	/* on enlève la width ci dessous pour que le menu soit adossé à la zone_droite */
	/* width:200px; */ /* ORI : 240px */ /* règle la largeur des bandes de sous-menus 200 est bien */

	/* margin:0 10px; */ /* ORI : 0 auto */
	/* padding:50px; mise en commentaire par tanguy */
}

ul#accordeon li{
	list-style:none;
	text-align:left;
}

ul#accordeon li.menu{
	/* The main list elements */
	padding:5px 0;
	width:100%;
}

ul#accordeon li.button a{
	/* The section titles */
	display:block;
	font-family:BPreplay,Arial,Helvetica,sans-serif;
	font-size:21px;
	height:34px;
	overflow:hidden;
	padding:10px 10px 0; /* 10 20 0 = valeurs normales */
	position:relative;
	/* width:180px; */ /* longueur des cadres colorés contenant les titres de section (ori 200) */
}

ul#accordeon li.button a:hover{
	/* Removing the inherited underline from the titles */
	text-decoration:none;
}

ul#accordeon li.button a span{
	/* This span acts as the right part of the section's background */
	height:44px;
	position:absolute;
	right:0;
	top:0;
	width:4px;
	display:block;
}

/* Setting up different styles for each section color */
/* blue ori #074384 clair :#0d7cf2 */
ul#accordeon li.button a.blue{background:url(./../img/blue.png) repeat-x top left; color:#074384;}
ul#accordeon li.button a.blue span{ background:url(./../img/blue.png) repeat-x top right;}

/* green ori #436800 clair :#91e000 */
ul#accordeon li.button a.green{background:url(./../img/green.png) repeat-x top left; color:#436800;}
ul#accordeon li.button a.green span{ background:url(./../img/green.png) repeat-x top right;}

/* orange ori #882e02 clair */
ul#accordeon li.button a.orange{background:url(./../img/marron.png) repeat-x top left; color:#fa6407;}
ul#accordeon li.button a.orange span{ background:url(./../img/marron.png) repeat-x top right;}

ul#accordeon li.button a.red{background:url(./../img/red.png) repeat-x top left; color:#641603;}
ul#accordeon li.button a.red span{ background:url(./../img/red.png) repeat-x top right;}

/* #c13f82 violet */
ul#accordeon li.button a.fuchsia{background:url(./../img/fuchsia.png) repeat-x top left; color:#c35891;}
ul#accordeon li.button a.fuchsia span{ background:url(./../img/fuchsia.png) repeat-x top right;}

/* The hover effects */
ul#accordeon li.button a:hover{ background-position:bottom left;}
ul#accordeon li.button a:hover span{ background-position:bottom right;}

.dropdown{
	/* The expandable lists */
	display:none;
	padding-top:5px;
	width:100%;
}

.dropdown ul{
	padding-left: 12px;
}

.dropdown li{
	/* Each element in the expandable list */
	background-color:#373128;
	border:1px solid #40392C;
	color:#CCCCCC;
	/* margin:5px 0; */ /* espace vertical entre les sous-items : on peut mettre 5px ou ne pas le mettre */
	padding:4px 18px;
}


/* The styles below are only necessary for the demo page */

h1{
	font-family:"Myriad Pro",Arial,Helvetica,sans-serif;
	font-size:36px;
	font-weight:normal;
	margin-bottom:15px;
}

.clear{
	clear:both;
}

ul#accordeon a, a:visited {
	color:#ffffff; /* bleu clair #0196e3 */
	text-decoration:none;
	outline:none;
}

ul#accordeon a:hover{
	text-decoration:underline;
}


