/*
Slideshow
*/

#slides {
position: absolute;
z-index: 100;
height: 269px;

}

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

.slides_container {
width:905px;
overflow:hidden;
position:relative;
height: 270px;
}

/*
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 {
height:366px;
display:block;
}

/*
Next/prev buttons
*/

#slides .next,#slides .prev {
position:absolute;
top:107px;
left:-39px;
width:24px;
height:43px;
display:block;
z-index:101;
}

#slides .next {
left: 890px;
margin: 0;
}

/*
Pagination
*/

.pagination {
margin: 5px auto 0 auto;
z-index: 9;
text-align: center;
width: 70px;
height: 8px;
}

.pagination li {
float:left;
margin:0 3px;
list-style:none;
text-align: center;
}

.pagination li a {
background: url(../images/bannerbotoes.png);
display:block;
height:1em;
float:left;
width:8px;
height:8px;
text-indent: -9999999em;
}

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

/*
Caption
*/

.caption {
z-index: 500;
position: absolute;
left: 47%;
width: 100%;
font-size: 36px;
line-height: 1.33;
padding: 20px 0;
color: #A2CFD4;
}