/* w3-mini.css — remplace la dependance a www.w3schools.com/w3css/4/w3.css,
   qui renvoie 403 (hotlinking bloque) et laissait donc les accordeons ouverts
   en permanence et les boutons sans style.

   Ne contient que les 5 classes reellement utilisees sur le site :
   w3-button, w3-block, w3-left-align, w3-hide, w3-show.
   w3-hide et w3-show sont fonctionnelles : elles pilotent l'ouverture des
   panneaux via myFunction(). */

.w3-button {
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

.w3-button:hover {
    color: #000;
    background-color: #ccc;
}

.w3-block {
    display: block;
    width: 100%;
}

.w3-left-align {
    text-align: left !important;
}

.w3-hide {
    display: none !important;
}

.w3-show {
    display: block !important;
}
