/*
Slideshow
*/

#slides {
position:absolute;
z-index:50;
width:100%;
min-width:480px;

}

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

.slides_container {
width:100%;
min-width:500px;
overflow:hidden;
position:relative;
display:none;
}

.slides_control {
width:100% !important;
min-width:500px;	
}

/*
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:100%;
min-width:500px;
height:225px;
display:block;
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: 50% 50% !important;
}



.slides_container div.slide img {
}

/*
Pagination
*/

.pagination {
display:none;
}

.pagination li {
}

.pagination li a {
}

.pagination li.current a {
}

/*
Next/prev buttons
*/

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

#slides .next:hover,#slides .prev:hover {
}

#slides .next {
}