
/* NO NECESARIO */
.box{
overflow: hidden;
background: #f1f1f1 url(../lib/bg_box_prod.gif) no-repeat bottom;
margin-top: 10px;
margin-left: 10px;
width: 520px;
}


/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	float:left;
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 470px;	
	height:126px;	
	
	/* custom decorations */
	padding: 10px;
	padding-top: 0;
	background-color:#efefef;				
}

/* 
	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 {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:10px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	color: #c51114;
	text-align:center;
	cursor: pointer;
	width: 65px;
	height: 107px;
	padding: 10px 6px;
	font-size: 9px;
	font-family: 'arial';
	background-color: #ddd;
	margin-right: 20px;	
	line-height: 11px;
}

/* active item */
div.scrollable div.items div.active {
	background-color:#fff;
}

/* img */
div.scrollable div.items div img{
margin-bottom: 5px;
}


/* ---------------------------------------------------------- */
/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
overflow: hidden;
	display: block;
	width: 12px;
	height: 18px;
	background: url(../lib/left.png) no-repeat top;
	float: left;
	margin: 43px 0;
	cursor: pointer;
	line-height: 8px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position: bottom;		
}

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

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../lib/right.png);
	clear:right;	
}





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


/* position and dimensions of the navigator */
div.navi {
overflow: hidden;
float: right;
text-align: center;
width: 480px;
height: 20px;
_height: 11px;
_margin-bottom: 5px;
padding: 0 10px;
margin-left: 20px;
}


/* items inside navigator */
div.navi a {
overflow: hidden;
   float: left;
	width: 8px;
	height: 8px;
	margin-right: 5px;
	background: url(../lib/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;     
}
