/* ==============================================
   FEUILLE DE STYLES DES GABARITS HTML/CSS
   ============================================== */


/* --- COULEURS --- */

/* Général */
body {
	color: #F0E39E;
	background: #0E0F0C;
}
a {
	color: #FF6533;
}
a:hover, a:focus {
	color: #FF4C00;
}
strong {
	color: #A1B55D;
}
/* Page */
#global {
	background: #A7BF00;
}
/* Navigation */
#navigation {
	background: #001D05;
}
#navigation a {
	color: #FF6533;
}
#navigation a:hover, #navigation a:focus {
	background: #000000;
}
/* Contenu principal */
#contenu {
	color: #000;
	background: #a8bf00;
}
#contenu a {
	color: #000;
}
#contenu a:hover, #contenu a:focus {
	color: #FFF;
	text-decoration:none;
}
#contenu strong {
	color: #181A12;
}
/* Pied de page */
#pied {
	color: #000;
}
#footer {
	width:748px;
	height:103px;
	background-image:url(../images/footer.jpg);
	background-position:bottom right;
}
/* --- POSITIONNEMENT --- */

/* Page */
html, body {
	height: 100%; /* Voir -> Note 1 ci-dessous */
}
body {
	padding: 0;
}
#global {
	/*min-height: 100%; /* -> 1 */
	border-left:#FFF 1px solid;
	border-right:#FFF 1px solid;
	width: 748px;
	overflow: hidden; /* -> 2 */
	margin-left: auto;
	margin-right: auto; /* -> 3 */
}
/* En-tête */
#entete {
	padding: 0px;
}
#entete img {
	padding: 0px;
	margin:0px;
}
#entete h1 {
	margin: 0;
}
#entete h1 img {
	float: left;
	margin: 7px 20px 10px 0;
}
#entete .sous-titre {
	margin: 4px 0 15px 0;
}
/* Menu de navigation */
#navigation {
	padding: 12px 15px;
}
#navigation ul {
	margin: 0;
	list-style: none;
	text-align: center;
}
#navigation li {
	display: inline;
}
#navigation a {
	padding: 6px;
	line-height: 1.5;
	font-size: .9em;
	text-decoration: none;
}
/* Contenu */
#contenu {
	padding: 10px 20px;
}
#contenu > :first-child {
	margin-top: 10px;
}
#contenu p {
	line-height: 1.5;
}
/* Pied de page */
#pied {
	padding: 5px 20px;
	font-size: .85em;
}
#pied p {
	margin: .5em 0;
}
#copyright {
	text-align: left;
	font-size: 1em;
}

/* Images et ombres portees */

#contenu img {
	display: block;
}

/* Ombre portee Img Left */

.o1 {
	float:left;
	background: url(../images/shadow.gif) right 100%;
	margin: 0 20px 8px 0;
}

.o2 {
	background:url(../images/corner_bl.gif) no-repeat bottom left;
}

.o3 {
	padding:0 6px 6px 0;
	background:url(../images/corner_tr.gif) no-repeat top right;
}

/* Ombre portee Img Right */

.o4 {
	float:right;
	background: url(../images/shadow2.gif) left 100%;
	margin: 0 0 8px 8px;
}

.o5 {
	background:url(../images/corner_bl2.gif) no-repeat bottom right;
}

.o6 {
	padding:0 0 6px 6px;
	background:url(../images/corner_tr2.gif) no-repeat top left;
}

