/* root element for scrollable */
div.scrollable.vertical {  
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 487px;	 
	width: 710px;	
}
div.scrollable.vertical_single {  
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 163px;	 
	width: 710px;	
}
/* root element for scrollable items */
div.scrollable.vertical div.items {	
	position:absolute;
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* override item style defined in scrollable.css 
div.scrollable div.items {
	float:none;
	margin:1px 0px;
}
*/
/* single scrollable item 
div.scrollable div.items {
	float:left;
	 background image 
	background-color: #99CCCC;
	text/font settings 
	color:#999;
	text-align:left;
	width:710px;
	height:155px;
	padding:0px 0px;
	margin-right: 0px;	
	cursor:pointer;
}
*/


/* mouseover state 
div.scrollable div.items div:hover {	
	background-position:-178px 0px;
}*/

/* clicked state 
div.scrollable div.items div:active {	
	background-position:-356px 0;
}*/

/* active item 
div.scrollable div.items div.active {	
	background-position:-534px 0;
	cursor:default;
}*/
#scroll_wrapper_three {
	width: 840px;
	height: 487px;
}
#scroll_wrapper_one {
	width: 840px;
	/*height: 163px;*/
}


/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage{
	display:block;
	width:41px;
	height:41px;
	background:url(/holding/nav_arrow_up.png) no-repeat;
	float:right;
	cursor:pointer;
	font-size:1px;
	margin-right: 10px;
	margin-left: 10px;
}
#scroll_wrapper_three a.prev {
	margin-top: 0px;
	margin-bottom: 400px;
}
#scroll_wrapper_one a.prev {
	margin-top: 0px;
	margin-bottom: 70px;
}
a.next {
	margin-bottom: 0px;
	vertical-align: baseline;
	position: relative;
	bottom: 0px;
	margin-top: -24px;
}
#scroll_wrapper_one a.next {
	margin-top: -21px;
}
/* mouseover state 
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}*/

/*disabled navigational button visibility:hidden!important;*/
a.prev.disabled {
	background:url(/holding/nav_arrow_up_off.png) no-repeat !important;
	cursor: auto;		
}
a.next.disabled {
	background:url(/holding/nav_arrow_dn_off.png) no-repeat !important;
	cursor: auto;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(/holding/nav_arrow_dn.png);
	clear:right;	
}
a.next:hover, a.nextPage:hover {
	background-image:url(/holding/nav_arrow_dn_over.png);
}
a.prev:hover, a.prevPage:hover {
	background-image:url(/holding/nav_arrow_up_over.png);
}



/*********** 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(../img/scrollable/arrow/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;     
} 	

