<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.carousel			{overflow: hidden;
					 
}

.carousel .carousel-img	{width: 100%;
						 height: 200%;
						 position: absolute;
						 opacity: 0;
						 -webkit-animation-name: css-animation-fade;
						 -webkit-animation-duration: 20s;
						 -webkit-animation-iteration-count: infinite;
						 margin-top: 10px;
						 margin-left: -7px;
						 
	
}


.carousel .carousel-img:nth-child(2)	{
	-webkit-animation-delay: 5s;
}

.carousel .carousel-img:nth-child(3)	{
	-webkit-animation-delay: 10s;
}

.carousel .carousel-img:nth-child(4)	{
	-webkit-animation-delay: 15s;
}

.carousel .carousel-img:nth-child(5)	{
	-webkit-animation-delay: 20s;
}

.carousel .carousel-img:nth-child(6)	{
	-webkit-animation-delay: 25s;
}


@-webkit-keyframes css-animation-fade			{
	from {opacity: 0;}
	5%  {opacity: 1;}
	15% {opacity: 1;}
	20% {opacity: 0;}
	to  {opacity: 0;}
}




</pre></body></html>