/* Ajout Rotation Logo SLV ----------------------------------------------------*/
.dve_Logo {
    height: 100px ;
    width: 100px ;
    border-radius: 50%;
    transform: rotate(0deg);
    animation-name: dve_Logo;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  @keyframes dve_Logo {
    0% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(180deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
/* CSS génériques -------------------------------------------------------------*/
.dve-img {
  width: 160px ;
  margin-left: 5px ;
  margin-right: 5px ;
  border: 2px solid blue;
  border-radius: 15px ;
  box-shadow: 5px 10px 8px #888 ;
}
.dve-table-width100px {
  width: 100px ;
}
.dve-table-width200px {
  width: 200px ;
}
.dve-h2 {
  font-size: x-large ;
  color: yellow;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  margin: 20px 0px 10px 0px;
}