#slideshow 
	{
		position:absolute;
		width:42%;
		height:61%;
		margin-left: 30%;
		top: 20%;
		box-shadow:80px 90px 70px #444444;
		-webkit-border-radius: 15px;
		border-radius: 15px;
		z-index: 500;
	}

	#slideshow img 
	{
		position:absolute;
		width: 100%;
		height: 100%;
		left:0px;
		-webkit-border-radius: 15px;
		border-radius: 15px;
	}
	
	#header
	{
		text-shadow: #aaaaaa 3px 3px 2px;
		text-align: center;
		margin: auto;
	}

	@-webkit-keyframes cf3FadeInOut 
	{
		0% 
		{
		   	opacity:1;
		}
		25% 
		{
			opacity:0;
		}
		75% 
		{
			opacity:0;
		}
		100% 
		{
		   	opacity:1;
		}
	}

	@keyframes cf3FadeInOut 
	{
		0% 
		{
		   	opacity:1;
		}
		25% 
		{
			opacity:0;
		}
		75% 
		{
			opacity:0;
		}
		100% 
		{
		   	opacity:1;
		}
	}

	#slideshow img:nth-of-type(1) 
	{
 		-webkit-animation-delay: 15s;
		animation-delay: 15s;
	}
	#slideshow img:nth-of-type(2) 
	{
 		-webkit-animation-delay: 10s;
		animation-delay: 10s;
	}
	#slideshow img:nth-of-type(3) 
	{
 		-webkit-animation-delay: 5s;
		animation-delay: 5s;		
	}
	#slideshow img:nth-of-type(4) 
	{
 		-webkit-animation-delay: 0s;
		animation-delay: 0s;	
	}

	#slideshow img 
	{
		-webkit-animation-name: cf3FadeInOut;
		-webkit-animation-timing-function: ease-in-out;
		-webkit-animation-iteration-count: infinite;
		-webkit-animation-duration: 20s;

		animation-name: cf3FadeInOut;
		animation-timing-function: ease-in-out;
		animation-iteration-count: infinite;
		animation-duration: 20s;
	}

