<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* Style par dÃ©faut pour les liens sur fond sombre */
a {
    display: inline;
    color: #FFF; /* Couleur pour fond sombre */
    padding: 2em;
    text-decoration: none;
    font-family: verdana;
    font-size: 1em;
    font-style: normal;
    font-weight: normal;
}

a:hover {
    color: #FFAE00; /* Couleur au survol pour fond sombre */
}

/* Style pour les liens sur fond blanc */
a.white-background {
    color: #000; /* Couleur pour fond blanc */
}

a.white-background:hover {
    color: #FFAE00;
}

.imagepetite {
	max-width: 250px; /* Largeur maximale de l'image */
    width: 100%; /* Prend toute la largeur disponible jusqu'Ã&nbsp; 250px */
    height: auto; /* Garde les proportions de l'image */
}

.imagemoyenne {
	max-width: 1130px; /* Largeur maximale de l'image */
    width: 100%; /* Prend toute la largeur disponible jusqu'Ã&nbsp; 250px */
    height: auto; /* Garde les proportions de l'image */

}

.alignergaucheletexte {
  text-align: center;
}

.centrerletexte {
  text-align: left;
}
ul {
            color: #999999;
            font: 1.1em georgia, sans-serif;
            font-style: normal;
            font-weight: normal;
            text-align: center;
            list-style: inside;
}            
            li { 
            color: #999999;
            font: 1.1em georgia, sans-serif;
            text-align: center;
            list-style: inside;
}
 p {
            color: #c9bc94;
            font: italic normal 1.4em georgia, sans-serif;
            font-style: normal;
            font-weight: normal;
            text-align: center;
        }

        h1 {
            color: #fff;
            font-size: 3em; /* Utilisation de rem pour la taille responsive */
            text-align: center;
        }

        h2 {
            color: #000;
            font-size: 2em; /* Ajustement pour Ãªtre plus petit que h1 */
            font: italic normal georgia, sans-serif;
            text-align: center;
        }

        h3 {
            color: #000;
            font-size: 2em;
            text-align: center;
            color: #7D775C;
        }

        h4 {
            color: #fff;
            font-size: 2em; /* Ajustement pour Ãªtre plus petit que h3 */
        }

        h5 {
            color: #000;
            font-size: 1em; /* Taille de texte standard */
			    font-weight: normal;
			    text-align: center;
			   
        }

        h6 {
            color: #fff;
            font: 1.1em georgia, sans-serif;
			    font-weight: normal;
			    text-align: center; 
        }

.icon-container {
    display: flex;
    justify-content: center;
    gap: 1vw; /* Espace entre les icÃ´nes */
    flex-wrap: wrap; /* Permet aux icÃ´nes de passer Ã&nbsp; la ligne si nÃ©cessaire */
}

.card {
    position: relative;
    width: 6vw; /* Utilisation d'une unitÃ© relative pour la largeur */
    height: 6vw; /* Utilisation d'une unitÃ© relative pour la hauteur */
    max-width: 40px; /* Limite la largeur maximale */
    max-height: 40px; /* Limite la hauteur maximale */
    overflow: hidden;
}

.card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.img-back {
    opacity: 0; /* Masquer l'image de fond par dÃ©faut */
}

.card:hover .img-back {
    opacity: 1; /* Afficher l'image de fond au survol */
}

.card:hover .img-top {
    opacity: 0; /* Masquer l'image de devant au survol */
}



hr {
  border: none;
  border-top: 3px double #333;
  color: #333;
  overflow: visible;
  text-align: center;
  height: 5px;
}

hr::after {
  background: #fff;
  content: 'Â§';
  padding: 0 4px;
  position: relative;
  top: -13px;
}












        /* Media queries pour ajuster la taille des polices sur les Ã©crans plus petits */
        @media (max-width: 799px) {
			p {
               font-size: 1em; 
             }
			
			
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 2.1rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            h4 {
                font-size: 1.15rem;
            }
            h5 {
                font-size: 0.75rem;
            }
            h6 {
                font-size: 0.75rem;
            }
			a {
                font-size: 0.75rem;
            }
			
        }


</pre></body></html>