/* ==============================================
   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, "Bitstream Vera Sans", "Lucida Grande", sans-serif; /* 3 */
	font-size: 0.8em; /* -> 4 */
	line-height: 1.25; /* -> 5 */
	color: #777676;
	background: white;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0.5em;
	margin-right: 0;
	margin-bottom: 0.5em;
	margin-left: 0;
}
h1, h2 {
	font-family: Geneva, "Bitstream Vera Serif", Norasi, serif;
	font-weight: normal; /* -> 7 */
}
h1 {
	font-size: 3em;
}
h2 {font-size: 1.8em;}
h3 {
	font-size: 1.3em;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCCCCC;
	margin-top: 1.6em;
	margin-bottom: 1em;
	padding-bottom: 5px;
	color: #a40059;
}

h4 {font-size: 1em;}

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

/* Liens */
a {
	color: mediumblue;
	text-decoration: underline;
}
a:hover, a:focus {
	color: crimson;
}
a img {
	border: none; /* -> 10 */
}
#pied {
	font-size: 0.85em;
	padding-right: 5px;
	padding-left: 5px;
}
