/* CORPS DE LA PAGE */

#pageentiere /* L'IMAGE DE FOND */
{
	background:#390803 url(images/body_fond1.jpg) no-repeat 50% 0;	/* Couleur de fond rouge */
	padding:0px 0px 250px 0px;											/* Espacement intérieur de 250 vers le bas */
	overflow:hidden;												/* Si image depasse elle passe dessous le DIV */
	min-width:780px;												/* largeur minimale 780 px*/
}
		
/* Une balise précédée de # est appliqué sur un id="" et pas sur un class="". C'est un style défini pour 1 élément */
#outer /* Page blanche contenant le site centrée en largeur (largeur du site définie ici !!! Position relative au body centré sans marge */
	{
		position: relative;										/* Position relative à lélément contenant la balise */
		width: 1000px;
		top : 145px;
		margin: 0 auto;											/* Marge autour = 0 et le tout centré */
		background:#FFFFFF;										/* Couleur de fond de la page blanche */
	}
		
#inner
	{
		position: relative;										/* Position relative à la balise contenant l'objet */
		margin:0px;
		padding:0px;
		background:#FFFFFF;	
		/*background:#b549d8 url(images/test_fond.png) repeat-y;*/
		/*height:100%*/
	}

/* Elements de premier niveau
--------------------------------------*/
#menuDeroulant
{
	position: relative;
	background: #750f0b;
	/*width: 1000px;*/
	width: 100%;					/* LARGEUR GLOBALE DU MENU */
	height: 34px;					/* HAUTEUR GLOBALE DU MENU */
	list-style-type: none;
	padding: 0;
	border: 0;
	border-bottom : 3px solid #fa560b;	/* LIGNE ORANGE EN BAS DE MENU (Ã©paisseur, type, couleur)*/
	
	text-align: center;
	top: 0;
	left: 0;
}
#menuDeroulant li
{
	float: left;
	/*width: 150px;*/
	margin: 0px 5px 0px 5px;
	padding: 0;
	border: 0;
	
	/*added*/
	background-image:none;
	list-style-type:none;
	font-size: 11px;
	font-family: "trebuchet ms", helvetica, sans-serif;
}
li {pnrs.css (ligne 252)
font-family:trebuchet ms;
font-size:12px;
font-style:normal;
font-weight:normal;
line-height:18px;
text-align:justify;
}
#menuDeroulant li a:link, #menuDeroulant li a:visited
{
	display: block;						/* POSITIONNMENT BLOC */
	/*height: 1%;*/
	/*height:8px;*/
	color: #FFF;						/* COULEUR DU TEXTE (Blanc) */
	background: #750f0b;				/* COULEUR DE FOND E LA DIV (Rouge) */
	margin: 7px;						/* POSITIONNEMENT DE L'INTITULE DES MENUS PAR RAPPORT AU HAUT DU MENU */
	padding: 0px 8px 0px;				/* POSITIONNEMENT DE LA BARRE BLANCH PAR RAPPORT A L'INTITULE DU MENU */ 
	border-left: 1px solid #FFFFFF;		/* BORDURE BLANCHE VERTICALE */
	text-decoration: none;				/* SOULIGNEMENT DES TEXTES */
	text-align: center;					/* ALIGNEMENT VERTICAL DU TEXTE (CentrÃ©) */
}
#menuDeroulant li a:hover
{
	background-color: #F2462E;
}

#menuDeroulant li a:active { background-color: #5F879D; }

#menuDeroulant .sousMenu
{
	display: none;
	list-style-type: none;
	margin: 0;
	padding: 0;
	border: 0;
}
#menuDeroulant .sousMenu li
{
	float: none;
	margin:0;
	padding: 0;
	border: 0;
	width: 149px;
	border-top: 1px solid transparent;
	border-right: 1px solid transparent;
}
#menuDeroulant .sousMenu li a:link, #menuDeroulant .sousMenu li a:visited
{
	display: block;
	color: #FFF;
	margin: 0px 0px 0px 30px;
	border: 0;
	text-decoration: none;
	background: transparent url("fondTR.png") repeat;
}
#menuDeroulant .sousMenu li a:hover
{
	background-image: none;
	background-color: #F2462E;

}

#menuDeroulant li:hover > .sousMenu { display: block; }
