/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#geral #cx_busca #chamada-fotos .scrollable { /* required settings */ position:relative; overflow:hidden; width: 260px; height:120px; /* custom decorations */ background:url(images/h300.png) repeat-x; background-image: url(images/h300.png); }

/*
	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.
*/
#geral #cx_busca #chamada-fotos .scrollable .items { /* this cannot be too large */ width:20000em; position:absolute; clear:both; top: -4px; 
}

#geral #cx_busca #chamada-fotos .items div { float:left; margin: 0px; padding: 0px; width: 270px; 
}

/* single scrollable item */
#geral #cx_busca #chamada-fotos .scrollable img {
	float:left;
	margin:5px 2px 10px 2px;
	background-color:#fff;
	width:50px;
	height:40px;	
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}

/* active item */
#geral #cx_busca #chamada-fotos .scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}


/* this makes it possible to add next button beside scrollable */
#geral #cx_busca #chamada-fotos .scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
#geral #cx_busca #chamada-fotos a.browse { display:block; width:35px; height:40px; float:left; cursor:pointer; font-size:1px; background-image: url(../images/arrow/hori_large.png); background-repeat: no-repeat; margin-top: 40px; margin-right: 0px; margin-bottom: 40px; margin-left: 0px; 
}

/* botao direito */
#geral #cx_busca #chamada-fotos a.right { background-position: 0 0px; clear:right; margin-left:25px }
 


/* botao esquerdo */
#geral #cx_busca #chamada-fotos a.left { background-position: 0px -37px; margin-right:20px } 


/* up and down */
#geral #cx_busca #chamada-fotos a.up, a.down		{ 
	background:url(images/arrow/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
#geral #cx_busca #chamada-fotos a.up:hover  		{ background-position:-30px 0; }
#geral #cx_busca #chamada-fotos a.up:active  		{ background-position:-60px 0; }

/* down */
#geral #cx_busca #chamada-fotos a.down 				{ background-position: 0 -30px; }
#geral #cx_busca #chamada-fotos a.down:hover  		{ background-position:-30px -30px; }
#geral #cx_busca #chamada-fotos a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
#geral #cx_busca #chamada-fotos a.disabled {
	visibility:hidden !important;		
} 	

