/* ceci est le fichier permettant de definir les differents formats utilises dans le designe du site */
/*---------------------------------------------------
Formatage general
------------------------------------------------------*/

body
{
   width: 100%;
   margin: auto; /* Pour centrer notre page */
   margin-top: 5px; /* Pour éviter de coller avec le haut de la fenêtre du navigateur. Essayez d'enlever pour voir ! */
   margin-bottom: 10px;    /* Idem pour le bas du navigateur */
   background-color: green; /* Une petite image de fond pour éviter d'avoir un vieux fond blanc :p */
}
#text_eng  /* formatage texte anglais premiere page - Selection de la langue */
{
   border: none; 
   width: 40%;
   height: 270px;
   float: left;
   margin-bottom: 10px;
   margin-left: 40px;
   margin-right: 40px;
   background-color: green;
}
#text_fr  /* formatage texte francais premiere page - Selection de la langue */
{
   border: none; 
   width: 40%;
   height: 270px;
   float: right;
   margin-bottom: 10px;
   margin-left: 40px;
   margin-right: 40px;
   background-color: green;
}
#en_tete_lang  /* En-tete utilise sur la premiere page -  Selection de la langue */
{
   width: 100%;
   height: 100px;
   background-image: url("images/entete.jpg");
   background-position: center;
   background-repeat: no-repeat;
   margin-bottom: 5px;
   border-bottom: 0px solid black;
}
#en_tete  /* En-tete utilise sur chaque page */
{
   width: 100%;
   height: 100px;
   background-image: url("images/entete.jpg");
   background-position: center;
   background-repeat: no-repeat;
   margin-bottom: 5px;
   border-bottom: 1px solid black;
}
#menu_sup  /* definit la liste des choix possibles sur chaque page, en dessous de l'en-tete  */
{
   width: 100%;
   height: 23px;
   border-bottom: 1px solid black;
   margin-top: 0px;
   margin-bottom: 0px;
   background-color: green;
   padding-bottom: 5px;
}
#menu_gauche
{
   width: 20%;
   height: 399px;
   float:left;
   overflow:auto;
   margin-top: 0px;
   margin-bottom: 0px;
   background-color: #009000;
   border-bottom: 1px solid black;
}
#fenetre
{
   width: 79.3%;
   height: 399px;
   margin-top: 0px;
   margin-bottom: 0px;
   float: right;
   background-color: #009000;
   overflow:auto;
   border-right: 1px solid black;
   border-bottom: 1px solid black;
   padding-left: 5px;
}
#fenetrepleine
{
   width: 100%;
   height: 399px;
   margin-top: 0px;
   margin-bottom: 0px;
   float: right;
   background-color: #009000;
   overflow:auto;
   border-bottom: 1px solid black;
   padding-left: 5px;
}
#footer
{
   width: 100%;
   height: 20px;
   clear: both; /* pour annuler les positions flottantes des fenetre, fenetrepleine et menu_gauche */
   bottom: 5px;
   background-color: #008000;
   padding-top:2px;
}
.homepagetext:first-letter
{
   font-size: 36px;
}
.homepagetext
{
   font-family: "Times New Roman", Arial, Verdana, serif;
   text-align: center;
   font-style: italic;
   text-indent: 0px;
   color: black;
   font-size: 24px;
}
.menu_gauche_liste
{
   font-family: Arial, "Times New Roman", Verdana, serif;
   text-align: left;
   text-indent: 0px;
   color: black;
   font-size: 12px;
   font-weight: bold;
   text-decoration: none;
   list-style-image: url("./images/feracheval.jpg");
}
.menu_gauche_liste_actif
{
   font-style: italic;
   text-decoration: underline;
}
.texte_menu_sup
{
   font-family: "Times New Roman", Arial, Verdana, serif;
   text-align: center;
   text-indent: 0px;
   color: yellow;
   font-size: 18px;
   text-decoration: none;
}
.texte_menu_sup_actif
{
   font-style: italic;
   text-decoration: underline;
}
.textpetit
{
   font-family: "Times New Roman", Arial, Verdana, serif;
   text-align: center;
   font-style: italic;
   text-indent: 0px;
   color: yellow;
   font-size: 12px;
}
.textpetit
{
   font-family: "Times New Roman", Arial, Verdana, serif;
   text-align: center;
   font-style: italic;
   text-indent: 0px;
   color: yellow;
   font-size: 12px;
}
.centre
{
   font-family: "Times New Roman", Arial, Verdana, serif;
   text-align: center;
   font-style: italic;
   text-indent: 0px;
   color: black;
   font-size: 18px;
}
h2
{
   font-family: "Maxine Script", Arial, Verdana, serif;
   text-align: center;
   font-style: normal;
   text-indent: 5px;
   color: yellow;
   font-size: 36px;
}
h3
{
   font-family: "Times New Roman", Arial, Verdana, serif;
   text-align: left;
   font-style: normal;
   text-indent: 5px;
   color: #F08000;
   font-size: 18px;
}
h4
{
   font-family: "Times New Roman", Arial, Verdana, serif;
   text-align: center;
   font-style: normal;
   text-indent: 5px;
   color: #F08000;
   font-size: 12x;
}
table
{
   margin: auto; /* Pour centre le tableau...*/
   border-collapse: collapse;
   border: 1px solid black;
   font-family: "Times New Roman", Arial, Verdana, serif;
   text-align: left;
   font-style: normal;
   text-indent: 3px;
   color: black;
   font-size: 12px;
}
caption
{
   margin: auto;
   border-collapse: collapse;
   border: 1px solid black;
   font-family: "Times New Roman", Arial, Verdana, serif;
   font-style: italic;
   text-indent: 5px;
   color: black;
   font-size: 14px;
}
td
{
   border: 1px solid black;
}
a
{
   text-decoration: none;
   color: yellow;
}
a:hover
{
  text-decoration: underline;
}
a img /* pour supprimer le cadre autour des images qui servent de lien */
{
   border: none;
}

