
/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;	
	width:693px;
	height:200px;	
	float:left;/* this makes it possible to add next button beside scrollable */
}
body #scrollable{
	_width:684px;
	_magin-left:0px;
}

/* 18 18 prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:22px; /* 22 for big 18 for small */
	height:22px; /* 22 for big */
	background:url(../images/scrollable/left_big.png) no-repeat; 
	/* background:url(../images/scrollable/left.png) no-repeat; */
	float:left;
	cursor:pointer;
}


/* custom positioning for navigational links */
a.prev{
	margin-top:80px;
	margin-left: 22px;	
	margin-right: 0px;
}
a.next {
	margin-top:80px;
}

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

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

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



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


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


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


