.banniere{
  position: relative;
  /*
    Le calcule du pourcentage du padding-bottom est :
    Hauteur de l'image / Largeur de l'image * 100
    Pour cet exemple, nous utilisons des images 700x350px donc :
    700 / 350 * 100 = 50
  */
  margin-top: 0!important;  
  padding-bottom:33%;
  /* page de hauteur car la hauteur sera créée avec le padding */
  overflow: hidden;
}




.banniere:hover .banniere_suivant , .banniere:hover .banniere_precedent{
  -webkit-opacity:1;
  -khtml-opacity:1;
  -moz-opacity:1;
  -ms-opacity:1;
  -o-opacity:1;
  opacity:1;
  filter:alpha(opacity=100);
  -webkit-transition:opacity 0.3s ease;
  -khtml-transition:opacity 0.3s ease;
  -moz-transition:opacity 0.3s ease;
  -ms-transition:opacity 0.3s ease;
  -o-transition:opacity 0.3s ease;
  transition:opacity 0.3s ease;
}

.banniere img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100;
  z-index:1;
}