﻿/* Scroll Bar Master Styling Starts Here */
/* All comments can be freely removed from the css */


.content .bodyCopy
{
	overflow: visible;
}
.flexcroll
{
	position: absolute;
	width: 488px;
	left: 0;
	/*	This hides the ugly rendering process in Safari; the modified version of the script
		shows it again once the rendering is done (and MUST do so, or the content will appear
		to be missing from the page. */
	visibility:hidden;
}

#contentContainer
{
	overflow: visible !important;
}

.vscrollerbase
{
	width: 24px;
	height:192px !important;
	/* background: #D4F6F2 url(scrollbar.png) 0px 0px repeat-y; */
	background: none;
}
.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: 24px;
	height: 12px !important; /*Again, the safari fix, normally this line is not needed.*/ /*background: url(scrollbar.png) -72px -28px no-repeat;*/
	background-image: url(images/icon/scroll_arrow_up.gif);
	background-repeat: no-repeat;
	background-position: top center;
}
.vscrollerbaseend
{
	/* height of this element should be set */ /* this element can be used to place a faux bottom arrow image */
	height: 12px;
	width: 24px; /* background: url(scrollbar.png)  -72px 0px no-repeat; */
	background-image: url(images/icon/scroll_arrow_down.gif);
	background-repeat: no-repeat;
	background-position: bottom center;
}

/*  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;
}

.mcontentwrapper
{
	height: 192px !important;
	width:460px !important;
}

.flexcroll .contentwrapper
{
}

.vscrollerbar
{
	position: relative;
	width: 12px;
	/* following is the bit that allows us fixed height scrollbars */
	height: 12px !important;
	/* for fixed height, we force the vscrollerbar class with an !important decleration, and fleXcroll follows suit.*/
	margin: 0 auto; /*background: #5EC0A7 url(scrollbar.png) -36px 0px repeat-y;*/
	background-color: #97895E;
	/* 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: 0px !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. */
	/*background: url(scrollbar.png) -108px -32px no-repeat;*/
}
.vscrollerbarend
{
	/* height of this element should be set */
	height: 0px !important; /*background: url(scrollbar.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: 16px;
	background-color: white;
}
.hscrollerbar
{
	height: 16px;
	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: 28px;
	z-index: 2;
}

/* properties for scroller jog box, just in case */
.scrollerjogbox
{
	width: 36px;
	height: 16px;
	top: auto;
	left: auto;
	bottom: 0px;
	right: 0px;
	background: #37917A;
}


/* Scroll Bar Master Styling Ends Here */

