/* ============================================================================================ *
 * -------------------------------      CSS GENERAL DU SITE     ------------------------------- *
 * ============================================================================================ */

*{
	margin:			0;			/*Initialisation des valeurs principales*/
	padding:		0;
}

body{
	font: 			10pt Arial;		/*Définition de la police principale*/
}

/* -------------------------------------------------------------------------------------------- */

#global{						/*DIV INCLUANT TOUTE LA PAGE*/
	margin-left: 		auto;			/*Centrage de l'ensemble de la page*/
	margin-right:		auto;			/*Centrage de l'ensemble de la page*/
	width:			972px;			/*Largeur de la page*/
}

/* -------------------------------------------------------------------------------------------- */

#entete{						/*DIV RESERVE A L'IMAGE*/
	margin-left:		1px;			/*Décalage cause bordure rubriques*/
}

/* -------------------------------------------------------------------------------------------- */

#urgences {						/*DIV RESERVE A LA LIGNE DES MESSAGES D'URGENCE*/
	position :		relative;
	float:			right;
	width:			972px;
	background: 		#FFFFFF;		/*Arrière-plan blanc*/
	height:			18px;											/*16px*/
}

/* -------------------------------------------------------------------------------------------- */

#rubrique {						/*DIV RESERVE AU MENU DES RUBRIQUES EN LIGNE*/
	margin-top:		-3px;			/*Décalage pour rapprochement entête*/
}

/* -------------------------------------------------------------------------------------------- */

#corps {						/*DIV CONTENANT TOUS LES ELEMENTS JUSQU'AU PIED DE PAGE*/
	margin-left:		1px;			/*Décalage cause bordure rubriques*/ 				/*NEW*/
	background:		#BEE895;/*Arrière-plan vert clair*/	
}

/* -------------------------------------------------------------------------------------------- */

#rubriquegauche{					/*DIV RESERVE AU MENU DES SOUS-RUBRIQUES EN COLONNE*/

}

/* -------------------------------------------------------------------------------------------- */

#contenu{						/*DIV POSITIONNANT LA PARTIE SPECIFIQUE DE LA PAGE*/
	position:		relative;
	float:			right;
	width:			809px;											/*810px*/
	margin-left:		0;
	margin-right:		0;
}

/* -------------------------------------------------------------------------------------------- */

#contenuint{						/*DIV ENGLOBANT LA PARTIE SPECIFIQUE DE LA PAGE*/
	float:			none;			/*Annulation du positionnement*/
	margin-left:		0;
	margin-right:		0;
}

/* -------------------------------------------------------------------------------------------- */

#texte{
	position:		relative;
	float: 			left;			/*Calé à gauche de la page*/
	margin:			0;
	width:			791px;			/*Largeur en fonction des autres éléments*/			/*792px*/
	height:			100px;
	padding:		10px;			/*Padding de 10*/
	background:		#FFFFCC;		/*Arrière-plan jaune pâle*/
	text-align:		justify;
	
}

html>body #texte {
	height:			auto;
	min-height:		100px;
}


