﻿.scrollerBody {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #F2F2F2;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    overflow: hidden;
}

.vScrollerUp {
    position: absolute;
    width: 100%;
    height: 17px;
    top: 0px;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    /*background-color: #3367D6;
    transition: background-color linear 200ms;*/
}

    /*.vScrollerUp:hover {
        background-color: color(LightBlue,700);
    }

    .vScrollerUp:active {
        background-color: #3367D6;
    }*/

.vScrollerDown {
    position: absolute;
    width: 100%;
    height: 17px;
    bottom: 0px;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    /*background-color: #3367D6;
    transition: background-color linear 200ms;*/
}

    /*.vScrollerDown:hover {
        background-color: color(LightBlue,700);
    }

    .vScrollerDown:active {
        background-color: #3367D6;
    }*/

.vScrollerHandle {
    position: absolute;
    width: 100%;
    height: 100px;
    top: 17px;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    transition: background-color linear 200ms;
    background-color: #DDDDDD;
    transition: background-color linear 200ms;
    border-radius: 5px;
    left: 4px;
    width: 9px;
}
.vScrollerHandle:hover {
    background-color: #BBBBBB;
}

.vScrollerHandle:active {
    background-color: #BBBBBB;
}
.vScrollerButtonImg {
    position: absolute;
    width: 17px;
    height: 17px;
    left: 50%;
    margin-left: -8.5px;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}
