/* Page */
html {
	font-size: 100%; /* Voir -> Note 1 à la fin de la feuille de styles. */
}
body {
	margin: 0;
	font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif; /* 3 */
	font-size: .8em; /* -> 4 */
	line-height: 1.3; /* -> 5 */
	color: black;
	background: white;
}

/* Titres */
h1, h2, h3, h4 {margin: 0em 0 .5em 0; /* -> 6 */
}
h1 {font-family: Arial black, Arial, Impact;
	font-weight: normal; /* -> 7 */}
h2,h3,h4 {
	font-family: Arial narrow, Arial, Helvetica, "Nimbus Sans L", sans-serif;
	font-weight: normal; /* -> 7 */}
h1 {font-size: 1.5em;}
h2 {font-size: 1.1em;} 
h3 {font-size: 1em;}
h4 {font-size : 0.8em;}
/* Listes */
ul, ol {
	margin: .5em 0 .75em 5px;
	padding: 0; /* -> 9 */
	font-size: 1.1em;
	font-family: Arial narrow, Arial, Helvetica, "Nimbus Sans L", sans-serif;
	font-weight: normal;
}

/* Paragraphes */
p {
	margin: .9em 0;
}
li p, blockquote p {
	margin: .5em 0;
}

/* Liens */

a:link {
	color: #666666;
	text-decoration: none;
}
a:visited {
	color: #666666;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #000000;
}
a:active {
	text-decoration: none;
	color: #666666;
}


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



