

#caroussel{
	width:100%;
	/* width:530px; */
	overflow:hidden;
	display:flex;
	justify-content:center;/*pour centrer les img dans le conteneur*/
}


#caroussel .images{
	display:flex;
	width:530px;
	animation-delay:10s;
	animation-duration:50s;
	animation-name:mesImages;	
	animation-iteration-count:infinite;/*tourne en boucle l'animation */
}

@keyframes mesImages{
	0%{
		transform:translateX(0);
	}
	14%{
		transform:translateX(-530px);
	}
	28%{
		transform:translateX(-1060px);
	}
	43%{
		transform:translateX(-1590px);
	}
	57%{
		transform:translateX(-2120px);
	}
	71%{
		transform:translateX(-2650px);
	}
	86%{
		transform:translateX(-3180px);
	}
	100%{
		transform:translateX(0);
	}
}


.photosympa{
	position:relative;
	margin-left:1590px;
	width:530px;
	top:0;
	display:flex;
}

.legendesympa{
	position:absolute;
	width:100%;	
	left:1590px;
	text-align:center;
	font-family: 'Nobile', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 15pt;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  bottom: 20px;   
  opacity: 1;
}