html {
	font-size: 100%; /* Voir -> Note 1 à la fin de la feuille de styles. */
}
body {
	margin: 0;
	padding: 10px 20px; /* Note -> 2 */
	font-family: Arial, Helvetica, sans-serif; /* 3 */
	font-size: 0.9em; /* -> 4 */
	color: black;
	background: white;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0em;
	margin-left: 0;
}
h1, h2, h3 {
	font-family: "Charcoal", Arial, Helvetica, sans-serif;
	font-weight: normal;
}
h1 {
	font-size: 1.7em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
h2 {
	font-size: 1.3em;
	text-transform: uppercase;
}
h3 {
	font-size: 1.2em;
}
h4 {
	font-size: 1.2em;
}

/* Listes */
ul {
	padding: 0; /* -> 9 */
	margin-top: 0.75em;
	margin-right: 0;
	margin-bottom: 0.75em;
	margin-left: 16px;
}
li {
		margin: .5em 0;
}

/* Paragraphes */
p {
	margin-top: 0em;
	margin-right: 0;
	margin-bottom: 0em;
	margin-left: 0;
}

/* Liens */
a {
	color: #CC0000;
	text-decoration: underline;
}
a:hover, a:focus {
	color: #CC0000;
}

/* Divers éléments de type en-ligne */
em {
	font-style: italic;
}
strong {
	font-weight: bold;
}


#global {
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	top: 0px;
}


/* Bloc central */
#centre {
	width: 100%;
	overflow: hidden;
	background-image: url(../images/fond.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	text-align: right;
}


/* En-tête */
#entete {
	background-image: url(../images/logo-coexco.gif);
	background-repeat: no-repeat;
	height: 135px;
	margin-bottom: 15px;
}
	
#navigation {
	float: left;
	width: 230px;
	background-image: url(../images/rose.jpg);
	font-size: 0.85em;
	text-align: left;
	background-repeat: repeat;
}
#navigation  ul  {
	list-style-type: none;
}
#navigation  li  {
	color: #003399;
	text-decoration: underline;
	display: block;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 12px;
	margin-left: 0px;
}
#navigation    a  {
	color: #003399;
	text-decoration: underline;
}

/* Pied de page */
#pied {
	background-image: url(../images/footer.gif);
	background-repeat: no-repeat;
	height: 75px;
	font-size: 0.85em;
	margin-top: 10px;
}

