/* 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;
height: 20px;
}

.vscrollerbase {
width: 4px;
height: 29px;
background-color: #CECECE;
}
.vscrollerbar {
width: 4px;
height: 29px;
background-color: #999999;
}

#mycustomscroll {
/* Typical fixed height and fixed width example */
width: 160px;
height: 305px;
overflow: auto;
line-height: 18px;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
padding-right: 3px;
padding-top: 6px;
font-size: 11px;
}

#mycustomscrollLarge {
/* Typical fixed height and fixed width example */
width: 100%;
height: 90%;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
}