/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

/*  scrollgeneric is used for corrective styling of elements, and should not be modified or removed */ 
.scrollgeneric {
line-height: 1px;
font-size: 1px;
position: absolute;
top: 0; left: 0;
background: rgb(51,51,51);


/*background-image: url(/images/HighScrollBack2.png);*/

}

.vscrollerbase {
width:19px;

}


* html .vscrollerbar {
/* IE6 alpha png trick */
/* IE7 is not affected by this trick, as it perfectly handles the normal png */
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop src='/images/HighScrollBar3.png');
 background-image: none;
 border-style:solid;
 border-width:1px;
 border-color:gray;
 width: 21px;

}


.vscrollerbasebeg {
width: 19px;
height: 17px; 
background: url(/images/HighScrollTop3.png) no-repeat;
/* height is auto set to fill the base */
}

.vscrollerbaseend {
width: 19px;
height: 17px; 

background: url(/images/HighScrollBottom3.png) no-repeat;
}


.vscrollerbarbeg {
/* height of this element is normally auto set to fit the scrollbase, to cover the base... */
height: 17px !important;
/* ...unless we force the size using an !important decleration */
/* forcing would not be required if Webkit-Safari did not have a background-repeat bug*/
/* this may be fixed by the time Safari 3.0 is released. */
width: 19px;
background: url(/images/HighScrollTop3.png) -108px -32px no-repeat;
}
.vscrollerbarend {
/* height of this element should be set */
height: 17px;
width: 19px;
background: url(/images/HighScrollBottom3.png) -108px 0px no-repeat;
}



/* do not forget to give horizontal scrollbars some color properties even if you don't plan on using them */
.hscrollerbase {height: 22px;}
.hscrollerbar {height: 22px; background-color: #84ADD6;}

.vscrollerbar, .hscrollerbar {
/* paddings of these elements will decide how far the scrollbar will stop in both ends, and are not actually
used for styling, and are set to 0 by the script, here we will set them the size of our faux arrows */
padding: 19px;
z-index: 2;
visibility:hidden;

}

/* properties for scroller jog box, just in case */
.scrollerjogbox {
width: 19px;
height: 21px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background: #698AAA;


}


/* Scroll Bar Master Styling Ends Here */
