#picslide {
position: relative;
max-width: 600px;
height: 400px;
margin: 1em auto .5em auto;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
}
#picslide figure {
margin: 0;
max-width: 600px;
height: 400px;
background: #fff;
position: absolute;
}

#picslide figure:nth-child(1),#picslide figure:nth-child(2),#picslide figure:nth-child(3),#picslide figure:nth-child(4),#picslide figure:nth-child(5),#picslide figure:nth-child(6)
{

opacity: 0;
}
#picslide figure:nth-child(1) {
  animation: xfade 30s 0s infinite;
  -moz-animation: xfade 30s 0s infinite; /* Firefox */
  -webkit-animation: xfade 30s 0s infinite; /* Safari and Chrome */
  -o-animation: xfade 30s 0s infinite;
}
#picslide figure:nth-child(2) {
  animation: xfade 30s 5s infinite;
  -moz-animation: xfade 30s 5s infinite; /* Firefox */
  -webkit-animation: xfade 30s 5s infinite; /* Safari and Chrome */
  -o-animation: xfade 30s 5s infinite;
}
#picslide figure:nth-child(3) {
  animation: xfade 30s 10s infinite;
  -moz-animation: xfade 30s 10s infinite; /* Firefox */
  -webkit-animation: xfade 30s 10s infinite; /* Safari and Chrome */
  -o-animation: xfade 30s 10s infinite;
}
#picslide figure:nth-child(4) {
  animation: xfade 30s 15s infinite;
  -moz-animation: xfade 30s 15s infinite; /* Firefox */
  -webkit-animation: xfade 30s 15s infinite; /* Safari and Chrome */
  -o-animation: xfade 30s 15s infinite;
}
#picslide figure:nth-child(5) {
  animation: xfade 30s 20s infinite;
  -moz-animation: xfade 30s 20s infinite; /* Firefox */
  -webkit-animation: xfade 30s 20s infinite; /* Safari and Chrome */
  -o-animation: xfade 30s 20s infinite;
}
#picslide figure:nth-child(6) {
  animation: xfade 30s 25s infinite;
  -moz-animation: xfade 30s 25s infinite; /* Firefox */
  -webkit-animation: xfade 30s 25s infinite; /* Safari and Chrome */
  -o-animation: xfade 30s 25s infinite;
}
#picslide figure:nth-child(7) {
  animation: xfade 30s 30s infinite;
  -moz-animation: xfade 30s 30s infinite; /* Firefox */
  -webkit-animation: xfade 30s 30s infinite; /* Safari and Chrome */
  -o-animation: xfade 30s 30s infinite;
}

@-webkit-keyframes xfade{ /* Safari and Chrome */
  0%{
    opacity: 0;
  }
  2%{
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  40%{
    opacity: 0;
  }
}

 @-moz-keyframes xfade { 
  0%{
    opacity: 0;
  }
  2%{
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  40%{
    opacity: 0;
  }
}

 @-o-keyframes xfade { 
  0%{
    opacity: 0;
  }
  2%{
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  40%{
    opacity: 0;
  }
}

 @-ms-keyframes xfade { 
  0%{
    opacity: 0;
  }
  2%{
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  40%{
    opacity: 0;
  }
}

@keyframes xfade{
  0%{
    opacity: 0;
  }
  2%{
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  40%{
    opacity: 0;
  }
}