/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position: relative;
	overflow: hidden;	 	
	width: 480px;	
	height: 75px;	
	
	/* custom decorations */
	padding: 5px 0;	
	background-color: white;				
	margin-left: 18px;
	_display: inline;
}

/* 
	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: 20000em;	
	position: absolute;
	clear: both;		
	
	/* decoration */
	margin: -10px 0 0 15px;
	_display: inline;
}

/* single scrollable item */
div.scrollable div.items div {
	float: left;
	
	/* custom decoration */
	text-align: center;
	width: 100px;
	margin-right: 20px;
}


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

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	position: absolute;
	top: 40px;
	left: 5px;
	display: block;
	width: 21px;
	height: 24px;
	background: url(/gfx/gallery-switch-left.gif) no-repeat;
	cursor: pointer;
}

/* next button uses another background image */
a.next, a.nextPage {
	position: absolute;
	top: 40px;
	left: 523px;
	background: url(/gfx/gallery-switch-right.gif) no-repeat;
	display: block;
	width: 21px;
	height: 24px;
}

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

