@charset "UTF-8";

/* =========================
   BASE (stable, minimal)
   ========================= */

/* Box sizing global : évite les surprises de largeur */
*, *::before, *::after { box-sizing: border-box; }

/* Médias fluides */
img, object, embed, video { max-width: 100%; height: auto; }
.ie6 img { width:100%; } /* legacy */

/* Page */
body{
  background-color:#FFF;
  margin-left:25px;
  margin-right:25px;
  margin-top: 0;
  margin-bottom: 0;
  font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

/* Exposants */
sup{
  font-size: 70%;
  line-height: 0;
  vertical-align: super;
}

/* Footer */
.footer{
  text-align:center;
  font-size: 0.9rem;
}

/* Utilitaires anciens */
.FlotteDroite{ float:right; }
.FlotteGauche{ float:left; padding-right:5px; }

/* Clignotant (si tu l’utilises encore) */
.image-clignote{
  animation-duration:.8s;
  animation-name:clignoter;
  animation-iteration-count:infinite;
  transition:none;
}
@keyframes clignoter{
  0%{opacity:1;}
  40%{opacity:0;}
  100%{opacity:1;}
}