/* root element for scrollable */
.scroll {  

	height: 196px;	 
	width: 917px;
	text-align:left;

}
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 196px;	 
	width: 917px;
	margin-bottom : 4px;
		z-index: 0;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;


}

/* single scrollable item */
.items div {
	margin:0px;
	padding:0px;
	font-size:12px;
	height:196px;
	

}

/* elements inside single item */
.items img {


}


.disabled {
	visibility:hidden;		
}
	

/* position and dimensions of the navigator */
.navi {
	position:absolute;
	margin-left: 5px;
	margin-top:-25px;
	z-index:5;
	width:200px;
	height:20px;
}


/* items inside navigator */
.navi a {
	width:16px;
	height:16px;
	float:left;
	margin:3px;
	background:url(navigator.png) 0 0 no-repeat;
	display:block;
	font-size:12px;
	text-align:center;
	text-decoration:none;
	color:#000;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -16px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -32px;     
}
