/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */

.jspContainer {
    overflow: hidden;
    position: relative;
}

.jspPane {
    position: absolute;
    left: 0 !important;
}

.jspVerticalBar {
    position: absolute;
    top: 0;
    right: 2px;
    width: 11px;
    height: 100%;
}

.jspCap {
    display: none;
}

.jspTrack {
    background: url(../images/scroll_bar_line.png);
    position: relative;
}

.jspDrag {
    background: url(../images/scroll_bar_dot.png) no-repeat;
    position: relative;
    top: 0;
    left: 0;
    cursor: pointer;
}

.jspArrow {
    text-indent: -20000px;
    display: block;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.jspArrowUp {
    background: url(../images/scroll_bar_arr_top.png) 0 top;
}

.jspArrowDown {
    background: url(../images/scroll_bar_arr_bottom.png) 0 bottom;
}

.jspArrowUp:hover {
    background-position: 0 bottom;
}

.jspArrowDown:hover {
    background-position: 0 top;
}

.jspArrow.jspDisabled {
    cursor: default;
}

.jspVerticalBar .jspArrow {
    height: 7px;
}

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

.jspCorner {
    background: #eeeef4;
    float: left;
    height: 100%;
}


/* Yuk! CSS Hack for IE6 3 pixel bug :( */

* html .jspCorner {
    margin: 0 -3px 0 0;
}