
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 442px;
	height:260px;
}

/*
	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 {
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:2px;
	background-color:#f5f6ef;
	cursor:pointer;
	width:60px;
	height:250px;
}



/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/hori_large.gif) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:110px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right         { background-position: 0 -30px; clear:right; margin-right: 0px;}


/* left */
a.left			{ margin-left: 0px; }


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	



