/*
	Slideshow
*/

#slides {
	width:980px; 
	height:380px; 
	position:relative; 
	top:40px; 
	background:#333;
}

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

.slides_container {
	width:980px;
	overflow:hidden;
	position:relative;
	display:none;
}

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

/*
	Caption
*/

.caption {
	z-index:90; 
	position:absolute;
	bottom:-35px;
	left:0;
	width:980px;
	height:24px;
	padding-left:20px;
	padding-top:11px;
	text-align:left;
	text-transform:uppercase;
	background:url(../imagens/fundo_legenda.png);
	color:#FFF;
	font-size:12px;
	text-shadow:none;
}

.pagination {
	visibility:hidden;
}