/* 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:10px;
	background: #FFFFFF url(SiteImages/Scroll_Back.gif) 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. */
}
.vscrollerbarbeg 
{
	/* height of this element is normally auto set to fit the scrollbase, to cover the base... */
	height: 2px !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: 10px;
	background: url(SiteImages/Scroll_Begin.gif) no-repeat;
}
.vscrollerbarend 
{
	/* height of this element should be set */
	height: 2px;
	width: 10px;
	background: url(SiteImages/Scroll_End.gif) no-repeat;
}

.vscrollerbase 
{
	width: 10px;	
	background: #FFFFFF url(SiteImages/Scroll_Base_Back.gif) repeat-y;
}
.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: 10px;
	height: 10px !important; /*Again, the safari fix, normally this line is not needed.*/
	background: url(SiteImages/Scroll_Base_Begin.gif) no-repeat;
}
.vscrollerbaseend 
{
	/* height of this element should be set */
	/* this element can be used to place a faux bottom arrow image */
	height: 10px;
	width: 10px;
	background: url(SiteImages/Scroll_Base_End.gif) no-repeat;
}

.vscrollerbar 
{
	/* 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: 8px;
	z-index: 2;
}

/* Scroll Bar Master Styling Ends Here */

/*Page related styles for you to view*/
#thumb_scroll 
{
	/* Typical fixed height and fixed width example */
	width: 116px;
	height: 354px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	padding: 5px 5px 5px 5px;
	/*background-color:#CC99CC;*/
}
