/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 410px;
	height:140px;
	margin:80px 0px 0px 0px;

	/* custom decorations */
	/*border:1px solid #ccc;*/
}

/*
	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;
}



/* active item */
.scrollable .active {
	z-index:999;
	position:relative;
}




/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	
	display:block;
	width:20px;
	height:30px;
	float:left;
	margin:40px 2px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right { background:url("../images/BER/im_flch_jackpot_G.png") no-repeat; margin:130px 0px 0px 0px;}
 


/* left */
a.left	{ background:url("../images/BER/im_flch_jackpot_D.png") no-repeat; margin:130px 2px 0px 3px;} 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 