<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* this makes it possible to add next button beside scrollable */
.scrollable {
    float:left;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
    display:block;
    width:60px;
    height:200px;
    float:left;
    cursor:pointer; 
    /*border-top:1px solid #fff;
    border-bottom:1px solid #fff;
    /*opacity:0.8;
    filter:alpha(opacity=80);*/
}


/* up and down */
a.right  {
    background:url(next.png) no-repeat;
    right:0;
    /*border-left:1px solid #fff;*/
}
a.left {
    background:url(prev.png) no-repeat;
    left:0;
    /*border-right:1px solid #fff;*/
}</pre></body></html>