/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 320px;
	height:285px;

	
	
}

.vertical_scroll {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 480px !important;	 
	width: 305px !important;
	
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.vertical_scroll .items { 
	
	/* this cannot be too large */
	height:20000em;
	position:absolute;
	
}

.items div {
	float:left;
	width:320px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	
	
	width:320px;
	height:285px;
	
	
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

.text_plaatje
{
	position:absolute;
	z-index:10;
	height: 40px !important;
	/*background-color:#000;*/
	bottom:0px;
	background-image:url(../images/scroll_plaatje.png);
	background-repeat:repeat-x;
}

.scroll_text
{
	color:#FFF;
	text-align:center;
	padding-top:12px;
}


