/* 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: 10px;
}
.vscrollerbar {
width: 10px;
background-color: #1616AD;
}
.hscrollerbase {
height: 10px;
background: #ffffff 0px -15px repeat-x;
}
.hscrollerbar {
height: 10px;
background: #1616AD 0px -30px repeat-x;
}
#myscroll {
/* Typical fixed height and fixed width example */
width: 645px;
height: 480px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin: 0.3em auto;
padding: 5px;
font-size: 13;
}
#imagescroll {
/* Typical fixed height and fixed width example */
overflow: auto;
width: 800px;
height: 120px;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin-left: 15px;
padding: 0px;
}
#umascroll {
/* Typical fixed height and fixed width example */
width: 645px;
height: 550px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin: 10;
padding: 5px;
font-size: 13;
}
