
/*  */
/* 
*/
#stapel {
width: 675px;
height: 150px;
}

#stapel img {
width: 675px;
height: 150px;
position: absolute;
opacity: 0;
}

#stapel img:nth-of-type(1) {
animation: fade 52s ease-in-out infinite;
}
#stapel img:nth-of-type(2) {
animation: fade 52s 6s ease-in-out infinite;
}
#stapel img:nth-of-type(3) {
animation: fade 52s 12s ease-in-out infinite;
}
#stapel img:nth-of-type(4) {
animation: fade 52s 18s ease-in-out infinite;
}
#stapel img:nth-of-type(5) {
animation: fade 52s 24s ease-in-out infinite;
}
#stapel img:nth-of-type(6) {
animation: fade 52s 30s ease-in-out infinite;
}
#stapel img:nth-of-type(7) {
animation: fade 52s 36s ease-in-out infinite;
}
#stapel img:nth-of-type(8) {
animation: fade 52s 42s ease-in-out infinite;
}
@keyframes fade {
6.66%, 20% {opacity:1;}
0%, 26.66%, 100% {opacity:0;}
}
/*  */