/* formatação para as rolagens - jquery.scrollable */
#scrollable {
	/*background-color: #EFEFEF;*/
	/*border: 1px solid #DDD;*/
	padding: 10px 8px;
	width: 900px;
	height: 66px;
	margin-top: 10px;
	/*-moz-border-radius:7px;*/
}
/* container for the scrollable items */
#scrollable div.items {
	height: 66px;	
	margin-left: 8px;
	float: left;
	width: 760px !important;
}
/* single item */
#scrollable div.items a {
	display:block;
	float:left;
	margin-right:8px;
	width:70px;
	height:66px;
	/*background:url(../img/scrollable_entry.gif) 0 0 no-repeat;*/
	font-size:50px;
	color:#ccc;
	line-height:66px;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
}
#scrollable div.items a:hover {
	color:#999;	
}
#scrollable div.items a.active {
	background-position:-174px 0;		
	color:#555;
	cursor:default;
}
/* 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;
	left:55px;
	margin-left:-50px;
	width:50px;
	height:0px;
}
/* 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;     
} 	

