#slideshow {
	position: relative;
	width: 640px;
	height: 310px;
	padding: 15px;
	margin: 0 auto 2em;
	border: 1px solid #ddd;
	background: #FFF;
	/* CSS3 effects */
	background: linear-gradient(#FFF, #FFF 20%, #EEE 80%, #DDD);
	border-radius: 2px 2px 2px 2px;
	box-shadow: 0 0 3px rgba(0,0,0, 0.2);
}

#slideshow img {
	width: 640px;
	height: 310px;
}
 
#slideshow:before,
#slideshow:after {
	position: absolute;
	bottom:16px;
	z-index: -10;
	width: 50%;
	height: 20px;
	content: " ";
	background: rgba(0,0,0,0.1);
	border-radius: 50%;
	box-shadow: 0 0 3px rgba(0,0,0, 0.4), 0 20px 10px rgba(0,0,0, 0.7);
}
#slideshow:before {
	left:0;
	transform: rotate(-4deg);
}
#slideshow:after {
	right:0;
	transform: rotate(4deg);
}

/* gestion des dimensions et débordement du conteneur */
#slideshow .container {
	position:relative;
	width: 640px;
	height: 310px;
	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: 1500%;
	height: 310px;
	animation: slider 80s infinite;
}

/* 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%;
	box-shadow: 0 0 65px rgba(0,0,0, 0.5) inset;
}

/* styles de nos légendes */
#slideshow figcaption {
	position:absolute;
	left:0; right:0; bottom: 5px;
	padding: 20px;
	margin:0;
	border-top: 1px solid rgb(225,225,225);
	text-align:center;
	letter-spacing: 0.05em;
	word-spacing: 0.05em;
	font-family: Georgia, Times, serif;
	background: #fff;
	background: rgba(255,255,255,0.7);
	color: #555;
	text-shadow: -1px -1px 0 rgba(255,255,255,0.3);
}


@keyframes slider {

  0% { left: 0%; }
  6% { left: 0%; }

  7% { left: -100%; }
  12% { left: -100%; }

  13% { left: -200%; }
  18% { left: -200%; }

  19% { left: -300%; }
  24% { left: -300%; }

  25% { left: -400%; }
  30% { left: -400%; }

  31% { left: -500%; }
  36% { left: -500%; }

  37% { left: -600%; }
  42% { left: -600%; }

  43% { left: -700%; }
  48% { left: -700%; }

  49% { left: -800%; }
  54% { left: -800%; }

  55% { left: -900%; }
  60% { left: -900%; }

  61% { left: -1000%; }
  66% { left: -1000%; }

  67% { left: -1100%; }
  72% { left: -1100%; }

  73% { left: -1200%; }
  78% { left: -1200%; }  

  79% { left: -1300%; }
  84% { left: -1300%; }

  85% { left: -1400%; }
  100% { left: 0%; }

}

#timeline {
	position: absolute;
	background: #999;
	bottom: 15px;
	left: 15px;
	height: 1px;
	background: rgb(214,98,13);
	background: rgba(214,98,13,.8);
	width: 0;
	/* fonction d'animation */
	animation: timeliner 32s infinite;
}

@keyframes timeliner {
	0%, 7%, 13%, 19%, 25%, 31%, 37%, 43%, 49%, 55%, 61%, 67%, 73%, 79%, 85%, 100%	{ width: 0;		}
	6%, 12%, 18%, 24%, 30%, 36%, 42%, 48%, 54%, 60%, 66%, 72%, 78%, 84%		{ width: 640px;	}
}

.play_commands {
	/* positionnement en haut à droite */ 
	position: absolute;
	top: 25px; right: 25px;
	z-index: 10;
	/* dimensionnement des icônes */
	width: 22px;
	height: 22px;
	text-indent: -9999px;
	border:0 none;
	/* placez l'opacité à 1 si vous souhaitez voir les commandes */
	opacity: 0;
	/* préparation de transition sur opacicty et right */
	transition: opacity 1s, right 1s;
}
/* on décale play légèrement sur la gauche */
.play { right: 55px; cursor: default; }
 
/* création de l'icône pause avec 2 pseudos éléments */
.pause:after,
.pause:before {
	position: absolute;
	display: block;
	content: " ";
	top:0;
	width:38%;
	height: 22px;
	background: #fff;
	background: rgba(255,255,255,0.5);
}
.pause:after { right:0; }
.pause:before {	left:0; }
 
/* création de l'icône play avec des bordures */
.play {
	width: 1px; 
	height: 1px; 
	/* les transparentes forment la flèche */
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 20px solid #fff; 
	border-left: 20px solid rgba(255,255,255,0.5); 
	/* renseignez 1 pour voir l'icône de suite */
	opacity: 0;
}
 
/* apparition du bouton pause au survole */
/* apparition des boutons au focus */
#slideshow:hover .pause,
.play_commands:focus {
	opacity: 1;
	outline: none;
}

/* stopper les animation */
.sl_command:target ~ #slideshow .slider,
.sl_command:target ~ #slideshow figcaption,
.sl_command:target ~ #slideshow #timeline,
.sl_command:target ~ #slideshow .dots_commands li:first-child a:after {
	animation-play-state: paused;
}
 
/* redémarrer les animations */
#sl_play:target ~ #slideshow .slider,
#sl_play:target ~ #slideshow figcaption,
#sl_play:target ~ #slideshow #timeline,
#sl_play:target ~ #slideshow .dots_commands li:first-child a:after {
	animation-play-state: running;
}
 
/* switch entre les boutons */
.sl_command:target ~ #slideshow .pause 		{ opacity:0; }
#sl_play:target ~ #slideshow:hover .pause,
#sl_play:target ~ #slideshow .pause:focus 	{ opacity:1; }
.sl_command:target ~ #slideshow .play 		{ opacity:1; right: 25px; cursor: pointer; }
#sl_play:target ~ #slideshow .play 			{ opacity:0; right: 55px; cursor: default; }

#slideshow .commands {
	position: absolute;
	top: 45%;
	padding: 5px 13px;
	border-bottom:0;
	font-size: 1.3em;
	color: #aaa;
	text-decoration:none;
	background-color: #eee;
	background-image: linear-gradient(#fff,#ddd);
	text-shadow: 0 0 1px #aaa;
	border-radius: 50%;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
 
#slideshow .prev { left: -48px; }
#slideshow .next { right: -48px; }
 
#slideshow .commands { display:none; }
#slideshow .commands1 {	display: block; }

#slideshow .c_slider {
	position: absolute;
	left:0; top:0;
	width: 400%;
	height: 310px;
	/* multiple background */
	background: url(Photo/Concours_2018/Décalé/08.jpg) 0 0 no-repeat,
	            url(Photo/Concours_2018/Décalé/08.jpg) 640px 0 no-repeat,
	            url(Photo/Concours_2018/Décalé/08.jpg) 1280px 0 no-repeat,
	            url(Photo/Concours_2018/Décalé/08.jpg) 1920px 0 no-repeat,
	            url(Photo/Concours_2018/Décalé/08.jpg) 2560px 0 no-repeat,
	            url(Photo/Concours_2018/Décalé/08.jpg) 3200px 0 no-repeat,
	            url(Photo/Concours_2018/Décalé/08.jpg) 3840px 0 no-repeat,
	            url(Photo/Concours_2018/Décalé/08.jpg) 4480px 0 no-repeat,
	            url(Photo/Concours_2018/Décalé/08.jpg) 5120px 0 no-repeat,
	            url(Photo/Concours_2018/Décalé/08.jpg) 5760px 0 no-repeat,
	            url(Photo/Concours_2018/Décalé/08.jpg) 6400px 0 no-repeat,
	            url(Photo/Concours_2018/Décalé/08.jpg) 7040px 0 no-repeat,
	            url(Photo/Concours_2018/Décalé/08.jpg) 7680px 0 no-repeat,
	            url(Photo/Concours_2018/Décalé/08.jpg) 8320px 0 no-repeat,
	            url(Photo/Concours_2018/Décalé/08.jpg) 8960px 0 no-repeat,

	transition: background 1s;
}

/* on cache le slider */
.sl_i:target ~ #slideshow .slider									{ visibility: hidden }
/* on planque la 1ère pastille (cf. bonux suivant) */
.sl_i:target ~ #slideshow .dots_commands li:first-child a:after		{ display:none; }
/* pour afficher la 2ème pastille (cf. bonux suivant) */
.sl_i:target ~ #slideshow .dots_commands li:first-child a:before	{ display:block; }
 
/* lorsque on cible le premier slider */
/* on cache tous les "précédent" et "suivant" */
#sl_i1:target ~ #slideshow .commands								{ display: none; }
/* on affiche seulement deux flèches */
#sl_i1:target ~ #slideshow .commands1								{ display: block; }
/* correspond au décalage des images */
#sl_i1:target ~ #slideshow .c_slider								{ background-position: 0 0, 640px 0, 1280px 0, 1920px 0; }
/* on place la pastille tout à gauche */
#sl_i1:target ~ #slideshow .dots_commands li:first-child a:before	{ left:0; }
 
/* même procédé lorsqu'on cible le second slide */
#sl_i2:target ~ #slideshow .commands								{ display: none; }
#sl_i2:target ~ #slideshow .commands2								{ display: block; }
#sl_i2:target ~ #slideshow .c_slider								{ background-position: -640px 0, 0 0, 640px 0, 1280px 0; }
#sl_i2:target ~ #slideshow .dots_commands li:first-child a:before	{ left:18px; }
 
/* puis le 3ème */
#sl_i3:target ~ #slideshow .commands								{ display: none; }
#sl_i3:target ~ #slideshow .commands3								{ display: block; }
#sl_i3:target ~ #slideshow .c_slider								{ background-position: -1280px 0, -640px 0, 0 0, 640px 0; }
#sl_i3:target ~ #slideshow .dots_commands li:first-child a:before	{ left:36px; }
 
/* et enfin le 4ème */
#sl_i4:target ~ #slideshow .commands								{ display: none; }
#sl_i4:target ~ #slideshow .commands4								{ display: block; }
#sl_i4:target ~ #slideshow .c_slider								{ background-position: -1920px 0, -1280px 0, -640px 0, 0 0; }
#sl_i4:target ~ #slideshow .dots_commands li:first-child a:before	{ left:54px; }

#sl_i5:target ~ #slideshow .commands								{ display: none; }
#sl_i5:target ~ #slideshow .commands4								{ display: block; }
#sl_i5:target ~ #slideshow .c_slider								{ background-position: -1920px 0, -1280px 0, -640px 0, 0 0; }
#sl_i5:target ~ #slideshow .dots_commands li:first-child a:before	{ left:54px; }

#sl_i6:target ~ #slideshow .commands								{ display: none; }
#sl_i6:target ~ #slideshow .commands4								{ display: block; }
#sl_i6:target ~ #slideshow .c_slider								{ background-position: -1920px 0, -1280px 0, -640px 0, 0 0; }
#sl_i6:target ~ #slideshow .dots_commands li:first-child a:before	{ left:54px; }

#sl_i7:target ~ #slideshow .commands								{ display: none; }
#sl_i7:target ~ #slideshow .commands4								{ display: block; }
#sl_i7:target ~ #slideshow .c_slider								{ background-position: -1920px 0, -1280px 0, -640px 0, 0 0; }
#sl_i7:target ~ #slideshow .dots_commands li:first-child a:before	{ left:54px; }

#sl_i8:target ~ #slideshow .commands								{ display: none; }
#sl_i8:target ~ #slideshow .commands4								{ display: block; }
#sl_i8:target ~ #slideshow .c_slider								{ background-position: -1920px 0, -1280px 0, -640px 0, 0 0; }
#sl_i8:target ~ #slideshow .dots_commands li:first-child a:before	{ left:54px; }

#sl_i9:target ~ #slideshow .commands								{ display: none; }
#sl_i9:target ~ #slideshow .commands4								{ display: block; }
#sl_i9:target ~ #slideshow .c_slider								{ background-position: -1920px 0, -1280px 0, -640px 0, 0 0; }
#sl_i9:target ~ #slideshow .dots_commands li:first-child a:before	{ left:54px; }

#sl_i10:target ~ #slideshow .commands								{ display: none; }
#sl_i10:target ~ #slideshow .commands4								{ display: block; }
#sl_i10:target ~ #slideshow .c_slider								{ background-position: -1920px 0, -1280px 0, -640px 0, 0 0; }
#sl_i10:target ~ #slideshow .dots_commands li:first-child a:before	{ left:54px; }

#sl_i11:target ~ #slideshow .commands								{ display: none; }
#sl_i11:target ~ #slideshow .commands4								{ display: block; }
#sl_i11:target ~ #slideshow .c_slider								{ background-position: -1920px 0, -1280px 0, -640px 0, 0 0; }
#sl_i11:target ~ #slideshow .dots_commands li:first-child a:before	{ left:54px; }

#sl_i12:target ~ #slideshow .commands								{ display: none; }
#sl_i12:target ~ #slideshow .commands4								{ display: block; }
#sl_i12:target ~ #slideshow .c_slider								{ background-position: -1920px 0, -1280px 0, -640px 0, 0 0; }
#sl_i12:target ~ #slideshow .dots_commands li:first-child a:before	{ left:54px; }

#sl_i13:target ~ #slideshow .commands								{ display: none; }
#sl_i13:target ~ #slideshow .commands4								{ display: block; }
#sl_i13:target ~ #slideshow .c_slider								{ background-position: -1920px 0, -1280px 0, -640px 0, 0 0; }
#sl_i13:target ~ #slideshow .dots_commands li:first-child a:before	{ left:54px; }

#sl_i14:target ~ #slideshow .commands								{ display: none; }
#sl_i14:target ~ #slideshow .commands4								{ display: block; }
#sl_i14:target ~ #slideshow .c_slider								{ background-position: -1920px 0, -1280px 0, -640px 0, 0 0; }
#sl_i14:target ~ #slideshow .dots_commands li:first-child a:before	{ left:54px; }

#sl_i15:target ~ #slideshow .commands								{ display: none; }
#sl_i15:target ~ #slideshow .commands4								{ display: block; }
#sl_i15:target ~ #slideshow .c_slider								{ background-position: -1920px 0, -1280px 0, -640px 0, 0 0; }
#sl_i15:target ~ #slideshow .dots_commands li:first-child a:before	{ left:54px; }