/* 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;
}

.vscrollerbar {
width: 16px;
background: transparent url(scrollbar.png) -16px 0px repeat-y;
/* do not forget to put colors for backgrounds for before image(s) can load , this is more important for
the scrollbar itself than the scrollbase, as user can live without an image on the base but cannot see
any scrollbar when images cannot load. */
}
*html .vscrollerbar {
	background-image:none;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/fileadmin/templates/css/scrollbar_ie6_vbar.png', sizingMethod='scale'); 
	width:22px !important;
}

.vscrollerbase {
width: 16px;
background: transparent url(scrollbar.png) 0px 0px repeat-y;
}
*html .vscrollerbase {
	background-image:none;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/fileadmin/templates/css/scrollbar_ie6_vbase.png', sizingMethod='scale'); 
	width:22px !important;
}

.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: 12px !important; /*Again, the safari fix, normally this line is not needed.*/
background: url(scrollbar.png) -32px 0px no-repeat;
}
*html .vscrollerbasebeg {
	background-image:none;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/fileadmin/templates/css/scrollbar_ie6_vtop.png', sizingMethod='crop'); 
}

.vscrollerbaseend {
/* height of this element should be set */
/* this element can be used to place a faux bottom arrow image */
height: 12px;
width: 16px;
background: url(scrollbar.png)  -32px -12px no-repeat;
}
*html .vscrollerbaseend {
	background-image:none;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/fileadmin/templates/css/scrollbar_ie6_vbot.png', sizingMethod='crop'); 
}

/* do not forget to give horizontal scrollbars some color properties even if you don't plan on using them */
.hscrollerbase {
height: 0px; background-color: white;
}
.hscrollerbar {
height: 0px; background-color: black;
}

.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: 12px;
z-index: 2;
}

/* properties for scroller jog box, just in case */
.scrollerjogbox {
width: 0px;
height: 0px;
top: auto; left: auto;
bottom: 0px; right: 0px;
background: #37917A;
}


/* Scroll Bar Master Styling Ends Here */
