/* SCROLLABLE */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	top:10px;
	left:10px;
	overflow:hidden;
	width: 350px;
	height:220px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:5000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	position:relative;
	width:350px;
	margin:0;
	padding:0;
}

.items div span.legenda {
	position:absolute;
	z-index:8000;
	bottom:0;
	left:0;
	display:block;
	height:41px;
	width:302px;
	font:normal 14px Arial, Helvetica, sans-serif;
	color:#FFF;
	line-height:100%;
	background-color:#000;
	padding:8px 10px 8px 38px;
	opacity:0.7;
	filter: alpha(opacity=70);
	cursor:pointer;
}
.items div span.legenda strong {
	color:#FFCE07;
}

/* single scrollable item */
.scrollable img {
	float:left;
	background-color:#fff;
	width:350px;
	height:220px;
}

/* NAVIGATOR */

/* position and dimensions of the navigator */
.navi {
	position:absolute;
	z-index:9000;
	bottom:10px;
	left:10px;
	width:26px;
	height:52px;
	background:url(../imagens/bg_botoes_navegador_destaques.png) left top no-repeat;
	padding:5px 0 0 6px;
}

/* items inside navigator */
.navi a {
	width:14px;
	height:14px;
	float:left;
	clear:left;
	display:block;
	font-size:1px;
	margin:0 0 2px;
}

/* mouseover state */
.navi a:hover {
	background-position:-14px 0 !important;      
}

/* active state (current page state) */
.navi a.active {
	background-position:-14px 0 !important;      
}
.navi a.um { background:url(../imagens/bts_destaque_01.jpg) left top no-repeat; }
.navi a.dois{ background:url(../imagens/bts_destaque_02.jpg) left top no-repeat; }
.navi a.tres { background:url(../imagens/bts_destaque_03.jpg) left top no-repeat; }

