/* ==============================================
   FEUILLE DE STYLES DES GABARITS HTML/CSS --- 11
   © 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: #990000;
	background-image: url(images/Fond.jpg);
}
a {
	color: #0033CC;
}
a:hover, a:focus {
	color: #00FFFF;
}
strong {
	color: #A1B55D;
}

/* Ok Conteneur central */
#centre {
}
#centre-bis {
}

/* Ok Navigation située dans la colonne de gauche*/
#navigation {
	background:#FFFFFF;
	border-top-style: double;
	border-right-style: double;
	border-bottom-style: double;
	border-left-style: double;
	border-top-color: #990000;
	border-right-color: #990000;
	border-bottom-color: #990000;
	border-left-color: #990000;	
	
}
#navigation a {
	color: #990000;
	font-weight: bold;	

}
#navigation a:hover, #navigation a:focus {
	color: #FFFFFF;
	background: #990000;
}

/* Ok Contenu principal */
#principal {
	color: #181A12;
	min-height:600px;
	border-top-style: double;
	border-right-style: double;
	border-bottom-style: double;
	border-left-style: double;
	border-top-color: #990000;
	border-right-color: #990000;
	border-bottom-color: #990000;
	border-left-color: #990000;	
}
#principal a {
	color: #990000;
}
#principal a:hover, #principal a:focus {
	color: #FFFFFF;
}
#principal strong {
	color: #181A12;
}

/* Contenu secondaire */
#secondaire {
	border-top-style: double;
	border-right-style: double;
	border-bottom-style: double;
	border-left-style: double;
	border-top-color: #990000;
	border-right-color: #990000;
	border-bottom-color: #990000;
	border-left-color: #990000;	
	text-align: left;
}

/* --- POSITIONNEMENT --- */

/* Page */
body {
	padding: 20px 5px;
}
#global {
/*Ce gabarit a une largeur de 90%, et est centré horizontalement grâce aux marges automatiques. (Propriétés CSS appliquées à div#global.)
En plus de cela, on a utilisé les propriétés min-width et max-width pour l'empêcher de prendre une largeur trop faible ou trop importante.*/
	width: 90%;
	max-width: 90em;
	min-width: 1070px;
	/* Pour centrage horizontal */
	margin-left: auto;
	margin-right: auto;
}

/* Ok En-tête */
#entete {
	margin-top:10px;
	margin-bottom:10px;
	padding: 2px 2px;
	height:140px;
	border-top-style: double;
	border-right-style: double;
	border-bottom-style: double;
	border-left-style: double;
	border-top-color: #990000;
	border-right-color: #990000;
	border-bottom-color: #990000;
	border-left-color: #990000;
	background-color: #990000;
}
#entete h1 {
	margin: 0;
}
#entete h1 img {
	float: right;
/*	margin: 7px 20px 10px 0;*/
}
#entete .sous-titre {
	margin: 4px 0 15px 0;
}
#logo {
	float: right;
	padding: 2px 2px;
	height:140px;
	width:117px;
}
#imagesentete {
	padding-bottom: 18px;
}
#messageentete {
	text-align: right;
	font-size: 20px;
	color: #FFFFFF;
	font-weight: bold;
	vertical-align:bottom;
	height: 28px;
}
/* Bloc central */
#centre-bis {
	width: 100%;
	overflow: hidden;
}

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

/* Contenu principal */
#principal {
	margin-left: 200px;
	margin-right: 210px;
	padding: 12px 20px;
}
#principal > :first-child {
	margin-top: 10px;
}
#principal p, #principal li {
	line-height: 1.5;
}

/* Contenu secondaire */
#secondaire {
	float: right;
	width: 150px;
	height:600px;
	padding: 12px 20px;	
}

/* Pied de page */
#pied {
	margin: 0;
	padding: 15px 260px 10px 200px;
	font-size: .85em;
}

/* Mention de copyright */
#copyright {
	margin: 8px 0 0 0;
	font-size: 1em;
	text-align: left;
}
