@charset "UTF-8";
body  {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0; /* il est conseillé de mettre à zéro la marge et le remplissage de l'élément body, pour tenir compte des différentes valeurs par défaut des navigateurs */
	padding: 0;
	text-align: center;
	background-color: #ACBED2;
	color: #002D5B;
}

#conteneur  { 
	width: 900px;  /* paramétrage de la largeur à 20 pixels de moins que le plein écran (800 pixels) pour tenir compte de l'habillage du navigateur et éviter l'apparition d'un ascenseur horizontal */
	background: #FFFFFF;
	margin: 0 auto; /* les marges automatiques (et dotées d'une largeur positive) centrent la page */
	border: 1px solid #000000;
	text-align: left; /* ce paramétrage annule le paramètre text-align:center de l'élément body. */
}
#haut {
	font-size: 16px;
	font-weight: bold;
	height: 50px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
}
a {
	color: #76170C;
}
#gauche {
	float: left;
	background-color: #CDF6F6;
	padding-right: 6px;
	width: 144px;
}
#droite {
	width: 180px;
	float: right;
	background-color: #90C0C4;
	padding-left: 0px;
}
#centre {
	padding-right: 0px;
	padding-left: 0px;
	margin-right: 180px;
	margin-left: 150px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #000;
	border-left-color: #000;
	margin-top: 0px;
	padding-top: 10px;
}
#footer {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right: 10px;
	margin-left: 10px;
}
h2 {
	margin-right: 10px;
	margin-left: 10px;
}
h3 {
	margin-right: 10px;
	margin-left: 10px;
	font-size: 14px;
}
p {
	font-size: 12px;
	line-height: 120%;
	font-family: Arial, Helvetica, sans-serif;
	margin-right: 10px;
	margin-left: 10px;
	color: 002D5B;
	}
	
.clearfloat { /* cette classe doit être placée pour un élément div ou break et doit être l'élément final avant la balise de fin d'un conteneur qui doit contenir entièrement un élément flottant */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
li {
	padding: 0px;
	font-size: 12px;
	display: inline;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
}
ul {
	margin: 0px;
	padding: 0px;
}

