/* ==============================================
   FEUILLE DE STYLES DES GABARITS HTML/CSS
   © Elephorm & Alsacreations.com
   Conditions d'utilisation:
   http://creativecommons.org/licenses/by/2.0/fr/
   ============================================== */


/* --- STYLES DE BASE POUR LE TEXTE ET LES PRINCIPAUX ÉLÉMENTS --- */

/* Page */
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, Arial, Helvetica, sans-serif; /* 3 */
	font-size: 0.8em; /* -> 4 */
	line-height: 1.25; /* -> 5 */
	color: #000000;
	background-color: #333333;
	background-image: url(images/backg.jpg);
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
	margin: 1em 0 .5em 0; /* -> 6 */
	text-align: center;
}


h1, h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal; /* -> 7 */
}
h1 {
	font-size: 1.1em; /* -> 8 */
	line-height: 1.5%;
}
h2 {font-size: 1.8em;}
h3 {
	font-size: 1.1em;
	line-height: 1.5em;
	}
h4 {
	font-size: 1em;
	text-align: left;
}
h6 {
	margin: 1em 0 .5em 0; /* -> 6 */
	text-align: center;
}
/* Listes */
ul, ol {
	margin: .75em 0 .75em 0px;
	padding: 0; /* -> 9 */
}
ul {
	list-style: square;
	text-decoration: none;
}
li {
	margin: 0;
	padding: 0;
}

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

