
.album {
	margin: auto;
	background-color: white;
	position: relative;
}
.album img {
	width: 100%;
	animation-name: album;
	-webkit-animation-name: album;
	animation-duration: 30s;
	-webkit-animation-duration: 30s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	opacity: 0;
}
.album .img1 {
	display: block;
	margin: 0 auto;
	animation-delay: 0s;
	-webkit-animation-delay: 0s;
	position: relative;
}
.album .img2 {
	animation-delay: 5s;
	-webkit-animation-delay: 5s;
	position: absolute;
	top: 0;
	left: 0;
}
.album .img3 {
	animation-delay: 10s;
	-webkit-animation-delay: 10s;
	position: absolute;
	top: 0;
	left: 0;
}
.album .img4 {
	animation-delay: 15s;
	-webkit-animation-delay: 15s;
	position: absolute;
	top: 0;
	left: 0;
}
.album .img5 {
	animation-delay: 20s;
	-webkit-animation-delay: 20s;
	position: absolute;
	top: 0;
	left: 0;
}
.album .img6 {
	animation-delay: 25s;
	-webkit-animation-delay: 25s;
	position: absolute;
	top: 0;
	left: 0;
}
@keyframes album {
	0% { opacity: 0; transform: scale(1);}
	4.166% { opacity: 1; }
	16.666% { opacity: 1; }
	20.833% { opacity: 0; }
	100% { transform: scale(1.2);}
}
@-webkit-keyframes album {
	0% { opacity: 0; }
	4.166% { opacity: 1; }
	16.666% { opacity: 1; }
	20.833% { opacity: 0; }
}

