/* Site 3 (ex style_3.css) — charger commun.css AVANT ce fichier */
:root {
  --accent: rgb(98,108,79);
  --bg: rgba(190,211,158,1);
  --h2-color: black;
  --menu-w: 215px;
  --submenu-w: 433px;
}

/* Module "choix" (grille de choix en niveaux de gris) — propre à ce site */
#choix { text-center: align; } /* déclaration invalide dans l'original, conservée à l'identique */

#choix img {
  filter: grayscale(100%); -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%); -o-filter: grayscale(100%);
}
#choix img:hover {
  filter: grayscale(0%); -webkit-filter: grayscale(0%); -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%); -o-filter: grayscale(0%);
}
#choix a, #choix a:hover, #choix img, #choix img:hover { background: rgba(190,211,158,0); }
