	#dhtmlgoodiesscrolldiv{
		/* The total width of the scrolling div including scrollbar */
		width:550px;
		height:320px;	/* The height of the scrolling div */
		background: none;
	}
	#scrolldivparentContainer{
		width:520px;	/* Width of the scrolling text */
		height:220px;
		overflow:hidden;
		border:1px solid #443f20;
		float:left;
		position:relative;
	}
	
	/*
	CSS for the scrolling content 
	*/
	#scrolldivcontent{
		padding: 5px;
		position:relative;
		font-family: Arial, sans-serif;
		font-size: 0.9em;
		line-height:130%;
		color: #877d3f;
	}
	
	/*
	The scrollbar slider 
	*/
	#scrolldivslider{
		width:15px;
		margin-left:2px;
		height:220px;
		float:left;
	}
	
	/*
	The scrollbar (The bar between the up and down arrow )
	*/
	#scrolldivscrollbar{
		width:10px;
		height:180px;	/* Total height - 40 pixels */
		border:1px solid #877d3f;
		position:relative;
		
	}
	/*
	The scrollbar handle
	*/
	#scrolldivtheScroll{
		margin:1px;
		width:8px;
		height:12px;
		position:absolute;	
		top:0px;
		left:0px;
		cursor:pointer;
	}
	/*
	Scroll buttons(The up and down arrows)
	*/
	#scrolldivscrollUp,#scrolldivscrollDown{
		width:11px;
		height:11px;
		text-align:center;
		font-size:11px;
		line-height:11px;
		cursor:pointer;
	}
	#scrolldivscrollUp{
		margin-bottom:2px;
	}
	#scrolldivscrollDown{
		margin-top:2px;
	}
	#scrolldivscrollDown span,#scrolldivscrollUp span{
		font-family: Symbol;
	}

