@keyframes slidy {
0% { left: 0%; }
20% { left: 0%; }
25% { left: -100%; }
45% { left: -100%; }
50% { left: -200%; }
70% { left: -200%; }
75% { left: -300%; }
95% { left: -300%; }
100% { left: -400%; }
}
div#captioned-gallery figure { 
  margin: 0; background: #101010;
  font-weight: 100;
}
div#captioned-gallery { 
  width: 100%; overflow: hidden; 
}
div#captioned-gallery figure.slider { 
  position: relative; width: 500%;
  font-size: 0; animation: 30s slidy infinite; 
}
div#captioned-gallery figure.slider figure { 
  width: 20%; height: auto;
  display: inline-block;  position: inherit; 
}
div#captioned-gallery figure.slider img { width: 100%; height: auto; }
div#captioned-gallery figure.slider figure figcaption { 
  position: absolute; bottom: 0;
  background: rgba(0,0,0,0.5);
  color: #fff; width: 100%;
  font-size: 2rem; padding: .6rem; 
  text-align:center;
  font-weight: lighter;
  font-family: webfontregular,Arial,Helvetica,Verdana,sans-serif;
}
div#captioned-gallery figure.slider figure figcaption a{ 
  color: #fff; 
  text-decoration:none;
}
div#captioned-gallery figure.slider figure figcaption a:hover{ 
  color: #ccc; 
  text-decoration:underline;
}

