/*
 * 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;
     
 }
 
 
 .get-mods-list-cont .jspPane{
     width: 1170px!important;
 }
 
 .jspVerticalBar
 {
    position: absolute;
    top: 0;
    /* right: 12px; */
    width: 20px;
    height: 100%;
    left: 22px;
 }
 
 .jspHorizontalBar
 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
 }
 
 .jspCap
 {
     display: none;
 }
 
 .jspHorizontalBar .jspCap
 {
     float: left;
 }
 
 .jspTrack
 {
    position: relative;
    border-top: none;
    border-bottom: none;
    height: 10px;
    background: #F5F5F5;
     
 }
 
 .jspDrag
 {
    position: relative;
    top: 0;
    left: 0px;
    cursor: pointer;
    width: 16px;
    background: #E73B2B;
    height: 10px;
 
 }
 
 .jspDrag:after{
    content: "";
    width: 2px;
    height: 100%;
    background: #998977;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
 }

 .jspTrack:after{
    content: "";
    width: 2px;
    height: 100%;
    background: #D9D9D9;
    position: absolute;
    top: 0;
    left: 0;
 }
 
 
 
 
 .jspHorizontalBar .jspTrack,
 .jspHorizontalBar .jspDrag
 {
     float: left;
     height: 100%;
 }
 
 .jspArrow
 {
     background-color: #fff;
     text-indent: -20000px;
     display: block;
     cursor: pointer;
     padding: 0;
     margin: 0;
     position:relative;
     z-index:3;
 }
 
 .jspArrowUp {
     background: #fff url(/images/vektor/pop-up-down-sprite.png) no-repeat;
     background-position: 10px 10px;
 }
 
 .jspArrowDown{
     background: #fff url(/images/vektor/pop-up-down-sprite.png) no-repeat;
     background-position: 10px -26px;
 }
 
 /*
 .jspArrow.jspDisabled
 {
     cursor: default;
     background: #80808d;
 }
 */
 .jspVerticalBar .jspArrow
 {
     height: 30px;
 }
 
 .jspHorizontalBar .jspArrow
 {
     width: 16px;
     float: left;
     height: 100%;
 }
 
 .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;
 }