/*Virtuele uitleen*/	
div.virtualresults
{
	position: relative;
	margin: 0 auto;
	background-color: #ccc;
}

	div.virtualheading
	{
		position: relative;
		margin: 0 0 60px 0;
		padding: 4px 10px 0 10px;
		height: 18px;
		background: url(../media/images/resultbar-header-bg.gif) repeat-x #fff;
	}
	
	div.virtualfooter
	{
		position: relative;
		margin: 60px 0 0 0;
		padding: 4px 10px 0 10px;
		height: 18px;
		background: url(../media/images/resultbar-header-bg.gif) repeat-x #fff;
	}
	
	div.scrollable
	{
		position:relative;
		width: 960px;
		height: 400px;
		overflow:hidden;
	}
	
	div#thumbs
	{
		position:absolute;
		width: 20000em;
	}

/* prev, next, prevPage and nextPage buttons */
a#prev, a#next{
	position: absolute;
	display:block;
	width:26px;
	height:26px;
	background:url(../media/images/arrow/left.png) no-repeat;
	margin:10px;
	cursor:pointer;
}

a#prev
{
	top: 110px;
	left: 10px;
}

a#next
{
	top: 110px;
	right: 10px;
}

/* mouseover state */
a#prev:hover, a#next:hover {
	background-position:0px -26px;		
}

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

/* next button uses another background image */
a#next {
	background-image:url(../media/images/arrow/right.png);
}



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


/* position and dimensions of the navigator */
div.navi {
	width: 300px;
	height: 8px;
	margin: 10px 0 0 360px;
	overflow: hidden;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin: 0 4px 0 0;
	background:url(../media/images/arrow/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;     
} 	

