@keyframes autoslide {
	0% { left: 0%; }
	10% { left: 0%; }
	12.5% { left: -100%; }
	22.5% { left: -100%; }
	25% { left: -200%; }
	35% { left: -200%; }
	37.5% { left: -300%; }
	47.5% { left: -300%; }
	50% { left: -400%; }
	60% { left: -400%; }
	62.5% { left: -500%; }
	72.5% { left: -500%; }
	75% { left: -600%; }
	85% { left: -600%; }
	87.5% { left: -700%; }
	97.5% { left: -700%; }
	100% { left: -800%; }
	}

* {
	box-sizing: border-box;
	}

figure { 
	margin: 0; background: #101010;
	font-family: Arial;
	font-weight: 100;
	}

div#captioned-gallery { 
	width: 250px;
	height:250px;
	overflow: hidden; 
	}
	
figure.slider { 
	position: relative;
	width: 900%;
	font-size: 0;
	animation: 60s autoslide infinite; 
	}
	
figure.slider figure { 
	width: 11.111%; 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; 
	}
