/* CSS Document */
div.vertical { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
 
    /* vertical scrollers have typically larger height than width */ 
    height: 348px; 
    width: 430px; 
} 
 
div.vertical_inner { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
 
    /* vertical scrollers have typically larger height than width */ 
    height: 348px; 
    width: 370px; 
} 
 
/* 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:116px;
}


/* 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;
 } 


