
.scrollgeneric {
line-height: 1px;
font-size: 1px;
position: absolute;
top: 0; left: 0;
}

.vscrollerbase {
/* vscrollerbase is the div that holds the scrollbar (parent of vscrollerbar) */
width: 15px;
background-color: white;
}

.vscrollerbar {
width: 15px;
background-color: black;
}

.vscrollerbar {
/* Main body of vertical scrollbar */
background: #b31402;
}

.vscrollerbase {
/* Vertical scrollbar's base body */ 
background: #fff7ea;
border:1px solid #990000;
}


#mycustomscroll {
/* Typical fixed height and fixed width example */
width: 496px;
height:250px;
overflow: auto;
/* IE overflow fix, position must be relative or absolute*/
position: relative;
text-align: left;
}

