@-ms-viewport {
	width: device-width;
}
@keyframes Animatezoom {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(1);
	}
}
@keyframes Fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes Rotation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.Animate {
	-webkit-animation: Animatezoom 1s;
	animation: Animatezoom 1s;
}
.Fade {
	-webkit-animation: Fade 1.5s;
	animation: Fade 1.5s;
}
.Rotation {
	-webkit-animation: Rotation 2s linear;
	animation: Rotation 2s linear;
}
.RotationLoop {
	-webkit-animation: Rotation 2s linear infinite;
	animation: Rotation 2s linear infinite;
}