/***********************/
/* BLOC ENTETE         */
/***********************/
#entete #logo
{
	float:left;
	width:350px;
	margin-top:10px;
}
#menu_haut
{
	float:left;
	width:605px;
	margin-top:79px;
}

#menu_haut ul
{
	margin:0;
	margin-left:35px;
	text-align:right; /*set value to "left", "center", or "right"*/
}

#menu_haut ul li
{
	display:inline;
}

#menu_haut ul li a
{
	float:left;
	display:block;
	color:#333;
	margin:0 2px 0 0; /*Margin between each menu item*/
	padding: 0px 10px;
	text-decoration:none;
	text-transform:uppercase;
	font-size:0.8em;
	background:#fff;	
	
	border-radius-topleft:5px;
	
	/* Arrondi Mozilla */
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:5px; 
	
	/* Arrondi Konqueror */
	-khtml-border-radius-topleft:5px;
	-khtml-border-radius-topright:5px;
	
	/* Arrondi Safari */
	-webkit-border-radius-topleft:5px;	
	-webkit-border-radius-topright:5px;	
	
}

#menu_haut ul li a:hover
{
	background:#E6002F;
	color:#fff
}
#menu_haut ul li a.selected
{
	background:#E6002F;
	color:#fff
}

/***********************/
/* BLOC CONTENU GAUCHE */
/***********************/
#menu_gauche
{
	float:left;
	margin-top:-15px;
	width:200px;
}

#menu_gauche ul
{
	list-style:none;
	margin:0;
	padding:0;
}

/* Menu gauche > Rubriques = niveau 1*/

#menu_gauche #n_1 
{
	display:block;
	margin:0;
	margin-top:15px;
	background:#E6002F;
	color:#fff;
	padding-left:5px;
	font-size:0.9em;
	text-decoration:none;
	font-weight:bold;
	margin-bottom:5px;
}

/* Menu gauche > Rubriques > Sous Rubriques = niveau 2 */

#menu_gauche #n_2 
{
	display:block;
	margin:0;
	padding-left:5px;
	font-size:0.9em;
	color:#333;
	padding-bottom:2px;
	border-bottom:1px solid #CCC;
	margin-bottom:2px;	
}
#menu_gauche #n_2 a
{
	text-decoration:none;
	color:#333;
	background:url(../images/menu_gauche_fleche.png) no-repeat center left; /*custom bullet list image*/	
	padding-left: 19px;/*link text is indented 19px*/
}
#menu_gauche #n_2 a:hover 
{
	color:#E6002F;
}

#menu_gauche #n_2 a.selected
{
	color:#E6002F;
}

/***********************/
/* BLOC PIED		   */
/***********************/
#pied p
{
	font-size:11px;
	color:#666;
	text-align:center;
}
#pied a
{
	font-size:11px;
	color:#666;
}
#pied a:hover
{
	color:#E6002F;
}