@charset "utf-8";
/* CSS Document */

#main { position: absolute; top: 130px; left: 250px; background-color: #CCCCCC; width: 650px; height: 250px; background-image: url(images/home_beeldendekunst.jpg); background-position: center;  }


/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:absolute;
	overflow:hidden;	 	
	width: 900px;	
	height:175px;
	left: 0px;
	top: 25px;
	
	/* custom decorations */
	padding:10px 0;	
						
}

/* 
	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 {	
	left: 0px;	
/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;	
		
	
		/* decoration */
		margin-left:10px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	height: 150px;
	font-size:30px;
	font-family: 'bitstream vera sans';
	border: 1px solid #FFFFFF;
	margin: 5px; 
	width: 200px;	
}


div.scrollable div.items img { border: 0; }

/* active item */
div.scrollable div.items div.active {
			
	
}

#scrollnavigation { position: relative; }

div.navi {
	position:relative;
	
	}

a.prev, a.next {
	background:url(images/left.png) no-repeat 0 0;
	display:block;
	width:18px;
	height:18px;
	float:left;	
	margin: 2px;
	cursor:pointer;
}

a.next {
	background-image:url(images/right.png)		
}

a.prev:hover {
	background-position:0 -18px;		
}

a.next:hover {
	background-position:0 -18px;		
}

#timeline { position: absolute; top: 400px; left: 0px; }