/*
Slideshow
*/

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

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

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

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

/*
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:1050px;
height:400px;
display:block;
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: 50% 50% !important;
}



.slides_container div.slide img {
}

/*
Pagination
*/

.pagination {
width:100%;
min-width:1050px;
margin:-44px 0 0px;
padding:0;
position:absolute;
z-index:200;
display:block;
text-align:center;
}

.pagination li {
margin:0 50px 0 0;
list-style:none;
display:inline-block;
}

.pagination li a {
display:block;
width:33px;
height:0;
padding-top:32px;
background-image:url(../images/NCAG_pagination.png);
background-position:0 0;
overflow:hidden;
}

.pagination li.current a {
background-position:0 -31px;
}

/*
Next/prev buttons
*/

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

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

#slides .next {
}