#dhtmlgoodies_scrolldiv{ /* The total width of the scrolling div including scrollbar */
width:200px; 
height:230px;	/* The height of the scrolling div */
padding: 10px 0px 6px 10px;
}
#scrolldiv_parentContainer{
		width:150px;	/* Width of the scrolling text */
		height:100%;
		overflow:hidden;
		border:0px solid #BC8FBD;
		float:left;
		position:relative;
    	padding-right: 10px;
	}
	
	/*
	CSS for the scrolling content 
	*/
	#scrolldiv_content{
		padding: 5px 0px 0px 0px;
		position:relative;
    }
	
	/*
	The scrollbar slider 
	*/
	#scrolldiv_slider{
    	width:12px;
    	height:230px;
		float:left;
        background-color: white;		
	}
	
	/*
	The scrollbar (The bar between the up and down arrow )
	*/
	#scrolldiv_scrollbar{
		width:12px;
		height:230px;	/* Total height - 40 pixels */
		border:0px;
		position:relative;
	}
	/*
	The scrollbar handle
	*/
	#scrolldiv_theScroll{
		margin:1px 0px 1px 0px;
		width:12px;
		height:1px;
		position:absolute;	
		top:0px;
		left:0px;
		cursor:pointer;
	}
	/*
	Scroll buttons(The up and down arrows)
	*/
	#scrolldiv_scrollUp,#scrolldiv_scrollDown
	{
	    margin-top: 10px;
		width:12px;
		height:16px;
		border:0px solid #BC8FBD;
		color: #BC8FBD;
		text-align:center;
		font-size:16px;
		line-height:16px;
		cursor:pointer;
		
	}
	#scrolldiv_scrollUp{
		margin-bottom:2px;
	}
	#scrolldiv_scrollDown{
		margin-top:2px; height: 9px;
	}
	#scrolldiv_scrollDown span,#scrolldiv_scrollUp span{
		font-family: Symbol;
	}