/* ==============================================
   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: #CCCCCC;
	background-color: #CCC;
}


/* Navigation */
#navigation {
	background-image: url(imagecss/menuf.gif);
	height: 18px;
	width: 980px;
}


/* --- POSITIONNEMENT --- */

/* Page */
html, body {
	height: 100%; /* Voir -> Note 1 ci-dessous */
}
body {
	padding: 0;
	background-color: #CCCCCC;
}
#global {
	width: 980px;
	overflow: hidden; /* -> 2 */
	margin-left: auto;
	margin-right: auto;
	border: 0px none #FFF;
}

/* En-tête */
#entete {
	background-image: url(imagecss/entete.gif);
	height: 80px;
	width: 980px;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	}

/* Menu de navigation */
#navigation {
	height: 18px;
	text-align: center;
	padding-left: 20px;
	padding-top: 2px;
}
#navigation ul {
	margin: 0;
	list-style: none;
}
#navigation li {
	display: inline;
}
#navigation a {
	padding: 6px;
	font-size: 0.9em;
	text-decoration: none;
}

/* Contenu */
#contenu {
	background-image: url(imagecss/fond.gif);
	background-image: url(imagecss/fond.gif);
	width: 980px;
	padding-right: 10px;
	padding-left: 0px;
	text-align: center;
}
#contenu a {
	font-family: Verdana, Geneva, sans-serif;
	color: #006;
	font-style: italic;
	font-weight: bolder;
	text-decoration: none;
}


/* Pied de page */
#pied {
	font-size: 9px;
	background-image: url(imagecss/pied.gif);
	height: 15px;
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	color: #FFF;
}
#contenu a:hover {
	font-family: Verdana, Geneva, sans-serif;
	color: #003;
	font-style: italic;
	font-weight: bolder;
	text-decoration: underline;
}

