
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	position:relative;
	overflow:hidden;	 
		
	width: 546px;
	height:120px;
	float:left;
	
	padding:0;
	border:0px outset #ccc;
	background-color:transparent;
}

/* 
	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 {	
	
	height:120px;
	position:absolute;
	clear:both;		
	text-align:center;
	float:left;
	margin:0;
}

/* single scrollable item */
div.scrollable div.items div {
	/* custom decoration */
	text-align:center;
	width:91px;
	height:120px;
	float:left;
	padding:0;
	margin:0;
	border:0px outset #ccc;
	background-color:transparent;
	

}

/* active item */
div.scrollable div.items div.active {
	border:0px inset #ccc;		
	background-color:#FEEEC3;
	float:left;
}

/* active item */
div.scrollable div.items a{
	border:0px inset #ccc;		
	float:left;
}

div.scrollable div.items a:visited{
	border:0px inset #ccc;		
	float:left;
}

div.scrollable div.items a:hover{
	border:0px inset #ccc;		
	float:left;

}

.prev
{
	background-image:url(picts/btn_prev.jpg);
	background-repeat:no-repeat;
	float:left;
	height:120px;
	width:21px;
	float:left;
	}
	
.next
{
	background-image:url(picts/btn_next.jpg);
	background-repeat:no-repeat;
	height:120px;
	width:21px;
	float:left;
	}	
