/* 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: 6px;
background-color: #F0F0F0;
}
.vscrollerbar {
width: 6px;
background-color: #d7d8d5;
}
.hscrollerbase {
height: 6px;
background-color: #F0F0F0;
}
.hscrollerbar {
height: 6px;
background-color: #d7d8d5;
}

.scrollerjogbox {
width: 6x;
height: 5px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background-color: #F0F0F0;
}

#mycustomscroll {
/* Typical fixed height and fixed width example */
width: 202px;
height: 160px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin: 0.0em auto;
padding: 4px;
}

#mycustomscroll2 {
/* Typical fixed height and fixed width example */
width: 420px;
height: 210px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
margin: 0.0em auto;
padding: 4px;
}


.fixedwidth {
/* a wide div is used for creating horizontal scrollbars for demonstration purposes */
width: 690px;
height: auto;
position: relative;
color: black;
padding: 1px;
}

