/* root element for scrollable */ 
div.scrollable { 

    /* required settings */ 
    position:relative; 
    overflow:hidden; 

    /* vertical scrollers have typically larger height than width */ 
    height: 210px; 
    width: 150px; 
    color: #999999;
    
} 

/* 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 a, div.scrollable a:visited{
    color:#FFFFFF;
    text-decoration:none;
}

div.scrollable a:hover{
    text-decoration:underline;
    color: #6AA94E;
}

div.scrollable a.current{
    color:#6AA94E !important;
}

.items div{
    margin:0px 0px 0px 3px;
}
.prevPage{
    background: url('../images/arrow_up.png') no-repeat center center;
}
.nextPage{
    background: url('../images/arrow_down.png') no-repeat center center;
}
.prevPage, .nextPage{
/*    background-color: #6AA94E;*/
    display:block;
    text-align:center;
    width: 143px;
    cursor: pointer;
}
