*
{
margin:0;
padding: 0;
}
body/* fluide + contient l'image de fond encadrée */
{
width:80%;
margin: auto;
font-size: medium;
font-family: arial;
color:black;
background-color: black;
text-align: justify;
}
#conteneur/* l'image n'est pas en fond pour éviter le déroulement des autres éléments sur elle*/
{
border: 2px solid black; 
width:1000px;
margin: auto;/* pour centrer le bloc horizontalement.*/
margin-top: 20px;
text-align: justify;
position: relative;/* pour pouvoir placer tt le contenu en absolute: La position de l'élément est fixée relativement à un élément parent.*/
}
a
{
   text-decoration: underline; /* Le lien deviendra souligné quand on pointera dessus */
   color: black;
   font-weight: bold;
}
body a:hover /* Quand le visiteur pointe sur le lien */
{
   text-decoration: underline; /* Le lien deviendra souligné quand on pointera dessus */
   color: black;
   font-weight: bold;
   background-color: rgb(255,102,51); 
   
}
p
{
margin-top:1.5em;
}
ul#navigation {  /*Ici , c'est ma configuration, à vous de la changer */
height : 20px;
width: 800px;
list-style-type : none; /* Car sinon les puces se placent n'importe où */
position: absolute;
left: 15px;
right: 5px;
top:25px;
background-color: black;
}
ul#navigation li.bouton_gauche {
float : left;
padding : 0,5em; 
}
ul#navigation li.bouton_droit {
float : right;
padding : 0,5em; 
}

ul#navigation a {
color : rgb(255,102,51);
font-weight: bold;
text-decoration : none;
padding : 0.9em; 
}
ul#navigation a:hover { margin: 0.1em;   text-decoration: underline; /* Le lien deviendra souligné quand on pointera dessus */
   color: rgb(51,51,0);
   font-weight: bold;
   background-color: rgb(255,102,51);}
.orange
{
color: rgb(255,102,51);
}
.grey
{
color: rgb(102,102,102);
font-weight: bold;
}
#en_tete
{
font-family: arial;
position: absolute;
right: 15px;
top: 1px;
color: black;
font-weight: bold;
}
.h4
{
font-size: large;
font-weight: bold;
}
.h3
{
font-size: X-large;
font-weight: bold;
color: rgb(255,102,51);
}
#corps1
{
position: absolute;
width: 1000px;
top: 150px;
color: black;
text-align: center;
}

#corps2
{
position: absolute;
left: 45px;
width: 650px;
top: 285px;
text-align: left;
color: black;
}

#corps3
{
position: absolute;
left: 45px;
width: 660px;
top: 350px;
text-align: left;
color: black;
font-style: italic;
font-size: small;
}
#corps3 a:hover 
{  /* Le lien deviendra souligné quand on pointera dessus */
   color: black;
   font-weight: bold;
   background-color: rgb(255,102,51);font-size: small; }
#corps4
{
position: absolute;
width: 800px;
right: 35px;
top: 500px;
font-weight: bold;
text-align: right;
background-color: black;
}
#corps4 a
{
background-color: black;
color: rgb(255,102,51);
text-decoration: none;
margin-right: 5px;
font-weight: bold;
}
#corps4 a:hover 
{  /* Le lien deviendra souligné quand on pointera dessus */
   color: black;
   font-weight: bold;
   background-color: rgb(255,102,51);}
#pied_de_page
{
position: absolute;
width: 800px;
left: 155px;
top: 718px;
font-size: small;
text-align: center;
font-weight: bold;
}


