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

.slides_container {
	width:710px;
	height:405px;
	overflow:hidden;
	position:relative;
	display:none;
	border:10px solid #DDE4D9;
	margin:20px 0;
}
#slides {
	position:relative;
	
}

/*
	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 {
	max-width: 100%;
        max-height: 100%;
	display:block;
	
}


/*
	Next/prev buttons
*/
#slides .next,#slides .prev {
	position:absolute;
	top:200px;
	left:11px;
	width:24px;
	height:43px;
	display:block;
	z-index:101;
}

#slides .next {
	right:18px;left:auto;
}

.pagination{display:none;}