@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: 0; /* Remettre à zéro si nécessaire. */ 
  /* Pensez à utiliser une collection de polices (2), par ex: 
  font-family: Arial, Helvetica, FreeSans, sans-serif; */ 
  font-size: .8em; /* À adapter pour la police choisie. (3) */ 
  line-height: 1.4; /* À adapter au design. (4) */ 
  color: black; 
  background: white; 
} 
 
/* Titres */ 
h1, h2, h3, h4 { 
  margin: 1em 0 .5em 0; /* Rapproche le titre du texte. (5) */ 
  line-height: 1.2; 
  font-weight: bold; /* Valeur par défaut. (6) */ 
  font-style: normal; 
} 
h1 { 
  font-size: 1.35em; 
} 
h2 { 
  font-size: 1.20em; 
} 
h3 { 
  font-size: 1.20em; 
}
h4 {
	font-size: 1.20em;
}
 
/* Listes */ 
ul, ol { 
  padding: 0; 
} 
 
/* Paragraphes */ 
p { 
  margin: .45em 0; /* Marges plus faibles que par défaut. (7) */ 
} 
address { 
  margin: .45em 0; 
  font-style: normal; 
} 
 
/* Liens */ 
/* 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 { 
  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) */ 
}
/*----------------*/

body {
	background-color: #fdfdfd;
}

img {
	border: none;
	}

h1 {
	font-family: "Trebuchet MS", Verdana, Geneva, Arial;
	/*font-size: 16px;*/
	color: #e95d0f;
	margin-bottom: 4px;
}

h2 {
	font-family: "Trebuchet MS", Verdana, Geneva, Arial;
	/*font-size: 15px;*/
	color: #97bf0d;
	margin-bottom: 2px;
	border-top: #97bf0d solid 4px;
}

h3 {
	font-family: "Trebuchet MS", Verdana, Geneva, Arial;
	/*font-size: 15px;*/
	color: #970035;
	margin-bottom: 2px;
	border-top: #970035 solid 4px;
	margin-top: 25px;
}

h4 {
	font-family: "Trebuchet MS", Verdana, Geneva, Arial;
	/*font-size: 15px;*/
	color: #04435d;
	margin-bottom: 2px;
	border-top: #04435d solid 4px;
	margin-top: 25px;
}

p {
	font-family: Arial, Helvetica, sans-serif;
	color: #222;
	font-size: 13px;
	line-height: 1.3em;
}

#papa {
	background-color: #fdfdfd;
	width: 900px;
	/*height: 600px;*/
	margin: 0px auto;
}

#bandeau {
	width: 800px;/*900px*/
	height: 89px;/*114px*/
	padding-top: 25px;
	padding-left: 100px;
	border-bottom: #04435d solid 3px;
}

#menu {
	width: 550px;/*900px*/
	height: 50px;/*27px*/
	margin-left: 300px;
}

#left {
	width: 380px;
	float: left;
	padding-top: 50px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 100px;
}

#right {
	width: 300px;/*400px*/
	/*height: 350px;*/
	padding: 50px 20px 10px 80px;
	float: left;
}

#pied {
	width: 900px;
	height: 25px;/*50px*/
	padding-top: 3px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-align: center;
	border-top: #04435d solid 2px;
	line-height: 1.3em;
	clear: both;
}

#signature {
	width: 900px;
	height: 19px;/*20px*/
	font-family: "Trebuchet MS", Verdana, Geneva, Arial;
	font-size: 9px;
	color: #000;
	border-top: #97bf0d solid 1px;
	margin-top: 5px;
	padding-top: 3px;
	text-align: right;
	clear: both;
}

/*=======BANDEAU ANIMÉ======*/
#header {
	width: 900px;
	height: 30px;/*36px*/
	border-top: #04435d solid 6px;
	text-align: center;
}

.actif1 {
	display: inline-block;
	width: 100px;
	height: 20px;
	margin: 0;
	padding: 0;
	border-top: #97bf0d solid 10px;
}/*vert*/

.actif1:focus, .actif1:hover {
	border-bottom: #97bf0d solid 10px;
	border-top: none;
}/*vert*/

.actif2 {
	display: inline-block;
	width: 100px;
	height: 20px;
	margin: 0;
	padding: 0;
	border-top: #e95d0f solid 10px;
}/*orange*/

.actif2:focus, .actif2:hover {
	border-bottom: #e95d0f solid 10px;
	border-top: none;

}/*orange*/

.actif3 {
	display: inline-block;
	width: 100px;
	height: 20px;
	margin: 0;
	padding: 0;
	border-top: #019EE0 solid 10px;
}/*cyan*/

.actif3:focus, .actif3:hover {
	border-bottom: #019EE0 solid 10px;
	border-top: none;
}/*cyan*/

.actif4 {
	display: inline-block;
	width: 100px;
	height: 20px;
	margin: 0;
	padding: 0;
	border-top: #970035 solid 10px;
}/*rouge*/

.actif4:focus, .actif4:hover {
	border-bottom: #970035 solid 10px;
	border-top: none;
}/*rouge*/

/*=======FIN BANDEAU ANIMÉ======*/

#separation {
	width: 340px;
	height: 1px;
	margin-left: 10px;
	border-bottom: #04435d dotted 1px;
}
	
#signature a {
	font-family: "Trebuchet MS", Verdana, Geneva, Arial;
	text-decoration: none;
	color: #000;
}

#signature a:link, #signature a:active, #signature a:visited {
	color: #000;
}

#signature a:focus, #signature a:hover {
	color: #97BF0D;
}


#left a {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-decoration: none;
	font-weight: bold;
}

#left a:link, #left a:active, #left a:visited {
	color: #019EE0;
}

#left a:focus, #left a:hover {
	border-bottom: #019EE0 solid 1px;

}

#right a {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-decoration: none;
}

#right a:link, #right a:active, #right a:visited {
	color: #019EE0;
}

#right a:focus, #right a:hover {
	border-bottom: #019EE0 solid 1px;
}

.capitale {
	text-transform: uppercase;
}

.accroche{
	font-family: "Trebuchet MS", Verdana, Geneva, Arial;
	color: #e95d0f;/*#970035*/
	font-size: 13px;
}

.sstitre {
	font-family: "Trebuchet MS", Verdana, Geneva, Arial;
	font-size: 14px;
	color: #970035;
	font-weight: bold;
}

.band1 {
	font-family: "Trebuchet MS", Verdana, Geneva, Arial;
	color: #000;
	font-size: 24px;
	letter-spacing: 1px;
	text-transform: uppercase;	
}

.band2 {
	font-family: "Trebuchet MS", Verdana, Geneva, Arial;
	color: #97bf0d;
	font-size: 24px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.band3 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #333;
	font-size: 14px;
	line-height: 16px;
	font-weight: bold;
}

.black {
	color: #000;
}

.alignleft {
	text-align: left;
}

.cap {
	text-transform: uppercase;
}

.prune {
	color: #970035;
}

.green {
		color: #97bf0d;
}

.darkblue {
		color: #04435D;
}

.legende {
	font-size: 11px;
	font-family: "Trebuchet MS", Verdana, Geneva, Arial;
	color: #000;
	margin-left: 7px;
}

.marginLeft {
	margin-left: 25px;
	}
	
.border-dotted {
	border: 1px dotted #000 !important;
	}	

/* ======== MENU ======== */
#menu ul {
	list-style-type: none;
	text-align: left;
	
}

#menu li {
	display: inline-block;
	text-align: left;
	float: left;
}

#menu li a {
	display: block;
	padding-top: 6px;
	width: 80px;
	height: 19px;
	margin-right: 10px;
	font-family: "Trebuchet MS", Verdana, Geneva, Arial;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
	font-size: 14px;
	color: #000;
}

#menu li a:link, #menu li a:active, #menu li a:visited {
	color: #000;
	border-bottom: #04435d dotted 1px;
}

#menu li a:focus, #menu li a:hover {
	border-bottom: #97bf0d solid 2px;
}

#menu li.actif a {
	border-bottom: #009ee0 solid 2px;
}	

/*---------FIN MENU--------*/


/*-------FORMULAIRE--------*/

fieldset {
	width:270px;
	/*height:250px;*/
	font-family: "Trebuchet MS", Verdana, Geneva, Arial;
	color: #111;
	font-size: 12px;
	padding: 10px;
	border: none;
}

label {
	width: 100px;
	float: left;
	margin-right: 10px;
}

.inputs {
	margin-bottom: 5px;
}

.inputs:focus {
	background-color: #97bf0d;
	color: #fff;
}

.textarea:focus {
	background-color: #97bf0d;
	color: #fff;
}

.select {
	margin: 0 0 5px 110px;
}

.vignette {
	width: 255px;/*280*/
	height: 275px;/*280*/
	padding-top: 5px;
	padding-left: 25px;
}
/*===FIN FORMULAIRE===*/


/*newsletter*/
#bandeau-news {
	width: 900px;
	height: 155px;
	background-image: url(images/bandeau.jpg);
	}

