#livescroll {
	position: relative;
	width: 580px;
	height: 310px;
	left:100px;
	*left:50px;
	margin-top: 10px;
	text-align: left;
	overflow-x: hidden;
	overflow-y: auto;
	display: block; 
	color: #67818A;
}

/* Scroll Bar Master Styling Starts Here */
.scrollgeneric{
	line-height: 1px;
	font-size: 1px;
	position: absolute;
	top: 0; left: 0;
}

.vscrollerbase{
/*	background:url(../images/bgscrollbar.gif) repeat-y center top;*/
	width:24px;
	margin:0px 0 0 0;
}

.vscrollerbar{
	width: 14px;
	/* following is the bit that allows us fixed height scrollbars */
	height: 103px !important;
	/* for fixed height, we force the vscrollerbar class with an !important decleration, and fleXcroll follows suit.*/
	background: url(/site/images/scrollbar.png) no-repeat;
	_background: url(../blank.gif);
	_filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/site/images/scrollbar.png', sizingMethod='crop');
	/* unfortunately, due to limitations of CSS, we cannot provide a color for the background when we are
	using alpha images, thay have to be transparent.*/
	cursor:pointer;
	position:relative;
	left: 8px;
}

/* do not forget to give horizontal scrollbars some color properties even if you don't plan on using them */
	.hscrollerbase {height: 22px;}
	.hscrollerbar {height: 22px; }
	.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: 0px;
	z-index: 4;
}

/* properties for scroller jog box, just in case */
	.scrollerjogbox {
	width: 22px;
	height: 22px;
	top: auto; left: auto;
	bottom: 0px; right: 0px;
}
/* Scroll Bar Master Styling Ends Here */

