/*
 * 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;}
.jspVerticalBar{position: absolute; top: 0; right: 0; width: 20px;	height: 100%; background-image:url(img_scroll/bar.png); background-repeat:repeat-y;	background-color:transparent;}
.jspHorizontalBar{ position: absolute; bottom: 0; left: 0;	width: 100%;	height: 16px; background-color:transparent; }
.jspVerticalBar *, .jspHorizontalBar *{ margin: 0; padding: 0; background-color:transparent; }
.jspCap{display: none;}
.jspHorizontalBar .jspCap{float: left;} 
.jspTrack{ background-color:transparent; position: relative;}
.jspDrag{	 background-color:transparent; background-image:url(img_scroll/scroll.png); background-repeat:repeat-y; position: relative;	top:0; left: 0;	cursor: pointer;}
.jspHorizontalBar .jspTrack, .jspHorizontalBar .jspDrag{	float: left;	height: 100%;}
.jspArrow{background-color:transparent; background-image:url(img_scroll/arrow1.png); background-repeat:no-repeat;	text-indent: -20000px;	display: block;	cursor: pointer;}
.jspArrow.jspDisabled{	cursor: default; background-color:transparent;}
.jspVerticalBar .jspArrow{	height: 16px;}
.jspHorizontalBar .jspArrow{	background-color:transparent; width: 16px;	float: left;	height: 100%;}
.jspVerticalBar .jspArrow:focus{	outline: none;}
.jspCorner{ background-color:transparent; float: left;	height: 100%;}
 */
 
 .jspContainer {
    overflow: hidden;
    position: relative;
}
.jspPane {
    position: absolute;
}
.jspVerticalBar {
    background: none repeat scroll 0 0 red;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 10px;
}
.jspHorizontalBar {
    background: none repeat scroll 0 0 red;
    bottom: 0;
    height: 16px;
    left: 0;
    position: absolute;
    width: 100%;
}
.jspVerticalBar *, .jspHorizontalBar * {
    margin: 0;
    padding: 0;
}
.jspCap {
    display: none;
}
.jspHorizontalBar .jspCap {
    float: left;
}
.jspTrack {
    background: none repeat scroll 0 0 #F1F4C5;
    position: relative;
}
.jspDrag {
    background: none repeat scroll 0 0 #FF5B00;
    cursor: pointer;
    left: 0;
    position: relative;
    top: 0;
}
.jspHorizontalBar .jspTrack, .jspHorizontalBar .jspDrag {
    float: left;
    height: 100%;
}
.jspArrow {
    background: none repeat scroll 0 0 #B85E00;
    cursor: pointer;
    display: block;
    text-indent: -20000px;
}
.jspArrow.jspDisabled {
    background: none repeat scroll 0 0 #994F00;
    cursor: default;
}
.jspVerticalBar .jspArrow {
    height: 10px;
}
.jspHorizontalBar .jspArrow {
    float: left;
    height: 100%;
    width: 10px;
}
.jspVerticalBar .jspArrow:focus {
    outline: medium none;
}
.jspCorner {
    background: none repeat scroll 0 0 #EEEEF4;
    float: left;
    height: 100%;
}
* html .jspCorner {
    margin: 0 5px 0 0;
}