div.socialtags {
	margin: 2px 0 0px 0;
	padding: 0;
	clear:both;
}

.socialtags ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    /* Ajoutez ces propriétés pour forcer l'alignement */
    align-items: center; /* Aligne verticalement les éléments */
    justify-content: flex-start; /* Aligne horizontalement à gauche */
}

.socialtags ul li {
    display: inline-flex; /* Remplacez inline-block par inline-flex */
    list-style-type: none;
    margin: 1px 5px 1px 0;
    padding: 1px;
    vertical-align: middle;
    /* Ajoutez une largeur minimale pour éviter l'effondrement */
    min-width: 32px;
    height: 32px; /* Correspond à la hauteur de l'image */
}
.socialtags img {
	float: none;
	width: auto;
	height: 32px;
	border: 0;
	margin: 0;
	padding: 0;
}

.socialtags-hovers {
	opacity: .4;
	filter: alpha(opacity=40);
}
.socialtags-hovers:hover {
	opacity: 1;
	filter: alpha(opacity=100);
}
