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


/* --- COULEURS --- */

/* Note: vous pouvez modifier simplement l'aspect de ce gabarit en modifiant
   uniquement les couleurs de fond (propriétés background) et les couleurs
   du texte (propriété color).
   Pour modifier la disposition des blocs, voir plus bas dans la feuille de
   styles la partie «positionnement». */

/* Général */
body {
	color: #000;
	background: #eeeeee;
}
a {
	color: #000;
}
a:hover, a:focus {
	color: #FF4C00;
}


/* Page */
#global {
	background: #eeeeee;
}

/* Navigation */
#navigation {
	background: #eeeeee;
}
#navigation a {
	color: #ddd;
}


/* Contenu principal */
#contenu {
	color: #363B29;
	background: #eeeeee;
}
#contenu a {
	color: #332510;
	outline:none;
}
#contenu a:hover, #contenu a:focus {
	color: #6E5122;
}
#contenu strong {
	color: #181A12;
}

/* Pied de page */
#pied {
	color: #E6A948;
}


/* --- POSITIONNEMENT --- */

/* Page */
html, body {
	height: 100%; /* Voir -> Note 1 ci-dessous */
}
body {
	padding: 0;
}
#global {
	min-height: 100%; /* -> 1 */
	width: 500px;
	overflow: hidden; /* -> 2 */
	margin-left: auto;
	margin-right: auto; /* -> 3 */
}



/* Contenu */
#contenu {
	padding: 150px 0px;
}
#contenu > :first-child {
	margin-top: 0px;
}
#contenu p, #contenu li {
	line-height: 1.5;
	padding-left:250px;
}

/* Pied de page */
#pied {
	padding: 15px 0px;
	font-size: .85em;
}
#pied p {
	margin: .5em 0;
}
#copyright {
	text-align: left;
	font-size: 1em;
}

