@charset "utf-8";
/* CSS Document */

/* 全体 */
.jspContainer { overflow:hidden; position:relative; }

/* スクロールバーを除いたエリア */
.jspPane { position:absolute; }

/* 縦スクロールバー */
.jspVerticalBar { 
    position:absolute; 
    top:0; 
    right:4px; 
    width:7px; 
    height:100%; 
    -moz-border-radius: 3px;/*for Firefox*/
    -webkit-border-radius: 3px;/*for Safari and chrome*/
    border-radius: 3px;
}

/* 背景 */
.jspTrack { background:#f5f5f5; position:relative; }

/* ノブ */
.jspDrag {
     background:#ddd; 
     position:relative; 
     top:0; left:0; 
     cursor:pointer;
     -moz-border-radius: 3px;/*for Firefox*/
     -webkit-border-radius: 3px;/*for Safari and chrome*/
     border-radius: 3px;
}
.jspHorizontalBar .jspTrack, .jspHorizontalBar .jspDrag { float:left; height:100%; }