/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollablePromocao { /*utilizado nas paginas de promocao*/	
	/* required settings */
	position:relative;/**/
	overflow:hidden;	 	
	width:496px;	
	height:85px;
	float:left;/* this makes it possible to add next button beside scrollable */
	margin:10px 2px;
}
div.scrollableImovel {/*utilizado nas paginas de imovel, apresentando as fotos*/
	/* required settings */
	position:relative;/**/
	overflow:hidden;	 	
	width:227px;
	height:73px;
	float:left; /*this makes it possible to add next button beside scrollable */			
}
/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
#thumbs, div.scrollableImovel div.items {	
	position:absolute;/**/
	width:20000em;	
	clear:both;
}
div.scrollableImovel div.items a {
	float:left;
	border:2px solid transparent;
	margin:0 7px;
	width:95px;
	height:69px;
	cursor:pointer;
	position:relative;/**/
}

div.scrollableImovel div.items a:hover {
	border:2px solid #E98119 !important;
}


/* single scrollable item */
div.scrollablePromocao #thumbs .imovelBox {/*definicao apontada no screen.css*/}

/* single scrollable item */
/*div.scrollable div.items div {
	float:left;
	text-align:center;
	width:95px;
	height:145px;
	padding:10px;	
	margin-right: 10px;
	background:#FFF url(/img/destaques_bg.gif) no-repeat;	
}*/



/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:15px;
	height:80px;
	background:url(/img/arrow_left.gif) no-repeat;
	float:left;
	margin:14px 0 10px 0;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	/*-moz-opacity:0.7;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);*/
}

/* disabled navigational button*/ 
/*a.disabled {
	visibility:hidden !important;		
}*/

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(/img/arrow_right.gif);
	clear:right;
	margin-left:10px;	
}


/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin: 0 auto;
	width:50px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/img/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	
