/* ==============================================
   FEUILLE DE STYLES DES GABARITS HTML/CSS
   © Elephorm & Alsacreations.com
   Conditions d'utilisation:
   http://creativecommons.org/licenses/by/2.0/fr/
   
   Modifiée par Esteryn:
   http://esteryn.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: 20px 20px 20px 20px;
	font-family: Verdana, "Bitstream Vera Sans", "Lucida Grande", sans-serif; /* 3 */
	font-size: .8em; /* -> 4 */
	line-height: 1.25; /* -> 5 */
	background: url(img/fond_degrade_01.jpg) repeat-x left top;
	background-color: #b6b5c4;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0 0; /* -> 6 */
}
h1, h2 {
	font-family: Georgia, "Bitstream Vera Serif", Norasi, serif;
	font-weight: normal; /* -> 7 */
}
h1 {
	font-size: 2em; /* -> 8 */
	font-style: italic;
}

h2 {font-size: 1.6em;}

h3 {
	font-size: 1.1em;
	background: url(img/headers.png) no-repeat left top;
	text-align: left;
	line-height: 1.5;
	padding: 10px 5px 10px 30px;
}


h4 {
	background: url(img/headers.png) no-repeat left top;
	text-align: left;
	line-height: 1;
	font-weight: normal;
	padding: 5px 5px 5px 5px;
}


/* 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;
	color: #7b3978;	
}
blockquote {
	margin: .75em 0 .75em 24px;
}
cite {
	font-style: italic;
}

/* Liens */
a {
	text-decoration: none;
}


a img {
	border: none; /* -> 10 */
}

/* Divers éléments de type en-ligne */
em {
	font-style: italic;
}
strong {
	font-weight: bold;
}


/* --- STYLES POUR CERTAINS CONTENUS DES GABARITS --- */


#copyright {
	margin: 20px 0 5px 0;
	text-align: right;
	font-size: .8em;
	color: #b576b2;
}
#copyright a {
	color: #b576b2;
	text-decoration: none;
}
#copyright a:hover, #copyright a:focus {
	text-decoration: underline;
}


