@charset "utf-8";

/* .scrollgeneric is required for proper scrollbar display,
not for user customization, and is mandatory*/
.scrollgeneric {
line-height: 1px;
font-size: 1px;
position: absolute;
top: 0; left: 0;
}

/* For scrollbars, defining a color for background alongside with an image 
is always a good idea, this way the scrollbars are visible until images load */
.vscrollerbase {
/* vscrollerbase is the div that holds the scrollbar (parent of vscrollerbar) */
width: 16px;
background-color: #ffffff;
background-image: url(/Templates/images/scroll-bg-vert.gif);
background-repeat: repeat-y;
}

.vscrollerbar {
width: 12px;
margin-left: 4px;
background-color: #94928F;
}

.hscrollerbase {
/* hscrollerbase is the div that holds the scrollbar (parent of hscrollerbar) */
height: 16px;
background-color: #ffffff;
background-image: url(/Templates/images/scroll-bg-hor.gif);
background-repeat: repeat-x;
}

.hscrollerbar {
height: 12px;
margin-top: 4px;
background-color: #94928F;
}

/* Basic styling ends here */
.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: 16px;
z-index: 2;
}

.vscrollerbasebeg {
/* height of this element is auto set to fit the scrollbase, to cover the base */
/* this element can be used to place a faux top arrow image */
width: 16px;
height: 16px !important; /*Again, the safari fix, normally this line is not needed.*/
background-image: url(/Templates/images/scroll-arrow-up.gif);
background-repeat: no-repeat;
}
.vscrollerbaseend {
/* height of this element should be set */
/* this element can be used to place a faux bottom arrow image */
height: 16px;
width: 16px;
background-image: url(/Templates/images/scroll-arrow-down.gif);
background-repeat: no-repeat;
}

.hscrollerbasebeg {
/* height of this element is auto set to fit the scrollbase, to cover the base */
/* this element can be used to place a faux top arrow image */
width: 16px;
height: 16px !important; /*Again, the safari fix, normally this line is not needed.*/
background-image: url(/Templates/images/scroll-arrow-left.gif);
background-repeat: no-repeat;
}
.hscrollerbaseend {
/* height of this element should be set */
/* this element can be used to place a faux bottom arrow image */
height: 16px;
width: 16px;
background-image: url(/Templates/images/scroll-arrow-right.gif);
background-repeat: no-repeat;
}

/* properties for scroller jog box, just in case */
.scrollerjogbox {
width: 16px;
height: 16px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background: #ffffff;
}