/* CSS Document */
html {
	font-size: 100%; /* Voir -> Note 1 à la fin de la feuille de styles. */
}
body {
	margin: 0;
	padding: 10px 20px; /* Note -> 2 */
	font-family: Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif; /* 3 */
	font-size: .8em; /* -> 4 */
	line-height: 1.25; /* -> 5 */
	background: white;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
	margin: 1em 0 .5em 0; /* -> 6 */
}
h1 {
	font-size: 15px; /* -> 8 */
	color: #999999;
	font-weight: bolder;
	padding: 15px;
}
h2 {font-size: 1.8em;}
h3 {
	font-size: 14px;
	color: #000000;
	text-decoration: underline;
}
h4 {font-size: 1em;}

p{
	padding: 8px;
	text-align: justify;
}
ul{
	font-size: 12px;
	color: #000000;
}