/**
 * scroller.css
 *
 * Generic styles for the javascript scroller elements
 */

.scrollerArrow {
    cursor: pointer;
}

.scrollerArrow:hover,
.scrollerArrow:focus {
    background-position: -18px 0;
}

#scroller {
    position: absolute;
    width: 18px;
}

#outerScroll {
    position: relative;
    overflow: auto;
}

#innerScroll {
    position: absolute;
    top: 0px;
    left: 0px;
}

#scrollerUpArrow {
    display: block;
    position: relative;
    top: 0px;
    left: 0px;
    width: 18px;
    height: 26px;
    background-image: url(/images/scroller/scrollerUpArrow.gif);
}

#scrollerDownArrow {
    display: block;
    position: relative;
    left: 0px;
    width: 18px;
    height: 26px;
    background-image: url(/images/scroller/scrollerDownArrow.gif);
}