body 
{
	/* Paramètres valables par défaut pour toute la page */
	
	/* D'abord centrer la page (résolution 1600 x 900) */
	width: 90%;
	margin-left: auto;
	margin-right: auto;

	/* Ensuite définir les caractères par dédaut */
	font-family: Comic Sans MS, sans-serif;
	font-size: 30px;
	font-style: normal;/*italic*/
	font-weight: normal;/*100à900,normal=400,bold=700,bolder,lighter*/
	text-decoration: none;/*line-through, underline*/
	color: #000000;
	text-align: left;
	
	/* Curseur uniforme */
	cursor: default;
}

a
{
	color: black;
}

a:hover
{
	color: #F0F;
}

#en_tete {
	border: 4px solid orange;
}
#en_tete_gauche {
	float:left;
 	height: 160px;  	
	width:160px;
	background-color : #CB5A2B;	
	border: 1px solid black;  
	margin-right : 4px;
	margin-bottom : 4px;
	font-weight: bold;/*100à900,normal=400,bold=700,bolder,lighter*/	
	font-size: 110px;	
	text-align: center;	
	vertical-align: top;	
	color : #fff;	
}
#en_tete_droite {
   overflow:auto;
 	height: 160px;    
	background-color : #CB5A2B;	
	border: 1px solid black;     
	margin-bottom : 4px;		
	text-align: center;	
	vertical-align: middle;	
	color : #fff;		
	font-size: 73px;	
	font-weight: bold;/*100à900,normal=400,bold=700,bolder,lighter*/		
}

#pied	
{
	border: 1px solid black;
	position: relative;
	padding: 2px;
	margin: 0;
	top: 0;
	left: 0;
	color: #Fff;
	background-color : #CB5A2B;	
	text-align: center;
	font-weight: bold;/*100à900,normal=400,bold=700,bolder,lighter*/	
}

/* Classes */
.image_centree
/* Sert pour des images mais aussi pour des blocs de texte centrés. Les paramètres sont dans le .php 
Par exemple : style='width:50%;text-align:center;background-color:#f0f;color:#fff;font-weight: bold;font-size: 105px;vertical-align: middle;' */
{
	border: 0px solid red;
	display: block;
	margin-right : auto;
	margin-left : auto;
}

.presentation_paragraphe 
{
	/* Pour éviter que le texte ne colle aux rectangles voisins.*/
	/* Dans body 1580 px ==> largeur 1580 - 2 x margin */
	/* Occupation = largeur - 2 x padding */	
	border: 0px solid red;
	padding-left : 10;
	padding-right : 10;	
}