/*force scrollbar in mozilla*/
html {height: 100%; overflow-y:scroll;}

 
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 370px;	
	height:230px;	
}

div.scrollable div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	padding: 0px 5px 0px 5px;
	clear:both;		
}

/* single scrollable item  */
div.scrollable div.items div.item {
float:left;
}

.item {
width:124px;
display:block;
padding: 0px 5px 0px 5px;
}
.disabled{
	visibility: hidden;
}

