/* ==============================================
   FEUILLE DE STYLES DES GABARITS HTML/CSS --- 07
   © 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 {
	background-image: url('../images/finistere_fond.jpg');
	background-position: center top;
	background-repeat:none;	
}
a {
	color: #FF6533;
}
a:hover, a:focus {
	color: #FF4C00;
}
strong {
	color: #A1B55D;
}

/* Bloc central contenant #navigation et #contenu */
#centre {

}

/* Navigation */
#navigation {
}
#navigation a {
	color: #FF6533;
}
#navigation a:hover, #navigation a:focus {
}

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


/* --- POSITIONNEMENT --- */

/* Page */
body {

}
#global {
	padding: 0px;
	width: 750px; /* -> 3 */
	margin: 0 auto; /* -> 4 */
}

/* Bloc central contenant #navigation et #contenu */
#centre {
	width: 100%; /* -> 5 */
	height:570px;
	overflow: hidden; /* -> 5 */
}

/* Menu de navigation */
#navigation {
	width: 300px;
	float: left; /* -> 6 */
}
#navigation ul {
	margin: 0;
	list-style: none;
}
#navigation a {
	display: block;
	height: 1%; /* -> 7 */
	line-height: 1.5;
	font-size: .9em;
	text-decoration: none;
}

/* Contenu */
#contenu {
	margin-left: 300px; /* -> 8 */
	padding: 40px 20px;
}
#contenu > :first-child {
	margin-top: 10px;
}
 #contenu li {
	line-height:1.5;
}





