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

.vscrollerbase {
width: 13px;
background-color: white;
}
.vscrollerbar {
width: 13px;
background-color: transparent;
background-image:url('scroller_handle.gif');
background-position: left center;
background-repeat:no-repeat;
}

.vscrollerbar:hover,
.vscrollerbar.over {background-position: right center;}
.hscrollerbase {
height: 13px;
background-color: white;
}
.hscrollerbar {
height: 13px;
background-color: #695844;
}

.vscrollerbarbeg {background-color:#000;}

.scrollerjogbox {
width: 13px;
height: 13px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background-color: gray;
}

*html .vscrollerbar {
behavior: expression(
this.onmouseover = new Function("this.className += ' over'"),
this.onmouseout = new Function("this.className = this.className.replace(' over','')"),
this.style.behavior = null
);
}