/* CSS Document */
div.vertical { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
 
    /* vertical scrollers have typically larger height than width */ 
    height: 336px; 
    width: 274px; 
} 
 
/* root element for scrollable items */ 
div.scrollable div.items { 
    position:absolute; 
 
    /* this time we have very large space for the height */ 
    height:20000em; 
}

div.scrollable div.items div {
	height:84px;
}


/* right */
a.prevPage 				{
	 background:url(../images/arrow_up.jpg) no-repeat;
	 width: 22px;
	 height: 25px;
	 }
a.prevPage:hover 		{ 
	 background:url(../images/arrow_up_ro.jpg) no-repeat;
	 width: 22px;
	 height: 25px;
 }
a.prevPage:active 	{ 
	 background:url(../images/arrow_up.jpg) no-repeat;
	 width: 22px;
	 height: 25px;

 } 


/* left */
a.nextPage {
	background:url(../images/arrow_down.jpg) no-repeat;
	width: 22px;
	height: 25px;
}
a.nextPage:hover { 
	background:url(../images/arrow_down_ro.jpg) no-repeat;
	width: 22px;
	height: 25px;
}
a.nextPage:active { 
	background:url(../images/arrow_down.jpg) no-repeat;
	width: 22px;
	height: 25px;
} 


