/* formatação para as rolagens - jquery.scrollable */
#scrollable {
	/*background-color: #EFEFEF;*/
	/*border: 1px solid #DDD;*/
	padding: 10px 8px;
	width: 410px;
	height: 80px;
	margin-top: 10px;
	/*-moz-border-radius:7px;*/
}
/* container for the scrollable items */
#scrollable div.items {
	height: 74px;	
	margin-left: 8px;
	float: left;
	width: 370px !important;
}
/* single item */
#scrollable div.items a {
	display: block;
	float: left;
	margin-right: 6px;
	height: 70px;
	color: #ccc;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	border-color: #ECE9D8;
	border-width: 2px;
	border-style: solid;
}
#scrollable div.items a.hor{
	width: 90px;
}
#scrollable div.items a.ver{
	width: 46px;
}
#scrollable div.items a:hover {
	color:#999;	
	border-color: #B4A865;
}
#scrollable div.items a.active {	
	color:#555;
	cursor:default;
	border-color: #B4A865;
}
/* next / prev buttons */
#scrollable a.prev, a.next {
	background: url(../img/scrollable_left.gif) no-repeat 0 0;
	display: block;
	width: 9px;
	height: 42px;
	float: left;	
	margin: 15px 0 0 5px;
	cursor: pointer;
}
#scrollable a.next {
	background-image:url(../img/scrollable_right.gif)		
}
#scrollable a.prev:hover {
	background-position:0 -42px;		
}
#scrollable a.next:hover {
	background-position:0 -42px;		
}
/* navigator */
#scrollable div.navi {
	position: relative;
	top: -30px;
	width: 88px;
}
/* items inside navigator */
#scrollable div.navi span {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../img/scrollable_dots.png) 0 0 no-repeat;     
	cursor:pointer;
}
#scrollable div.navi span:hover {
	background-position:0 -8px;      
}
#scrollable div.navi span.active {
	background-position:0 -16px;     
} 	

