/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 480px;	
	height:250px;	
}
div.bbb {
	/* required settings */
	position:relative;
	overflow:hidden;
	margin-left:-5px;
	margin-top:2px;	 	
	width: 669px;	
	height:210px;	
}

/* 
	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:2000em;	
	position:absolute;
	clear:both;		
}

div.bbb div.items {	
	/* this cannot be too large */
	width:2000em;
	position:absolute;
	clear:both;		
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
}

/* single scrollable item */
div.bbb div.items div {
	float:left;
}

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

/* this makes it possible to add next button beside scrollable / collection*/
div.bbb {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	/*display:block;*/
	width:27px;
	height:118px;
	float:left;
	margin-top:50px;
	/*margin:43px 10px;*/
	cursor:pointer;
}

#mainShowcase a.prev, #mainShowcase a.prevPage {
	background:url(/images/btn_left_slide_box.gif) no-repeat;
}
#mainShowcase a.next, #mainShowcase a.nextPage {
	background-image:url(/images/btn_right_slide_box.gif);
	clear:right;
}

#mainCollectionShowcase a.prev, #mainCollectionShowcase a.prevPage {
	background:url(/images/frecciasxcollection.jpg) no-repeat;
}
#mainCollectionShowcase a.next, #mainCollectionShowcase a.nextPage {
	background:url(/images/frecciadxcollection.jpg) no-repeat;
	clear:right;
}

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

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