/* style du site */
body
{
   width: 800px;  /* largeur du site en pixel, 800, c'est le minimum, ne pas oublier le ; à la fin de chaque ligne*/
   margin: auto;
   margin-top: 20px;  /* marge en haut */
   margin-bottom: 20px;  /* marge en bas */
   background-color: #ffd57b;  /* couleur d'arrière plan par défaut */
   background-image: url("zapotec.jpg");  /* image d'arrière plan*/
   background-attachment: fixed;  /* définit si le fond défile avec la page*/
   background-position: top center;  /* définit l'alignement du fond de page */
   font-family: "Times new roman",  Arial, "Arial Black", Times, serif;  /* Ne pas toucher */
}

/* Style de l'en-tête */
#en_tete
{
   width: 800px;
   height: 200px;
   background-image: url("baniere_internet.jpg");
   background-repeat: no-repeat;
   margin-bottom: 10px;
   color: #e5e5e5;  /* Couleur de Police */
   font-size: 1.1em;  /* Taille de Police */
}

/* Style du menu */
#menu
{
   float: left;  /* définit si le menu est à gauche ou à droite */
   width: 150px;
   height: 315px;
   background-color: #ffc000;
   border-left: 2px inset white;  /* taille des borbures gauche, haut droite et bas */
   border-top: 2px outset white;
   border-right: 2px inset white;
   border-bottom: 2px outset white;
}

.element_menu
{
   background-repeat: repeat-x;
   margin-bottom: 20px;
}

.element_menu h3
{    
   color: black;
   text-align: right;
}

.element_menu ul
{
   padding: 2px;
   padding-left: 20px;
   margin: 5px;
   margin-bottom: 5px;
   color: #437f04;
   font-weight: bold;
   font-variant: small-caps;
}

.element_menu li
{
	padding: 2px;
	font-weight: bold;
	font-variant: small-caps;
	color:#02089d;
}

.element_menu a
{
	color: #1b007e;
}

.element_menu a:hover
{
	background-color: #a5aef9;
	color: #c0403e;
}

/* Style du contenu du site */
#corps  /* Style général du site */
{
   width: 620px;
   margin-left: 165px;
   margin-bottom: 20px;
   padding: 5px;
   color: #f3d273;
   text-align: justify;
   border-left: 2px inset white;
   border-top: 2px outset white;
   border-right: 2px inset white;
   border-bottom: 2px outset white;
   background-color: #fbf6cb;
}

#corps h1  /* Style des grands titres */
{
   color: #b70024;
   font-size: 2em;
   text-align: center;
   font-style: italic;
   font-variant: small-caps;
}

#corps h2  /* Style des sous-titres */
{
   height: 10px;
   background-image: url("images/titre.png");
   background-repeat: no-repeat;
   padding-left: 30px;
   color: #ef6d00;
   text-align: left;
   font-style: italic;
   font-variant: small-caps;
   font-size:1.1 cm;
}
#corps h3  /* second Style de sous-titres */
	
{	color: #b70024;
	font-family: monotype corsiva;
   font-size: 3em;
   text-align: center;
   font-style: italic;
   font-variant: small-caps;


}
#corps p  /* Style des paragraphes */
{
   font-size: 1.1em;
   margin-left: 5px;
   margin-right: 5px;
   color: #0a710a;
}

#corps p1 /* Style des paragraphes */
{
   font-size: 1.1em;
   margin-left: 5px;
   margin-right: 5px;
   color: #0a710a;
}






#corps table /* Le tableau en lui-même */
{
   margin: auto; /* Centre le tableau */
   border: 4px outset brown; /* Bordure du tableau avec effet 3D */
   border-collapse: collapse; /* Colle les bordures entre elles */
}

#corps th /* Les cellules d'en-tête */
{
   background-color: #f5c765;
   color: #924e24;
   text-align: center;
   font-size: 1.1em;
   font-family: Arial, "Arial Black", Times, "Times New Roman", serif;
}

#corps td /* Les cellules normales */
{
	background-color: #f5c765;
   border: 2px solid brown;
   font-family: "Comic Sans MS", "Trebuchet MS", Times, "Times New Roman", serif;
   color:#924e24;
   text-align: center; /* Tous les textes des cellules seront centrés*/
   padding: 5px; /* Petite marge intérieure aux cellules pour éviter que le texte touche les bordures */
}

#corps span
{
   color : red;
   text-decoration : underline;
   cursor: help;
}

#corps a  /* style et position des photos */
{
   color:#b70024;
   margin: 20px;
}

#corps b  /* style et position des photos */
{
   color:#b70024;
   margin: 150px;
}

#corps c  /* style et position des photos */
{
   color:#b70024;
   margin: 250px;
}

#corps  fieldset
{
	color: #b70024; /* couleur texte devis */
}

/* Style du pied de page */
#pied_de_page
{
 /*   width: 800px;
   height: 100px; */
   padding: 5px;
   text-align: center;
   background-color: #fbf6cb;
   color: #0a710a;
   font-variant: small-caps;
   border-left: 2px inset white;
   border-top: 2px outset white;
   border-right: 2px inset white;
   border-bottom: 2px outset white;
   font-weight: bold;
}

#pied_de_page a
{
   color: #0a710a;
}