/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

.scrollgeneric {
line-height: 1px;
font-size: 1px;
position: absolute;
top: 0; left: 0;
}

.vscrollerbase {
width: 15px;
background-color: #FDF9E9;
border: 1px solid #747474;
}

.vscrollerbar {
width: 13px;
background-color: #747474;
margin: 1px;
}

.hscrollerbase {
height: 13px;
background-color: #FDF9E9;
border: 1px solid #747474;
}

.hscrollerbar {
height: 13px;
background-color: #747474;
margin: 1px;
}

.scrollerjogbox {
width: 13px;
height: 13px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background-color: gray;
}

.flexcroll {
/* Typical fixed height and fixed width example */
width: 160px;
height: 557px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
background-color: #FDF9E9;
padding: 0px;
/* border-bottom: 1px solid #747474; */
}


/* you may optionally want to hide the scrollbars */
.flexcroll .hscrollerbase {
    visibility: hidden !important;
}