div#scrolldiv_parentContainer{
	width:600px;	/* Width of the scrolling text */
	overflow:auto;
	float:left;
	position:relative;
	border:0px;
	height:580px;
	padding:0px 0px 0px 0px;
}

/* CSS for the scrolling content */

div#scrolldiv_content {
	padding: 0px 10px 20px 0px;
	width:570px;
	position:relative;
	font-family: Arial;
	font-size: 12px;
	color: #333333;
	border:0px solid blue;
	min-height:580px;
	z-index:100;
}

/* The scrollbar slider */

div#scrolldiv_slider{
	height:600px;
	width:26px;
	float:left;
	padding:0px;
}

/* The scrollbar (The bar between the up and down arrow ) */

div#scrolldiv_scrollbar{
	width:15px;
	height:564px;              /* Total height - 30 pixels */
	position:relative;
	border:0px;
	background:#9B9A88;
	margin:0px;
}

/* The scrollbar handle */

div#scrolldiv_theScroll{
	margin:0px;
	width:15px;
	height:20px;
	background-color:#E7E7E2;
	position:absolute;	
	top:0px;
	left:0px;
	cursor:pointer;
}

/* Scroll buttons(The up and down arrows) */

div#scrolldiv_scrollUp,#scrolldiv_scrollDown{
	width:15px;
	height:15px;
	font-size:0px;
	cursor:pointer;
}
div#scrolldiv_scrollUp{
	margin:0px 0px 0px 0px;
	padding:0px 0px 3px 0px;
}
div#scrolldiv_scrollDown{
	margin:0px 0px 0px 0px;
	padding:3px 0px 0px 0px;
}