#scrolldiv_parentContainer{
	width:500px;	/* Width of the scrolling text */
	height:100%;
	overflow:hidden;
	border:1px solid #BC8FBD;
	float:left;
	position:relative;
}
/*
CSS for the scrolling content 
*/
#scrolldiv_content{
	padding: 2px;
	position:relative;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height:130%;
	color: #333;
}

/*
The scrollbar slider 
*/
#scrolldiv_slider{
	width:9px;
	margin-left:2px;
	height:500px;
	float:left;
}

/*
The scrollbar (The bar between the up and down arrow )
*/
#scrolldiv_scrollbar{
	width:9px;
	height:460px;	/* Total height - 40 pixels */
	border:1px solid #BC8FBD;
	position:relative;
	
}
/*
The scrollbar handle
*/
#scrolldiv_theScroll{
	margin:1px;
	width:7px;
	height:13px;
	background-color:#BC8FBD;
	position:absolute;	
	top:0px;
	left:0px;
	cursor:pointer;
}
/*
Scroll buttons(The up and down arrows)
*/
#scrolldiv_scrollUp,#scrolldiv_scrollDown{
	width:9px;
	height:16px;
	border:1px solid #BC8FBD;
	color: #BC8FBD;
	text-align:center;
	font-size:16px;
	line-height:16px;
	cursor:pointer;
}
#scrolldiv_scrollUp{
	margin-bottom:2px;
	background: url('images/arrow_up.gif') no-repeat 2px;
}
#scrolldiv_scrollDown{
	margin-top:2px;
	background: url('images/arrow_down.gif') no-repeat 2px;
}

