
div.scrollable {
	float: left;
	/* required settings */
	position: relative;
	overflow: hidden;	 	
	width: 422px;	
	height: 202px;	
	/* 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 {	
	/* this cannot be too large */
	width:20000em;	
	height: 202px;
	position:absolute;
	clear:both;		
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	cursor: pointer;
	width: 79px;
	height: 202px;
	margin: 0 3px;
}


/* STORES */
div.scrollStores {
float: left;
position: relative;
overflow: hidden;	 	
width: 960px;	
height: 140px;	
}

div.scrollStores div.items {	
width:20000em;	
height: 140px;
position:absolute;
clear:both;		
}




ul.listProd{
overflow: hidden;
width: 79px;
height: 220px;
}
ul.listProd li{
float: left;
cursor: pointer;
display: block;
width: 79px;
height: 220px;
}
ul.listProd li a{
display: block;
text-decoration: none;
border: 1px solid #d9d1c8;
width: 77px;
height: 93px;
margin: 4px 0;
}
ul.listProd li a:hover{
border: 1px solid #a5a196;
}

/* active item */
ul.listProd .actImg {
border: 1px solid #000000 !important;
}



a.prev, a.next, a.prevPage, a.nextPage {
overflow: hidden;
	display: block;
	width: 18px;
	height: 18px;
	background: url(../lib/left.png) no-repeat top;
	float: left;
	margin-top: 110px;
	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/right.png);
margin-top: 92px;
}



/* BUTTONS STORES */ 

a.prev2, a.next2, a.prevPage2, a.nextPage2 {
overflow: hidden;
	display: block;
	width: 18px;
	height: 18px;
	background: url(../lib/left.png) no-repeat top;
	float: left;
	margin-top: 50px;
	cursor: pointer;
	line-height: 8px;
}


a.prev2:hover, a.next2:hover, a.prevPage2:hover, a.nextPage2:hover {
background-position: bottom !important;		
}

a.disabled {
visibility: hidden !important;		
}

a.next2, a.nextPage2 {
float: left;
background-image:url(../lib/right.png);
margin-top: 50px;
}





/*********** navigator ***********/

/* position and dimensions of the navigator */
div.navi {
float: right;
clear: both;
overflow: hidden;
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;     
}

