/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width:365px;	
	height:340px;
	float:left;/* this makes it possible to add next button beside scrollable */			
}
div.scrollableProdutos {	
	/* 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.scrollableProdutos div.items {	
	position:absolute;
	width:20000em;	
	clear:both;
}
div.scrollableProdutos div.items a {
	float:left;
	border:2px solid transparent;
	margin:0 7px;
	width:95px;
	height:69px;
	cursor:pointer;
	position:relative;
}

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


/* single scrollable item */
div.scrollable #thumbs .colunaProduto {
	float:left;
	margin-right: 10px;
	position:relative;
}

/* 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:21px;
	height:73px;
	background:url(../img/left.jpg) no-repeat;
	float:left;
	margin:133px 10px 0 0;
	cursor:pointer;
}
#produtosDetail a.prev, #produtosDetail a.next, #produtosDetail a.prevPage, #produtosDetail a.nextPage {
	display:block;
	width:22px;
	height:21px;
	background:url(../img/scrolableProdutos_arrowLeft.gif) no-repeat;
	float:left;
	margin:30px 2px 0 2px;
	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/right.jpg);
	clear:right;
	margin:133px 0 0 10px;	
}
#produtosDetail a.next, #produtosDetail a.nextPage {
	background-image:url(../img/scrolableProdutos_arrowRight.gif);
}


/*********** 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;     
} 	
