
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.spacer2 
{
height:2px;		
font-size:2px;
}	
div.scrollable {
		
	position:relative;
	overflow:hidden;	 	
	width: 150px;	
	/*height:550px;	*/
	padding:0;		
	background-color:none;				
}
/* 
	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 {	
	width:150px;	
	position:absolute;
	clear:both;		
	text-align:center;	
	margin:0;
	border:0px;
	background-color:none;		
}

div.scrollable div.items div.image {
	text-align:center;
	width:150px;	
	height:110px;
	background-color:none;		
	padding:0px;
	margin:0px;	
	border:0px;
}


/* active item */
div.scrollable div.items div.active {
	border:0px solid #fff;		
	
}

.prev
{
	border:0px;
	background-image:url(picts/bt_prev_150.jpg);
	background-repeat:no-repeat;
	height:23px;
	width:150px;
	}
	
.next
{
	border:0px;
	background-image:url(picts/bt_next_150.jpg);
	background-repeat:no-repeat;
	height:23px;
	width:150px;
	
	}	
