﻿
.main {
    float: left;
    width: 360px;
    height: 180px;
    /*border: solid 1px blue;*/
    position: absolute;
}

.verticleScroll {
    float: right;
    display: none;
    position: absolute;
    width: 15px;
    /*border: solid 1px red;*/
    left: auto;
    right: 0px;
    top: 0px;
}

.horizontalScroll {
    float: right;
    display: none;
    position: absolute;
    height: 20px;
    /*border: solid 1px red;*/
    top: auto;
    bottom: 0px;
    left: -1px;
}

.content {
    float: left;
    /*width: 500px;*/
    /*height: 300px;*/
    overflow: hidden;
    -webkit-overflow-scrolling: auto;
    /*position: absolute;*/
    display:block!important;
}

.topThumb {
    position: absolute;
    top: 0px;
    bottom: auto;
    border: solid 1px black;
    display: none;
}

.bottomThumb {
    position: absolute;
    bottom: 0px;
    top: auto;
    border: solid 1px black;
    display: none;
}

.leftThumb {
    position: absolute;
    top: 0px;
    bottom: auto;
    border: solid 1px black;
}

.rightThumb {
    position: absolute;
    bottom: 0px;
    top: auto;
    border: solid 1px black;
}

.verticleTrack {
    position: absolute;
}

.horizontalTrack {
    position: absolute;
}

.uparrow {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 7px 7px 7px;
    border-color: transparent transparent #000000 transparent;
    position: absolute;
}

.downArrow {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 7px 7px 0px 7px;
    border-color: #000000 transparent transparent transparent;
    position: absolute;
}

.verticleMask {
    position: absolute;
    height: 100%;
    width: 100%;
   
}

.modifiedBar {
    width: 15px;
}

.modifiedTrack {
    z-index: 2;
    position: relative;
    border: none;
}

    .modifiedTrack:before {
        content: '';
        position: absolute;
        z-index: -1;
        height: 100%;
        width: 100%;
        top: 0px;
        left: 0px;
        border-radius: 10px;
        box-shadow: inset 0 0 20px rgba(248,248,248,0.7);
    }

    .modifiedTrack:after {
        content: '';
        position: absolute;
        z-index: 2;
        top: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
        border-radius: 10px;
        background-color: white;
        opacity: 0.1;
    }

.modifiedMask {
    position: absolute;
    z-index: 10;
    box-shadow: inset 0 0 14px rgba(250,250,250,0.95);
    border-radius: 10px;
}
