<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">a[class*="splash"] {
	text-decoration: none !important;
	border: none !important;
}

.image_legendee {
	display: inline-block;
	font-size: 0;
	border: solid 1px !important;
	
	overflow: hidden;
	position: relative;

	text-decoration: none !important;
	border: none !important;
}

/* Affichage d'un "?" sur les images avec legende */
.legende_wrapper:before {
	content: "?";
	position: absolute;
	bottom: 0px;
	left: 0px;
	background: rgba(255,255,255,0.75);
	color: black;
	width: 20px;
	height: 20px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	text-align: center;
	font-size: 10px;
	line-height: 20px;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
	opacity: 0.75;
}
.image_legendee:hover .legende_wrapper:before {
	opacity: 0;
}

.legende {
	font-size: 11px;
	position: relative;
	background-color: rgba(0,0,0,0.5);  
	color: #fff;
	z-index: 100;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
	width: auto;
	line-height: normal;
	text-align: center;
	padding: 2px;
}

.image_legendee:hover .legende {
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.legende_wrapper {
	position: absolute;
	left: 2px;
	top: 2px;
	overflow: hidden;
}
</pre></body></html>