body {
	background-color:#fff;
}
#gallery {
	position: relative;
	margin: 0;
	background: none;
	border: none;
}
#gallery figure {
	animation: wechseln 40s infinite;
}
@keyframes wechseln {
	0% { opacity: 0; }
	12% { opacity: 1; }
	24% { opacity: 1; }
	36% { opacity: 0; }
	100% { opacity: 0; }
}
#gallery figure:nth-of-type(2) {
	animation-delay: 8s;
	opacity: 0;
}
#gallery figure:nth-of-type(3) {
	animation-delay: 16s;
	opacity: 0;
}
#gallery figure:nth-of-type(4) {
	animation-delay: 24s;
	opacity: 0;
}
#gallery figure:nth-of-type(5) {
	animation-delay: 32s;
	opacity: 0;
}
