
@-webkit-keyframes slidy {
0% { left: 0%; }
10% { left: 0%; }
20% { left: -100%; }
30% { left: -100%; }
40% { left: -200%; }
50% { left: -200%; }
60% { left: -300%; }
70% { left: -300%; }
80% { left: -400%; }
90% { left: -400%; }
}
@keyframes slidy {
0% { left: 0%; }
10% { left: 0%; }
20% { left: -100%; }
30% { left: -100%; }
40% { left: -200%; }
50% { left: -200%; }
60% { left: -300%; }
70% { left: -300%; }
80% { left: -400%; }
90% { left: -400%; }}



* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
figure { 
  margin: 0; background: none /*#101010*/;
  font-family: Istok Web, sans-serif;
  font-weight: 100;
}
div#captioned-gallery { 
  width: 100%; overflow: hidden; 
}
figure.slidertg { 
  position: relative; width: 500%;
  font-size: 0; -webkit-animation: 30s slidy infinite; animation: 30s slidy infinite; 
}
figure.slidertg figure { 
  width: 20%; height: auto;
  display: inline-block;  position: inherit; 
}
figure.slidertg img { width: 100%; height: auto; }
figure.slidertg figure figcaption { 
  position: absolute; bottom: 0;
  background: rgba(0,0,0,0.4);
  color: #fff; width: 100%;
  font-size: 2rem; padding: .6rem; 
}
