/* 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: 17px;
background-color: #8E8A6D;
}
.vscrollerbar {
width: 13px;
background-color: #EDE7B7;
border: 2px solid #8E8A6D
}

#mycustomscroll {
/* Typical fixed height and fixed width example */
width: 570px;
height: 500px;
overflow: auto;
border: 1px solid #D0C188;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
background-color: white;
padding: 15px;
}

#mycustomscroll2 {
/* Typical fixed height and fixed width example */
width: 570px;
height: 750px;
overflow: auto;
border: 1px solid #D0C188;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
background-color: white;
padding: 15px;
}