/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

.scrollgeneric {
    line-height: 1px;
    font-size: 1px;
    position: absolute;
    left: 0;
}

.vscrollerbase {
    width: 6px;
    background-color: #666;
    left: 0 !important;
}

.vscrollerbar {
    width: 6px;
    background-color: #000;
    cursor:pointer;
}
.hscrollerbase {
    height: 6px;
    background-color: white;
}
.hscrollerbar {
    height: 6px;
    background-color: black;
}

.scrollerjogbox {
    width: 6px;
    height: 6px;
    top: auto; left: auto;
    bottom: 0px; left: 0px;
    background-color: gray;
    border:1px solid red;
}

#mycustomscroll {
    /* Typical fixed height and fixed width example */
    width: 300px;
    height: 300px;
    overflow: auto;
    /* IE overflow fix, position must be relative or absolute*/
    position: relative;
    outline:none;
}

#personalImagesScroller{
    /* Typical fixed height and fixed width example */
    width: 145px;
    overflow: auto;
    /* IE overflow fix, position must be relative or absolute*/
    position: relative;
    outline:none;
    margin-left:20px;
    border:0px solid white;
    float:left;
}
#personalImagesScroller .vscrollerbar {
    width: 6px;
    background-color: #333;
    cursor:pointer;
}

#personalImagesScroller .scrollerjogbox {
    width: 10px;
    height: 10px;
    top: auto; right: auto;
    bottom: 0px; right: 0px;
    background-color: gray;
}

.flexcroll {border:0px solid green;}

.mcontentwrapper {border:0px solid green;}
.contentwrapper{border:0px solid blue; overflow:hidden; margin:0px 0px;}
#mycarousel-small-personal li{margin-bottom:10px; cursor:pointer; text-align:left;}




