

body{
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
  font-weight: 300;
}
.css-slideshow{
  position: relative;
  max-width: 495px;
  height: 370px;
  margin: 5em auto .5em auto;
}
.css-slideshow figure{
  margin: 0;
  max-width: 495px;
  height: 370px;
  background: #000;
  position: absolute;
}
.css-slideshow img{
  box-shadow: 0 0 2px #666;
}
.css-slideshow figcaption{
  position: absolute;
  top: 0;
  color: #fff;
  background: rgba(0,0,0, .3);
  font-size: .8em;
  padding: 8px 12px;
  opacity: 0;
  transition: opacity .5s;
}
.css-slideshow:hover figure figcaption{
  transition: opacity .5s;
  opacity: 1;
}
.css-slideshow-attr{
  max-width: 495px;
  text-align: right;
  font-size: .7em;
  font-style: italic;
  margin:0 auto;
}
.css-slideshow-attr a{
  color: #666;
}
.css-slideshow figure{
  opacity:0;
}

figure:nth-child(1) {
  animation: xfade 60s 56s infinite;
}
figure:nth-child(2) {
  animation: xfade 60s 52s infinite;
}
figure:nth-child(3) {
  animation: xfade 60s 48s infinite;
}
figure:nth-child(4) {
  animation: xfade 60s 44s infinite;
}
figure:nth-child(5) {
  animation: xfade 60s 40s infinite;
}
figure:nth-child(6) {
  animation: xfade 60s 36s infinite;
}
figure:nth-child(7) {
  animation: xfade 60s 32s infinite;
}
figure:nth-child(8) {
  animation: xfade 60s 28s infinite;
}
figure:nth-child(9) {
  animation: xfade 60s 24s infinite;
}
figure:nth-child(10) {
  animation: xfade 60s 20s infinite;
}
figure:nth-child(11) {
  animation: xfade 60s 16s infinite;
}
figure:nth-child(12) {
  animation: xfade 60s 12s infinite;
}
figure:nth-child(13) {
  animation: xfade 60s 8s infinite;
}
figure:nth-child(14) {
  animation: xfade 60s 4s infinite;
}
figure:nth-child(15) {
  animation: xfade 60s 0s infinite;
}

@keyframes xfade{
  0%{
    opacity: 1;
  }
  14.67% {
    opacity:1;
  }
  16.67%{
    opacity: 0;
  }
  98% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

