/* --- STYLES DE BASE --- */

/* Page */
html {
    font-size: 100%; /* Évite un bug d'IE 6-7. */
}
body {
    margin: 0;
    padding: 0; 
    font-family: Arial, Helvetica, FreeSans, sans-serif; 
    font-size: .8em; 
    line-height: 1.4; 
    color: black;
    background: #E9E9E9;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: bold; /* Valeur par défaut.  */
    font-style: normal;
padding:0 0 10px 0;
margin:0;
}
h1 {
    font-size: 1.9em;
	padding:18px 0 10px 0;
	color:#000;
	clear:both;
	font-weight:normal;

}
h2 {
    font-size: 1.4em;
	color:#42210b;
}
h3 {
    font-size: 1.1em;
	color:#000;	
}
h4 {
    font-size: 1em;
}

/* Listes */
ul {
    margin: 0;
    padding: 0;
	list-style-type:none;
}

ol {
    margin: 0;
    padding: 0;
}

/* Paragraphes */
p {
    margin: 0;
font-size:1em;
color:#333;
}
address {
    margin: 0;
    font-style: normal;
}

/* Liens */
a {
    text-decoration: none;
}

a:hover {
text-decoration:underline;
}
a img {
    border: none;
}

/* Divers éléments de type en-ligne  */
em {
    font-style: italic;
}
strong {
    font-weight: bold;
}

/* Formulaires */
form, fieldset {
    margin: 0;
    padding: 0;
    border: none;
}
input, button, select {
    vertical-align: middle; /* Solution pb. d'alignement. */
}

.clear {
clear:both;
margin:0;
padding:0;
height:1px;
visibility:hidden;
}


/*Conteneur principal du site*/

#wrapper {
width:990px; /* Ne pas dépasser sinon barre de scrolling horizontale */
margin: 0 auto; /* site centré */
background-color:#fff;
}

