
div.scrollable {
	float: left;
	/* required settings */
	position: relative;
	overflow: hidden;	 	
	width: 940px;
	height: 125px;	
	/* custom decorations */
}


/* 
	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.
*/
div.scrollable div.items {
   left: 0;	
	/* this cannot be too large */
	width: 20000em;
	height: 125px;
	position: absolute;
	clear: both;		
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	cursor: pointer;
   width: 180px;
   height: 125px;
	margin: 0 5px;
}


/* PÁRRAFOS */
div.scrollable div.items span{
top: 88px;
position: absolute;
font-size: 0.92em;
text-align: justify;
line-height: 12px;
background-color: #000;
width: 170px;
height: 27px;
padding: 5px;
filter: alpha(opacity=80);
-moz-opacity: 0.80;
-khtml-opacity: 0.80;
opacity: 0.80;
}
/* PÁRRAFOS */

div.scrollable div.items div a{
float: left;
display: block;
color: #fff;
text-decoration: none;
line-height: 16px;
width: 180px;
height: 125px;
}
div.scrollable div.items div a:hover{
color: #cfcecd;
}


a.prev, a.next, a.prevPage, a.nextPage {
overflow: hidden;
	display: block;
	width: 30px;
	height: 24px;
	background: url(../lib/arrow_left.gif) no-repeat top;
	float: left;
	margin-top: 44px;
	cursor: pointer;
	line-height: 8px;
}


a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
background-position: bottom !important;		
}


a.disabled {
visibility: hidden !important;		
}

a.next, a.nextPage {
float: left;
background-image:url(../lib/arrow_right.gif);
margin-top: 44px;
}



/*********** navigator ***********/

/* position and dimensions of the navigator */
div.navi {
float: right;
clear: both;
overflow: hidden;
width: 70px;
height: 20px;
margin-right: 20px;
*margin-right: 10px;
padding: 0 10px;
}


/* items inside navigator */
div.navi a {
overflow: hidden;
   float: left;
   color: #53453a;
   font-size: 0.82em;
	width: 18px;
	height: 18px;
	text-align: center;
	text-decoration: none;
	line-height: 18px;
	margin-right: 5px;
	background: url(../lib/navigator.gif) 0 0 no-repeat;     
	cursor: pointer;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -18px;      
}

/* active state (current page state) */
div.navi a.active {
color: #fff;
background-position:0 -36px !important;     
}
