
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 260px;	
	height:230px;	

	
	/* custom decorations */
	padding:0;	
				
}

/* 
	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 */

}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */

	width:260px;
	padding:0;

	font-size:11px;
	font-family: Arial, Helvetica, sans-serif;
	-moz-border-radius:5px;
}


/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.less, a.more, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(/graphics/navigation/left.png) no-repeat;
	float:left;
	margin:0px 10px 0px 0px;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
a.more:hover, a.less: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.less, a.nextPage {
	background-image:url(/graphics/navigation/right.png);
	clear:right;	
}







/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable_cr {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 260px;	
	height:230px;	
	
	margin-top: 5px;
	/* custom decorations */
	padding:0;	
				
}

/* 
	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_cr div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */

}

/* single scrollable item */
div.scrollable_cr div.items div {
	float:left;
	
	/* custom decoration */

	width:260px;
	padding:0;

	font-size:11px;
	font-family: Arial, Helvetica, sans-serif;
	-moz-border-radius:5px;
}


/* this makes it possible to add next button beside scrollable */
div.scrollable_cr {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.less_cr, a.more_cr, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(/graphics/navigation/left.png) no-repeat;
	float:left;
	margin:0px 10px 0px 0px;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
a.more_cr:hover, a.less_cr: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.less_cr, a.nextPage {
	background-image:url(/graphics/navigation/right.png);
	clear:right;	
}



