@charset "utf-8";
/* CSS Document */

/* --- STYLES DE BASE --- */ 
 
/* Page */ 
html { 
  font-size: 100%; /* Évite un bug d'IE 6-7. (1) */ 
} 
body {
	margin: 0;
	padding: 0em; /* Remettre à zéro si nécessaire. */
	font-size:12px;
	/*font-size: .75em;  À adapter pour la police choisie. (3) */
	line-height: 1; /* À adapter au design. (4) */
	color:#7d7566;
	font-family:Arial, Helvetica, sans-serif;
	background-image: url(../images/bg.jpg);
	background-repeat: no-repeat;
	background-position:center top;
	background-color: #dece90;
}
 
/* Titres */ 
h1, h2, h3, h4, h5, h6 {
  font-weight: bold; /* Valeur par défaut. (6) */ 
  font-style: normal; 
} 
h1 {
  margin: 0 0 .7em 0; /* Rapproche le titre du texte. (5) */ 
  font-size: 1.3em;
  color:#db6712;
} 
h2 { 
  font-size: 1.1em;
  margin: .6em 0 .1em 0;
  padding: 0;
} 
h3 { 
  font-size: 1em; 
} 
h4 { 
  font-size: 1em; 
} 
 
/* Listes */ 
ul, ol { 
  margin: .75em 0 .75em 32px; 
  padding: 0; 
} 
 
/* Paragraphes */ 
p { 
  margin: 0 0; /* Marges plus faibles que par défaut. (7) */ 
} 
address { 
  margin: .75em 0; 
  font-style: normal; 
} 
 
/* Liens */ 
a {
	color:#7d7566;
	text-decoration:none;
} 
a:link { 
	color:#7d7566;
} 
a:visited { 
	color:#7d7566;
} 
a:hover, a:focus, a:active { 
  text-decoration:underline;
}

/* Pas de bordure pointillée ou halo lors du clic sur un lien */ 
a:active { 
  outline: none; 
} 
/* Pas de bordure autour des images dans les liens */ 

a       img {-moz-opacity: 1;filter: alpha(opacity=100);opacity: 1; border:none;}
a:hover img {-moz-opacity: 0.7;filter: alpha(opacity=70);opacity: 0.7; border:none;}

.no-alfa img {-moz-opacity: 1;filter: alpha(opacity=100);opacity: 1; border:none;}
a.no-alfa       img {-moz-opacity: 1;filter: alpha(opacity=100);opacity: 1; border:none;}
a.no-alfa:hover img {-moz-opacity: 1;filter: alpha(opacity=100);opacity: 1; border:none;} 

/* Divers éléments de type en-ligne (8) */ 
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. (9) */ 
}
