html {
	font-size: 100%; /* Voir -> Note 1 à la fin de la feuille de styles. */
	overflow-y: scroll;
}
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 */
	color: black;
	background: white;
	overflow:auto;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
	margin: 1em 0 .5em 1em;
}
h1, h2 {
	font-family: Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif;
}
h1 {
	font-size: 1.6em; /* -> 8 */
	font-weight:bold;
	text-align:right;

}
.exergue {
	font-size: 1em; /* -> 8 */
	font-weight:bold;
	color:#FF5C33;
	font-style: italic;
	text-align:right;
	margin-top:-5px;
	}
	
.exergue b {
	color:#000;
	font-style:normal;
	}

h2 {
	font-size: 1.3em;
	font-style: normal;
	font-weight:bold;
	color:#060;
	border-bottom:2px solid #ccc;
	margin-top:2em;
	margin-left:2em;
	
}
h3 {font-size: 1.1em;}
h4 {font-size: 1em;}

/* Listes */
ul, ol {
	margin: .75em 0 .75em 2em;
	padding: 0; /* -> 9 */
}
ul {
	list-style-image: url(../img/ihm/puce_grise.png);
	list-style-type:circle;
}

ol {list-style-type:decimal; font-size:0.9em; counter-reset: repas;}



li {
	margin: 0;
	padding: 0;
	counter-increment: repas;
}


/* Paragraphes */
p {
	margin: .75em 0em;
	text-align:justify;
}
li p, blockquote p {
	margin: .5em 0;
}

/* Citations */
blockquote, q {
	font-size: 1.1em;
	font-style: italic;
	font-family: Georgia, "Bitstream Vera Serif", Norasi, serif;
}
blockquote {
	margin: .75em 0 .75em 24px;
}
cite {
	font-style: italic;
}

/* Liens */
a {
	color: mediumblue;
	text-decoration: none;
	border-bottom:1px dotted #000;
}
a:hover, a:focus {
	color: crimson;
}
a img {
	border: none; /* -> 10 */
}

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

#copyright {
	margin: 20px 0 5px 0;
	text-align: right;
	font-size: .8em;
	color: #848F63;
}
#copyright a {
	color: #848F63;
	text-decoration: none;
}
#copyright a:hover, #copyright a:focus {
	text-decoration: underline;
}
