#scrolldiv {
	/* The total width of the scrolling div including scrollbar */
	width:620px;
	height:115px;	/* The height of the scrolling div */
	margin-bottom: 5px;
}

#scrolldiv_parentContainer{
	width:550px;	/* Width of the scrolling text */
	height:115px;
	overflow:hidden;
	float:left;
	position:relative;
	z-index:auto;
}
/*
CSS for the scrolling content 
*/
#scrolldiv_content{
	position:absolute;
	top: 10px;
	left: 0px;
}
#scrolldiv_content p {
	padding-top: 0px;
	margin-top: 0px;
	margin-bottom: 15px;
}
/*
The scrollbar slider 
*/
#scrolldiv_slider{
	width:15px;
	margin-left:8px;
	height:90px;
	float:left;
	visibility:hidden;
}

/*
The scrollbar (The bar between the up and down arrow )
*/
#scrolldiv_scrollbar{
	width:15px;
	height:110px;	/* 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;
}
