/* slideshow frame */


		#holder {
		  display:block;
			margin:0px;
			position: relative;
			padding:0px;
			border: 3px solid #000000;
			z-index:1;
		}

		.slideshow {
			position: absolute;
			overflow: hidden;
			text-align: center;
		}

		
/*Modifications for Mobile*/
@media only screen and (max-width: 625px) {

		#holder {
		width:300px;
		height:233px;
		}
		
		.slideshow {
		width:300px;
		height:233px;
		}
}

/*Modifications For Tablets*/
@media only screen and (min-width: 626px) and (max-width: 1000px) {

		#holder {
		width:396px;
		height:307px;
		}
		
		.slideshow {
		width:396px;
		height:307px;
		}
}

/*Modifications For Desktops*/
@media only screen and (min-width: 1001px) and (max-width: 1199px) {

		#holder {
		width:450px;
		height:349px;
		}
		
		.slideshow {
		width:450px;
		height:349px;
		}
}

/*Modifications for Largest screens*/
@media only screen and (min-width: 1200px) {

		#holder {
		width:600px;
		height:465px;
		}
		
		.slideshow {
		width:600px;
		height:465px;
		}
}