#dhtmlgoodies_scrolldiv{
		/* The total width of the scrolling div including scrollbar */
		width:240px;float:left;
		height:500px;	/* The height of the scrolling div */
	}
	#scrolldiv_parentContainer{
		width:240px;	/* Width of the scrolling text */
		height:100%;
		overflow:hidden;
		border:0px solid #BC8FBD;
		float:left;
		position:relative;
		
	}
	
	/*
	CSS for the scrolling content 
	*/
	#scrolldiv_content{
		padding: 5px;
		position:relative;
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
		font-size: 0.9em;
		
		color: #333;
		float:left;
	}
	
	/*
	The scrollbar slider 
	*/
	#scrolldiv_slider{
		width:15px;
		margin-left:2px;
		height:360px;
		float:left;
	}
	
	/*
	The scrollbar (The bar between the up and down arrow )
	*/
	#scrolldiv_scrollbar{
	margin-left:9px;
		width:1px;
		height:360px;	/* Total height - 40 pixels */
		border-right:1px solid #7F8078;
		position:relative;
		
	}
	/*
	The scrollbar handle
	*/
	#scrolldiv_theScroll{
		margin-left:-1px;
		width:7px;
		height:40px;
		background-color:#C0121B;
		position:absolute;	
		top:0px;
		left:0px;
		cursor:pointer;
	}
	/*
	Scroll buttons(The up and down arrows)
	*/
	#scrolldiv_scrollUp,#scrolldiv_scrollDown{
		width:24px;
		height:24px;
		border:0px solid #BC8FBD;
		color: #BC8FBD;
		text-align:center;
		font-size:32px;
		line-height:32px;
		cursor:pointer;
	}
	#scrolldiv_scrollUp{
		margin-bottom:2px;
	}
	#scrolldiv_scrollDown{
		margin-top:2px;
	}
	#scrolldiv_scrollDown span,#scrolldiv_scrollUp span{
		font-family: Symbol;
	}
