.jspContainer{
    position: relative;

    overflow: hidden;
}

.jspPane{
    position: absolute;
}

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

    width: 13px;
    height: 100%;

    margin: 0 12px;

    border-radius: 5px;
    background: #c9cacb;
}

.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: none;
}

.jspDrag{
    position: relative;
    top: 0;
    left: -4px;

    width: 21px;

    background: #999 url(../images/ic_jspDrag.png) 50% 50% no-repeat;

    cursor: pointer;
}

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

    height: 100%;
}

.jspArrow{
    display: block;

    width: 36px;
    height: 36px;

    margin-left: -12px;

    border-radius: 50%;
    background: #e7e8e9 url(../images/ic_scroll_arrows.png) 0 0 no-repeat;

    cursor: pointer;
    text-indent: -20000px;
}

.jspArrow.jspArrowUp{
    background-position: 0 0;
}
.jspArrow.jspArrowUp:hover{
    background-position: 0 -36px;
}

.jspArrow.jspArrowDown{
    background-position: -36px 0;
}
.jspArrow.jspArrowDown:hover{
    background-position: -36px -36px;
}

.jspArrow.jspDisabled{
    cursor: default;
}

.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;
}
