
#stapel {
	position:	relative;
	width:	100%;
	height:	auto;
	margin:	1em auto 0;
	border: 	1px solid #ffffff;
	border-radius:	1px;
	box-shadow: 	1px 1px 2px 2px #ffffff;
}

#stapel img {
	position:	absolute;
	width:	100%;
	height:	auto;
	opacity:	0;
}

#stapel img:nth-of-type(1) {
	animation:	fade 55s ease-in-out infinite;
}

#stapel img:nth-of-type(2) {
	animation:	fade 55s 5s ease-in-out infinite;
}

#stapel img:nth-of-type(3) {
	animation:	fade 55s 10s ease-in-out infinite;
}

#stapel img:nth-of-type(4) {
	animation:	fade 55s 15s ease-in-out infinite;
}

#stapel img:nth-of-type(5) {
	animation:	fade 55s 20s ease-in-out infinite;
}

#stapel img:nth-of-type(6) {
	animation:	fade 55s 25s ease-in-out infinite;
}

#stapel img:nth-of-type(7) {
	animation:	fade 55s 30s ease-in-out infinite;
}

#stapel img:nth-of-type(8) {
	animation:	fade 55s 35s ease-in-out infinite;
}

#stapel img:nth-of-type(9) {
	animation:	fade 55s 40s ease-in-out infinite;
}

#stapel img:nth-of-type(10) {
	animation:	fade 55s 45s ease-in-out infinite;
}

#stapel img:nth-of-type(11) {
	animation:	fade 55s 48s ease-in-out infinite;
}

@keyframes fade {
	6.66%, 20%			{opacity: 1;}
	0%, 26.66%, 100%	{opacity: 0;}
}