/* root element for the whole scrollable setup */
div.scrollable {  
	position: relative;
	overflow: hidden;
	width: 478px;	 
	height: 196px;	
}

div.scrollable div.items {
	position: absolute;
	height: 20000px;	
	clear: both;
	border: #879BCB 1px none;
}




/* single scrollable item */
div.scrollable div.items div {
	float:right;
	text-align: right;
	width: 478px;
	height: 196px;
	background-color: #F2F3F4;
	color: #BCA165;
	border: #879BCB 1px none;
	cursor: pointer;	
}


/* prev, next, prevPage and nextPage buttons */
a.prev, a.next {
	display: block;
	width: 18px;
	height: 18px;
	background:url(images/arrow/up.png) no-repeat;
	float: right;
	cursor: pointer;
	font-size: 1px;
}

a.prev {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 12px;
}

a.next {
	margin-left: 0px;
	margin-top: 12px;
	margin-right: 0px;
	margin-bottom: 20px;
}


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

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

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



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


/* position and dimensions of the navigator */
div.navi {
	margin-top: 12px;
	margin-bottom: 20px;
	height: 20px;
	margin-left: 0px;

}


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

