/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 720px;	
	height:600px;	
	border:0px solid #FF6600;
margin:0px 0px 0px 120px;
padding:0px;		
}

/* 
	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 */

}

div.scrollable div.items .item
{
margin:0px 0px 0px 0px;
padding:0px 15px 15px 15px;
background:#e2e9ec;
height:370px;
filter:alpha(opacity=100);
opacity: 1.0;
-moz-opacity:1.0;
}

div.scrollable div.items .item_inactive, div.scrollable div.items .item_inactive .tentoonstellingafbeelding img, div.scrollable div.items .item_inactive .tentoonstellingafbeelding
{
filter:alpha(opacity=40);
opacity: 0.4;
-moz-opacity:0.4;
}


/* single scrollable item */

div.scrollable div.items div {
	float:left;
	/* custom decoration */
	text-align:left;
	width:200px;
	padding:0px;

}


div.scrollable div.items div:hover, div.scrollable div.items div:hover .tentoonstellingafbeelding img, div.scrollable div.items div:hover .tentoonstellingafbeelding  {

filter:alpha(opacity=100);
opacity: 1;
-moz-opacity:1;
}


div.scrollable div.items div:hover .informatie h2
{
	font-size: 14px !important;
}

.datum {
	font-size: 11px !important;
}

/* active item */
div.scrollable div.items div.active, div.scrollable div.items div.active div.informatie, div.scrollable div.items div.active .tentoonstellingafbeelding img {
filter:alpha(opacity=100);
opacity: 1;
-moz-opacity:1;
}

div.scrollable div.items .informatie .aanvullend
{
clear:both;
display:none;
}

div.scrollable div.items div.informatie {
line-height:16px;
padding:10px;
width:180px;
background:#000;
color:#FFF;
clear:both;
}


div.scrollable div.items div:hover .aanvullend {
display:block;
	line-height:16px;
margin-top:5px;
width:180px;
background:#000;
color:#FFF;
clear:both;
font-size: 12px;

}


div.scrollable div.items div:hover .aanvullend a {
font-size: 12px;
font-weight: bold;
float: right;
display: block;
text-transform: lowercase;
padding: 3px 0px 0px 0px;
}



/* 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.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:23px;
	background:url(/elements/site/left.png) no-repeat;
	margin:0px;
	cursor:pointer;
}

.prev
{
position:absolute;
z-index:99;
top:300px;
left:360px;
}

.next
{
position:absolute;
top:300px;
left:600px;


}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -23px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(/elements/site/right.png);
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:450px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/elements/site/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	
