
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position: relative;
	overflow: hidden;	
	width: 730px;	
	height:140px;
	padding-top: 16px;
}

/* 
	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 */
	margin-left:14px;
}

/* single scrollable item */
div.scrollable div.items .item {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:125px;
	height: 94px;
}

div.scrollable div.items .techniek {
	width: 114px;
	height: 125px;
}


/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.nextPage {
	display:block;
	width: 42px;
	height: 42px;
	margin-top: 56px;
	margin-right: 12px;
	background: url(/images/buttons/prev.jpg) no-repeat;
	float:right;
	cursor: pointer;
}

a.prevPage {
	float:left;
	width: 42px;
	height: 42px;
	margin-top: 56px;
	margin-left: 12px;
	cursor: pointer;
	background: url(/images/buttons/prev.jpg) no-repeat;
}

/* disabled navigational button */
a.disabled {
	
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(/images/buttons/next.jpg);
	clear:right;	
}

.img {
	height: 92px;
}

.techniek .img {
	width: 112px;
	height: 112px;
}

.scroller_img {	
	height: 94px;
	border: 1px solid #cccccc;
	margin-bottom: 2px;
}

.techniek .scroller_img {
	height: 114px;
}

.scroller_txt {
	font-size: 11px;
	font-weight: 800;
	color: #345653;
	padding: 1px;
	width: 121px;
	overflow: hidden;
	border: 1px solid #ccc;
}

.techniek .scroller_txt {
	width: 110px;
	height: 16px;
	overflow: hidden;
}

.scroller_txt div {
	padding: 2px;
	height: 12px;
	overflow: hidden;
	background-color: #d7eaf1;
}

a.play {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}