/*** 
set the width and height to match your images 
**/

#slideshow {
	position: relative;
	width: 100%;
	height: 250px;
	z-index:-1;
	top:0;
	overflow:hidden;
}

#slideshow IMG {
    position: relative;
	width: 100%;
	height: 250px;
    left:0;
    z-index:8;
    opacity:0.0;
	top: 0;
	overflow:hidden;
}

#slideshow IMG.active {
    z-index:10;
    opacity:1.0;
}

#slideshow IMG.last-active {
    z-index:9;
}

#slideshow img {
	/* Set rules to fill background */
	min-height: 250px;
	min-width: 100%;
	
	 
			
	/* Set up proportionate scaling */
	width: 2000px;
	height: 250px;
	overflow:hidden;
	left: 50%;
	margin-left: -1000px;
			
	/* Set up positioning */
	position: absolute;
	top: 0;
	
}
		
@media screen and (max-width: 2000px){
	img.bg {
	left: 50%;
	margin-left: -1000px;
	overflow:hidden;
	
}
}


