#slider
{
	margin: auto;
	width: 900px;
	height: 492.69px;
	box-shadow: 7px 7px 18px 5px rgba(0, 0, 0, 0.3);
	border-radius: 10px 10px 10px 10px;
}
#slider a
{
	position: absolute;
}
#slider a img
{
	width: 900px;
	border-radius: 10px 10px 10px 10px;
}
#slider a:nth-of-type(1)
{
	animation-name: fader;
	animation-delay: 5s;
	animation-duration: 2s;
	z-index: 20;
}
#slider a:nth-of-type(2)
{
	z-index: 10;
}
#slider a:nth-of-type(n+3)
{
	display: none;
}
@keyframes fader 
{
	from{opacity: 1.0;}
	to{opacity: 0.0;}
}