/* squelette.css */
/* Version 1.0 du 04-10-14 Rev 1 */

/* ############################################################ */
/*                                                              */
/*    CSS communs à toutes les pages du site.                   */
/*                                                              */
/* ############################################################ */

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

  body {
    background-image: url(../images/fond_site.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: 100% 229px;
    background-size: cover; /* version standardisée */  
    color: black;
    font-family: "Comic Sans MS", "Trebuchet MS", serif;
    font-size: 12px;
    max-width: 1280px;
    min-width: 1024px;
    margin: auto;
    }
    
  #banniere { height: 180px;
    background-repeat: no-repeat;
    background-color: #ffffff;
    }
    
  #banniere h1 { text-indent: -5000px;
    line-height: 0pt;
    }
    
/* Inclusion des bannières hauteur : 1280 x 180px */
  .ban_fond_1 { background-image: url(../images/banniere_1.jpg);
    }
    
  .ban_fond_2 { background-image: url(../images/banniere_2.png);
    }

  .ban_fond_3 { background-image: url(../images/banniere_3.png);    
    }

  .ban_fond_4 { background-image: url(../images/banniere_4.png);    
    }    

  .ban_fond_5 { background-image: url(../images/banniere_5.png);    
    } 
    
  .ban_fond_6 { background-image: url(../images/banniere_6.png);    
    } 
    
    
/* ############################################################ */
/*    css pour les menus du site					            */
/* ############################################################ */

#menus ul, #menus li, #menus span, #menus a {
  margin: 0;
  padding: 0;
  position: relative;
}

#menus {
  height: 49px; /* hauteur des menus fermés */
  width: 1280px;
  border-radius: 5px 5px 0 0;
  border-bottom: 2px solid #7d7d7d;
  background-color: #f3f3f3;/* fond derrière les menus */
}

#menus:after, #menus ul:after {
  content: '';
  display: block;
  clear: both;
}

#menus a {
  color: #000;
  display: inline-block;
  font-family: Helvetica, Arial, Verdana, sans-serif;
  font-size: 12px;
  line-height: 49px;
  padding: 0 20px;
  text-decoration: none;
  background-color: #fefefe;
}

#menus ul {
  list-style: none;
}

#menus > ul {
  float: left;
}

#menus > ul > li {
  float: left;
}

#menus > ul > li > a {
  background-color: #f3f3f3;
  color: #7d7d7d;
  font-size: 14px;
}

#menus > ul > li:hover:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  /* Dessin du triangle sur les menus */
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #7d7d7d;
  margin-left: -10px;
}

#menus > ul > li:first-child > a {
  border-radius: 10px 0 0 0; /* Extrémités de la barre des menus avec coin arrondi */
}

/* La barre de menus apparait quand on passe dessus */
#menus > ul > li:hover > a {
  background-color: #ececec;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
}

#menus .sous_menu {
  z-index: 1;
}

#menus .sous_menu:hover > ul {
  display: block;
}

#menus .sous_menu ul {
  display: none;
  position: absolute;
  width: 220px;
  top: 100%;
  left: 0;
}

#menus .sous_menu ul li {
  margin-bottom: -1px;
}

#menus .sous_menu ul li {
  border-bottom: 1px dotted #cccccc;
}

#menus .sous_menu ul li a {
  background-color: #9d9d9d;
  border-bottom: 1px dotted #cccccc;
  font-size: 14px;
  display: block;
  line-height: 120%;
  padding: 16px;
  color: #ffffff;
}

#menus .sous_menu ul li:hover a {
  background-color: #7a7a7a;
  border-bottom: 1px dotted #777777;
  border-bottom: 1px dotted #cccccc;
}

#menus .sous_menu .sous_menu:hover > ul {
  display: block;
}

#menus .sous_menu .sous_menu ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
}

#menus .sous_menu .sous_menu ul li {
  border-bottom: 1px dotted #cccccc;
}

#menus .sous_menu .sous_menu ul li a {
  background-color: #9d9d9d;
  border-bottom: 1px dotted #cccccc;
}

#menus .sous_menu .sous_menu ul li a:hover {
  background-color: #7a7a7a;
  border-bottom: 1px dotted #777777;
  border-bottom: 1px dotted #cccccc;
}    
      

/* ############################################################ */
/*    css pour le pied des pages du site					    */
/* ############################################################ */		

  #pied { clear: both;
    color: white;
    background-color: rgba(0, 0, 0, 0.1);
    height: 2.4em;
    min-height:40px;
    }

  #pied .vhtml5 { margin-right: 0.5em;
    padding-top: 5px;
    width: 31px;
    height: 31px;
    display: block;
    float: right;  
    opacity: 0.5;  
    }
    
  #pied .vcss { margin-right: 0.5em;
    padding-top: 5px;
    width: 88px;
    height: 31px;
    display: block;
    float: right;  
    opacity: 0.5;   
    }
    
  #pied li { padding-top: 10px;
    padding-bottom: 10px;
    display: inline;
    float: right;
    }

  #pied a { text-decoration: none;
    padding-right: 1em;
    color: #333333;
    font-size: small;
    font-weight: bold;
    }

  #pied a:hover { text-decoration: underline;
    color: #ffffff;
    }
    

/* ############################################################ */
/*                              FIN                             */
/* ############################################################ */
