.imageslide
{
	width: 100%;
	height: auto;
}
#slideshow 
{
	position: relative;
	width: 100%;
	height: 426px;
	margin: 0 auto 2em;
	background: #FFF;
	/* CSS3 effects */
	background-color: #FFFFFF;
}
/* gestion des dimensions et débordement du conteneur */
#slideshow .container {
	position:relative;
	width: 100%;
	height: 426px;
	overflow: hidden;
}
/* on prévoit un petit espace gris pour la timeline */
#slideshow .container:after {
	position:absolute;
	bottom: 0; left:0;
	content: " ";
	width: 100%;
	height: 1px;
	background: #999;
}
/* 
   le conteneur des slides
   en largeur il fait 100% x le nombre de slides
*/
#slideshow .slider {
	position: absolute;
	left:0; top:0;
	width: 400%;
	height: 426px;
}

/* annulation des marges sur figure */
#slideshow figure {
	position:relative;
	display:inline-block;
	padding:0; margin:0;
}
/* petit effet de vignette sur les images */
#slideshow figure:after {
	position: absolute;
	display:block;
	content: " ";
	top:0; left:0;
	width: 100%; height: 100%;
}
/* styles de nos légendes */
#slideshow figcaption {
	position:absolute;
	left:0; right:0; bottom: 5px;
	padding: 20px;
	margin:0;
	border-top: 0;
	text-align:center;
	letter-spacing: 0.05em;
	word-spacing: 0.05em;
	font-family: 'CaviarDreamsBold';
	background: #fff;
	background: rgba(0,181,184,0.8);
	color: #FFF;
}
/* fonction d'animation, n'oubliez pas de prefixer ! */
@keyframes slider {
	0%, 20%, 100%	{ left: 0 }
	25%, 45%		{ left: -100% }
	50%, 70%		{ left: -200% }
	75%, 95%		{ left: -300% }
}
/* complétez le sélecteur : */
#slideshow .slider {
	/* ... avec la propriété animation */
	animation: slider 32S infinite;
}
/*timeline*/
#timeline {
	position: absolute;
	background: #999;
	bottom: 10px;
	height: 5px;
	background: rgb(255,255,255);
	background: rgba(255,255,255,.8);
	width: 0;
	/* fonction d'animation */
	animation: timeliner 32s infinite;
}
@keyframes timeliner {
	0%, 25%, 50%, 75%, 100%	{ width: 0;		}
	20%, 45%, 70%, 90%		{ width: 640px;	}
}
/*Animation de la légende*/
@keyframes figcaptionner {
	0%, 25%, 50%, 75%, 100%						{ bottom: -55px;	}
	5%, 20%, 30%, 45%, 55%, 70%, 80%, 95%		{ bottom: 5px;		}
}
/* ajouter à l'élément : */
#slideshow figcaption {
	/* ... la propriété animation */
	animation: figcaptionner 32s infinite;
}