#example {
	position:relative;
	width:542px;
	height:377px;
	overflow:hidden;
}

/*
	Slideshow
*/

#slides {
	position:absolute;
	top:0px;
	left:0px;
	z-index:100;
	width:542px;
}

/* 
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:542px;
	overflow:hidden;
	position:relative;
	display:none;
	padding-left:0;
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

.slides_container div.slide {
	width:542px;	
	height:377px;
	display:block;
	background-color:#aaa;
}
.slide img {
	border:1px solid #940C12;
	border:1px solid #f00;	
}

/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	display:none;
}

#slides .next {
	display:none;
}

/*
	Pagination
*/

.pagination {
	display:none; 
}

.caption {
	display:none;           
}

