/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:absolute;
	left:40px;
	overflow:hidden;
	width:870px;
	height:67px;
	margin-right:20px;

}

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}

/* this makes it possible to add next button beside scrollable */

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/arrows-all.gif) no-repeat;
	display:block;
	width:10px;
	height:18px;
	float:left;
	margin:30px 0px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 -18px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-10px -18px; }


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-10px 0; }


/* disabled navigational button */
a.left.disabled {
	/*visibility:hidden !important;*/
	background-position:-20px 0;
	cursor:default;
} 	

a.right.disabled {
	/*visibility:hidden !important;*/
	background-position:-20px -18px;
	cursor:default;
} 	


