div.scrollarea
{
	width: 165px;
	height: 320px;
	
	position:relative;
	top:-50px;
	overflow:hidden;
	
	background-color: #FFFFFF;
	margin: 0;
	padding: 0;
}

div.scrollarea div.items {	
	position:absolute;
	height: 320px;
	
	/* this time we have very large space for height */	
	height:10000000em;	
	
	/* decoration */
	margin:0;
	padding:0;
}

div.scrollarea div.items div {
	text-align:center;
	width:165px;
	padding:0;
	-moz-border-radius:5px;
	margin-bottom:10px;
}

div.scrollarea div.items div.active {

}

/*********** controller ***********/


a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:165px;
	height:35px;
	margin: 0;
	cursor:pointer;
}


a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
}


a.disabled {
	visibility:hidden !important;
}


a.prev, a.prevPage{
	position:relative;
	top:-18px;
	z-index:100;
	background-image:url('/images/design/scroll/active/scrollUp.png');
}

a.next, a.nextPage {
	position:relative;
	top:-80px;
	background-image:url('/images/design/scroll/active/scrollDown.png');
	z-index:102;
}



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


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


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	margin:3px;   
	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;     
} 
