.scrollgeneric {
line-height: 0px;
font-size: 0px;
position: absolute;
top: 0; left: 0;
}

.vscrollerbase {
width: 6px;
background-color: #b4b8b3;
}
.vscrollerbar {
width: 6px;
background-color: #4a4f53;
}
.hscrollerbase {
height: 6px;
background-color: #b4b8b3;
}
.hscrollerbar {
height: 6px;
background-color: #4a4f53;
}

.scrollerjogbox {
width: 6px;
height: 6px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background-color: #b4b8b3;
}

#myscroll {
/* Typical fixed height and fixed width example */
width: 450px;
height: 390px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
top:20px;
margin: 0;
padding: 0px;
left:0px;
}
#myscroll2 {
/* Typical fixed height and fixed width example */
width: 400px;
height: 390px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
top:20px;
left:10px;
margin: 0;
padding: 0px;
}
