/* CSS document par Charles-Alexandre Paré */

/* Page */
html {
	font-size: 100%; 
}

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;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
	margin: 1em 0 .5em 0; /* -> 6 */
}

h1, h2, h3 {
	font-family: "Lucida Sans Unicode","Lucida Grande",sans-serif;
	font-size:20px;
  font-weight:500;
  font-weight: normal; /* -> 7 */
}

h1 {
	font-size: 3em; /* -> 8 */
	font-style: normal;
}
h2 {font-size: 1.8em; color: #0067b1;}

h3 {
font-size: 1.2em; 
color: #0067B1;
font-weight: normal;
}

h4 {font-size: 1em;}

/* Listes */
ul, ol {
	margin: .75em 0 .75em 24px;
	padding: 0; /* -> 9 */
}
ul {
	list-style: square;
}
li {
	margin: 0;
	padding: 0;
}

/* Paragraphes */
p {
	margin: .75em 0;
}
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;
}

a img {
	border: none; /* -> 10 */	
}

.centrage {
text-align: center;
}

.flotte-gauche {
float: left; 
margin-top: 3px;
margin-right: 5px;
}

.flotte-droite {
float: right; 
margin-left: 5px;
}

/* Liens */
a {
	color: mediumblue;
	text-decoration: underline;
}
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;
}

