#scrolldiv {
	/* The total width of the scrolling div including scrollbar */
	width:420px;
	height:257px;	/* The height of the scrolling div */
}
#scrolldiv_parentContainer{
	width:390px;	/* Width of the scrolling text */
	height:100%;
	overflow:hidden;
	float:left;
	position:relative;
	z-index:auto;
}
/*
CSS for the scrolling content 
*/
#scrolldiv_content{
	position:absolute;
}

/*
The scrollbar slider 
*/
#scrolldiv_slider{
	width:15px;
	margin-left:8px;
	height:257px;
	float:left;
	visibility:hidden;
}

/*
The scrollbar (The bar between the up and down arrow )
*/
#scrolldiv_scrollbar{
	width:15px;
	height:257px;	/* Total height - 40 pixels */
	position:relative;
}
/*
The scrollbar handle
*/
#scrolldiv_theScroll{
	margin:1px;
	width:13px;
	height:22px;
	position:absolute;	
	top:0px;
	left:0px;
	text-align:center;
	cursor:pointer;
	background-image:url(../images/scroll_bar.gif);
	background-repeat:no-repeat;
	background-position:center;
}
/*
Scroll buttons(The up and down arrows)
*/
#scrolldiv_scrollUp,#scrolldiv_scrollDown{
	width:15px;
	height:16px;
	text-align:center;
	font-size:16px;
	line-height:16px;
	cursor:pointer;
}
#scrolldiv_scrollUp{
	margin-bottom:2px;
}
#scrolldiv_scrollDown{
	margin-top:2px;
}
