@keyframes autoslide {
	0% { left: 0%; }
	11.5% { left: 0%; }
	14.2% { left: -100%; }
	25.7% { left: -100%; }
	28.4% { left: -200%; }
	39.9% { left: -200%; }
	42.6% { left: -300%; }
	54.7% { left: -300%; }
	56.8% { left: -400%; }
	68.3% { left: -400%; }
	71% { left: -500%; }
	82.5% { left: -500%; }
	85.5% { left: -600%; }
	96.7% { left: -600%; }
	100% { left: -700%; }
	}

* {
	box-sizing: border-box;
	}

figure { 
	margin: 0; background: #101010;
	font-family: Arial;
	font-weight: 100;
	}

div#captioned-gallery { 
	width: 500px;
	height:500px;
	overflow: hidden; 
	}
	
figure.slider { 
	position: relative;
	width: 800%;
	font-size: 0;
	animation: 60s autoslide infinite; 
	}
	
figure.slider figure { 
	width: 12.5%; height: auto;
	display: inline-block;  position: inherit; 
	}
	
figure.slider img { width: 100%; height: auto; }

figure.slider figure figcaption { 
	position: absolute; bottom: 0;
	background: rgba(0,0,0,0.4);
	color: #fff; width: 100%;
	font-size: 2rem; padding: .6rem; 
	}
