
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 470px;
	height:140px;
	display:block;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	float:left;
}

/* single scrollable item */
.scrollable img {
	width:40px;
	height:40px;
	cursor:pointer;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}



/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background: url(../images/v1/indexitemMall/arrowLR.png) no-repeat;
	display:block;
	width:22px;
	height:21px;
	float:left;
	cursor:pointer;
	text-indent:-99999px;
}

/* right */
a.right 				{ background-position: -22px 0; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position: -22px -21px; }
a.right:active 	{ background-position: -22px -42px; } 


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position: 0 -21px; }
a.left:active  	{ background-position: 0 -42px; }

/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 665px;	 
	width: 342px;
}

/* root element for scrollable items */
.itemsB {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.itemsB .comboItem{
	width:342px;
	height:52px;
	clear:both;
}


/* the action buttons above the scrollable */
#actions {
	width:342px;
}

#actions a {
	cursor:pointer;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
	background: url(../images/v1/indexitemMall/arrowLR.png) no-repeat;
	background-position:-66px 0;
	display:block;
	width:22px;
	height:21px;
}	
.nextPage:hover  		{ background-position:-66px -21px; }
.nextPage:active  		{ background-position:-66px -42px; }

.prevPage {
	float:left;
	background: url(../images/v1/indexitemMall/arrowLR.png) no-repeat;
	background-position:-44px 0;
	display:block;
	width:22px;
	height:21px;
}	
.prevPage:hover  		{ background-position:-44px -21px; }
.prevPage:active  		{ background-position:-44px -42px; }

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	

