/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */

.scrollgeneric {
line-height: 1px;
font-size: 1px;
position: absolute;
top: 0; left: 0;
}



.vscrollerbase {
width: 7px;
background: url(../images/scrollbar.png) 0px 0px repeat-y;
}
.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 */
width: 7px;
padding: 7px;
z-index: 2;
background-color: #CFD9D8;
}
.vscrollerbarbeg {
/* height of this element is normally auto set to fit the scrollbase, to cover the base... */
height: 7px !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: 7px;
background: url(../images/scrollbar.png) -21px -7px no-repeat;
}
.vscrollerbarend {
/* height of this element should be set */
height: 7px;
width: 7px;
background: url(../images/scrollbar.png) -21px 0px no-repeat;
}
.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: 7px;
height: 7px !important; /*Again, the safari fix, normally this line is not needed.*/
background: url(../images/scrollbar.png) -14px -0px no-repeat;
}
.vscrollerbaseend {
/* height of this element should be set */
/* this element can be used to place a faux bottom arrow image */
height: 7px;
width: 7px;
background: url(../images/scrollbar.png)  -14px -7px no-repeat;
}




.hscrollerbase {
height: 7px;
width: 7px;
}
.hscrollerbar { /*, .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 */
height: 7px;
padding: 7px;
z-index: 2;
background-color: #CFD9D8;
}
.hscrollerbarbeg {
/* height of this element is normally auto set to fit the scrollbase, to cover the base... */
/* ...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: 7px;
height: 7px;
background: url(../images/scrollbar.png) -21px -7px no-repeat;
}
.hscrollerbarend {
/* height of this element should be set */
width: 7px;
background: url(../images/scrollbar.png) -21px 0px 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: 7px !important;
height: 7px !important; /*Again, the safari fix, normally this line is not needed.*/
background: url(../images/scrollbar.png) -7px -0px no-repeat;
}
.hscrollerbaseend {
/* height of this element should be set */
/* this element can be used to place a faux bottom arrow image */
height: 7px;
width: 7px;
background: url(../images/scrollbar.png)  -7px -7px no-repeat;
}





.scrollerjogbox {
width: 7px;
height: 7px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background-color: gray;
}
