/* ==============================================
   FEUILLE DE STYLES DES GABARITS HTML/CSS --- 08
   © 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: #F0E39E;
	background: rgb(64,34,27);
}
a {
	color: #FF6533;
}
a:hover, a:focus {
	color: #FF4C00;
}
strong {
	color: #A1B55D;
}
/* En-tête */
#entete h1 {
	margin: 0;
	letter-spacing:0.7em;
}
/*En-tête pour IE7*/
*+html #entete h1 {
	margin:0;
	letter-spacing:1.2em;
}
#entete {
background-color: rgb(64,34,27);
}
/* Navigation */

#navigation a {
	color: #FF6533;
}
#navigation a:hover, #navigation a:focus {
	color: rgb(64,34,27);
	 filter : alpha(opacity=70);
    -moz-opacity : 0.7;
    opacity : 0.7; 
}
ul li.accueil {
background-image:url(img/crayon_deg.jpg);
}
ul li.exterieur {
background-color : rgb(236, 238, 186);
}
ul li.interieur {
background-color : rgb(216, 221, 101);
}
ul li.sticker{
background-color : rgb(187, 194, 67);
}
ul li.contact {
background-color : rgb(150, 155, 100);
}

/* Bloc central */
#centre {
	background: url(img/marron_gabarit.png) repeat-y; /* Voir -> Note 1 */
}

/* Contenu principal */
#principal {
	color: #181A12;
	background: #cbd888; /* -> 2 */
}
#principal a {
	color: grey;
	text-decoration:none;
	font-weight:bold;
	font-style:italic;
}
#principal a:hover, #principal a:active{
	color: #6E5122;
}
#principal strong {
	color: #181A12;
}
/* Contenu secondaire */
#secondaire {
background: rgb(64,34,27); /* -> 2 */
}

/* --- POSITIONNEMENT --- */

/* Page */
body {
	padding: 20px 5px;
}
#global {

	position:relative;
	width: 900px;
	margin: 0 auto; /* -> 3 */
}


/* Menu de navigation */
#navigation {
	padding: 5px 5px 30px 0;
}
#navigation ul {
	width: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}

#navigation a {
	line-height: 1.5;
	font-size: .9em;
	text-decoration: none;
}

#navigation ul li {
float : left;
width : 118px;
text-align : center;
text-decoration : none;
font-size :1.2em;
border:1px solid #ff6533;
}
/* Bloc central */
#centre {
	width: 100%; /* -> 4 */
	overflow: hidden; /* -> 4 */
}

/* Contenu principal */
#principal {
	float: left; /* -> 5 */
	width: 560px;
	padding: 10px 20px;
	margin-right:10px;
}
#conteneur{
width : 550px;
height : 250px;
margin-left : auto;
margin-right : auto;
padding-bottom: 5px;
}
#fond_blanc {
width : 100%;
height : 100%;
margin-left : auto;
margin-right : auto;
background : white;
}
.rtop, .rbottom {
display : block;
background : rgb(203, 216, 136);
}
.rtop b, .rbottom b {
display : block;
height : 1px;
overflow :hidden;
background : white;
}
.r1 {
margin : 0 5px;
}
.r2 {
margin : 0 3px;
}
.r3 {
margin : 0 2px;
}
.rtop .r4, .rbottom .r4 {
margin : 0 1px;
height : 2px;
}
/*cdre et contenu du cadre*/
#cadre {
border : 1px solid rgb(179, 84, 8);
width : 97%;
height:99%;
margin-left:auto;
margin-right:auto;
}
/* Contenu secondaire */
#secondaire {
	margin-right:55px;
	text-align:justify;
}

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


