/* *********************** */
/*    Relation de Securité    */
/* *********************** */

* {
	padding: 0px;
	margin: 0px;
}

/* *********************** */
/*    Section Structure    */
/* *********************** */

/* Taille des cadres principaux */

#section-haut 
{
  position: relative;
  width: 1001px;
  height: 285px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0px;
	border: 0px;
}
#menu-haut 
{
  position: relative;
  left: 0px;
  top: 0px;
  width: 1001px;
  height: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0px;
  background-color: #b4c7d8;
	border-top: 10px solid #c8b392;
	border-bottom: 5px solid #c8b392;
	border-left: 0px;
	border-right: 0px;
}
#section-centre 
{
  position: relative;
  left: 0px;
  top: 0px;
  width: 1001px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 5px;
	border: 0px  solid black;
	/*background-color: #e7edf6;*/
	background-color: #ffffff;
  text-align: left; /* on rétablit l'alignement normal du texte */
}
#noms
{
  position: relative;
  left: 500px;
  top: 0px;
  width: 250px;
  margin: 0px;
  padding: 0px;
  text-align: justify;
  color: #ffffff;
}

/* Remplissage du cadre central de la page */

#partie-centre
{
  float: left;
  width: 1000px;
  margin-top: 0px;
  margin-bottom: 10px;
  margin-left: 5px !important;
  margin-left: 2px;
  margin-right: 5px !important;
  margin-right: 2px;
  padding: 0px;
  border: 0px solid black;
}
#partie-centre-photos
{
  position: relative;
  float: left;
  width: 800px;
  margin-top: 0px;
  margin-bottom: 10px;
  margin-left: 5px !important;
  margin-left: 2px;
  margin-right: 5px !important;
  margin-right: 2px;
  padding: 0px;
  border: 0px solid black;
}

/* Zones spécifiques de la page */

.cadre-photo
{
  float: left;
  width: 155px;
  height: 155px; 
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px !important;
  margin-left: 0px;
  margin-right: 0px;
  padding: 0px;
  border: 0px solid #000000;
}
.cadre-photo-chauf
{
  float: left;
  width: 205px;
  height: 205px; 
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px !important;
  margin-left: 0px;
  margin-right: 0px;
  padding: 0px;
  border: 0px solid #000000;
}

/* Propriétés des paragraphes */

body 
{
 margin: 0; /* pour éviter les marges */
 text-align: center; /* pour corriger le bug de centrage IE */
 font-family : Trebuchet MS, Arial, Helvetica, sans-serif;
}
p
{
  font-size: 10pt;
  margin: 0px;
  padding: 0px;
  color: #080a0b;
}
.avertissement
{
  font-size: 8pt;
  margin: 0px;
  padding: 0px;
  color: #080a0b;
  text-align:justify;
  color: #e05a5a;
}
.titre
{
  font-size: 12pt;
  font-weight: bold;
  margin: 0px;
  padding: 0px;
  text-align: centre;
  color: #c8b392;
}
.menu
{
  font-size: 12pt;
  font-weight: bold;
  margin: 0px;
  padding: 0px;
  text-align: centre;
  color: #ffffff;
}
.err
{
  font-weight: bold;
  color: red;
}
.centre
{
  text-align: center;
}
.droite
{
  text-align: right;
}
.gauche
{
  text-align: left;
}
u
{
   text-decoration: none;
   border-bottom: 1px #FF9900 solid;
   border-left: 2px #FF9900 solid;
   padding-left: 2px;
}
br
{
  clear: left;
}
img
{
  border: 0px;
}

/* Propriétés des tableaux */

td
{
  font-family: Verdana;
  font-size: 10pt;
  margin: 0px;
  padding: 0px;
  text-align: center;
}
table
{
  margin: auto;
}
table.gauche
{
  margin: 0px;
}

/* Propriétés des liens */

/* Lien non souligné */
.ns 
{
  text-decoration: none;
}

/* Couleur des Liens */

a:link { color:#666666; }
a:visited { color:#666666; }
a:hover { color:#666666; }
a:active { color:#666666; }
a:focus { color:#666666; }

/* Info-Bulle personnalisée pour les liens normaux */

a.info2 {
   position: relative;
   color: #666666;
   text-decoration: none;
   border-bottom: 1px #FF9900 solid; /* on souligne le texte */
}
a.info2 span {
   display: none; /* on masque l'infobulle */
}
a.info2:hover {
   background: none; /* correction d'un bug IE */
   z-index: 3; /* on définit une valeur pour l'ordre d'affichage */

   cursor: help; /* on change le curseur par défaut en curseur d'aide */
}
a.info2:hover span {
   display: inline; /* on affiche l'infobulle */
   position: absolute;
   white-space: nowrap; /* on change la valeur de la propriété white-space pour qu'il n'y ait pas de retour à la ligne non-désiré */
   top: 30px; /* on positionne notre infobulle */
   left: 20px;
   background: white;
   color: black;
   padding: 3px;
   border: 1px solid #FF9900;
   border-left: 4px solid #FF9900;

}
a.info3 {
   position: relative;
   color: #666666;
   text-decoration: none;
   border-bottom: 1px #FF9900 solid; /* on souligne le texte */
}