
/* this makes it possible to add next button beside scrollable */
div.scrollable {
	position: absolute;
	top: 20px;
	z-index: 10;
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	position: absolute;
	z-index: 20;
	top: 51px;
	left: -14px;
	display:block;
	width:28px;
	height:26px;
	background:url('../../images/homepage-200907/scrollable-left.png') 2px 0 no-repeat;
	cursor:pointer;
	font-size:1px;
}
/* IE6 hack */
* html a.prev, a.next, a.prevPage, a.nextPage {
	background-image:url('../../images/homepage-200907/scrollable-left.gif');
}

/* mouseover state */
#sitemaincolumn a.prev:hover,
#sitemaincolumn a.next:hover,
#sitemaincolumn a.prevPage:hover,
#sitemaincolumn a.nextPage:hover,
#sitemaincolumn div.navi a:hover
{
	background-color: transparent;
}

/* disabled navigational button */
a.prev.disabled, a.prevPage.disabled,
a.next.disabled, a.nextPage.disabled {
/*	visibility:hidden !important; */
	background-position: 0 -26px;
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url('../../images/homepage-200907/scrollable-right.png');
	left: auto;
	right: -14px;
}
/* IE6 hack */
* html a.next, a.nextPage {
	background-image:url('../../images/homepage-200907/scrollable-right.gif');
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	position: absolute;
	top: 3px;
	right: 10px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url('../../images/homepage-200907/scrollable-navigator.png') 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;   
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	

