/* START PASTE */
			/* 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 {
	display:block;
	width:22px;
	height:41px;
	/* background:url(../left.png) no-repeat; */
	float:left;
	margin:27px 10px;
	cursor:pointer;
}

/* 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;		
}

/* next button uses another background image */
a.next, a.nextPage {
	/* background-image:url(../right.png); */
	clear:right;	
}

		
/* START PASTE */
								/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 800px;	 
	height:100px;	
}


/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	
}
/* this makes it possible to add next button beside scrollable */

/* single item */
#thumbs div {
	float:left;
	width:100px;
	height:100px;
	cursor:pointer;
	border-left:2px;
	border-color:#222226;
}

/* style when mouse is over the item */
#thumbs div.hover {
	
}

/* style when element is active (clicked) */
#thumbs div.active {
	
}


