/* CSS Document */
/* CSS 1 et CSS 2*/
/* reference au balise et propriétés CSS : http://dicolive.media-box.net/docCSS/css.php?orderByType=1*/

/*Mise en forme du menu pour chaque page appelée appartenant au site officiel et users*/

/*les menus"*/
.menu {
position: relative;
width: 184px;
background-color: #00A2E8;
margin-left : 3px;
}

/*ligne du menu*/
.menu  dt,dd, ul, li {
position: relative;
list-style-type: none;
margin: 0;
padding: 0;
font-family:  arial;
font-size: 12px;
font-weight: normal;
}

/*ecriture ligne menu*/
.menu a{
  color: white;
  display: block;
  text-align: right;
  text-decoration : none;
  width: 184px;
  border-bottom: 1px solid gray;
  border-color : white;
}

/*ecriture ligne menu quand l'on passe dessus*/
.menu a:hover {
background-color: #ffffff;
color: black;
}

/*dernier ligne menu*/
.menuDernier {
width: 184px;
background-color: #00A2E8;
margin-left : 3px;
}

/*derniere ligne menu*/
.menuDernier dt, dd, ul, li {
list-style-type: none;
position: relative;
margin: 0;
padding: 0;
font-family:  arial;
font-size: 12px;
font-weight: normal;
}

/*ecriture derniere ligne menu*/
.menuDernier a{
  color: white;
  display: block;
  text-align: right;
  text-decoration : none;
  width: 184px;
}

/*ecriture derniere ligne menu quand l'on passe dessus*/
.menuDernier a:hover {

background-color: #ffffff;
color: black;
}

/* sous-menu*/
.sMenu{
position: absolute;
z-index: 100;
left: 186px;
font-size: 11px;   /*saloperie de IE */
width: 170px;
display :none;
background-color : blue;
margin-top:-16px;
width : 170px;
border: 2px solid gray;
border-color : #D1E1E8;
background-color : white;
}

/* ecriture sous-menu*/
.sMenu a {
color:white;
text-align: left;
text-decoration :none;
width: 170px;
background-color : #00A2E8;
display : block;
font-family: arial;
font-size: 11px;
font-weight: normal;
}

/* ecriture sous-menu lorsqu'on passe dessus*/
.sMenu a:hover {
background-color : #ffffff;
color : black;
}
