.jspContainer{
    overflow: hidden;

    position: relative;
}

.jspPane{
    position: absolute;
}

.jspVerticalBar{
    position: absolute;
    top: 0;
    right: 0;

    width: 24px;
    height: 100%;
}

.jspHorizontalBar{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 10px;
}

.jspVerticalBar *,
.jspHorizontalBar *{
    margin: 0;
    padding: 0;
}

.jspCap{
    display: none;
}

.jspHorizontalBar .jspCap{
    float: left;
}

.jspTrack{
    position: relative;

    background: url(../images/ic_scroll_track.png) 50% 0 repeat-y;
}

.jspDrag{
    position: relative;
    top: 0;
    left: 0;

    background: #ccc url(../images/ic_scroll_drag.png) 50% 50% no-repeat;
    box-shadow: inset 0 0 0 1px #999;

    cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag{
    float: left;

    height: 100%;
}

.jspArrow{
    display: block;

    text-indent: -20000px;

    background: #fff url(../images/ic_scroll_arrs.png) 0 0 no-repeat;
    box-shadow: inset 0 0 0 1px #ccc;

    cursor: pointer;
}
.jspArrow.jspArrowUp{
    background-position: 0 0;
}
.jspArrow.jspArrowDown{
    background-position: 0 -24px;
}

.jspArrow.jspDisabled{
    opacity: .5;

    cursor: default;
}

.jspVerticalBar .jspArrow{
    height: 24px;
}

.jspHorizontalBar .jspArrow{
    float: left;

    width: 24px;
    height: 100%;
}

.jspVerticalBar .jspArrow:focus{
    outline: none;
}

.jspCorner{
    float: left;

    height: 100%;

    background: #eeeef4;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner{
    margin: 0 -3px 0 0;
}
