	#dhtmlgoodies_scrolldiv{
		/* The total width of the scrolling div including scrollbar */
		width:360px;
		height:340px;	/* The height of the scrolling div */
	}
	#scrolldiv_parentContainer{
		width:360px;	/* Width of the scrolling text */
		height:360px;
		overflow:hidden;
		float:left;
		position:relative;
	}
	
	/*
	CSS for the scrolling content 
	*/
	#scrolldiv_content{
		padding: 0px 10px 0px 0px;
		position:relative;
		font-family: Georgia, "Times New Roman", Times, serif;
		font-size: 14px;
		line-height:18px;
		color: #333333;
	}
	
	/*
	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{
		width:15px;
		height:360px;	/* Total height - 40 pixels */
		border-left:1px solid #EEEEEE;
		border-right:1px solid #EEEEEE;
		position:relative;
		background: transparent url(../images/scrollbar_bgndline.gif) repeat-y scroll right top;		
	}
	/*
	The scrollbar handle
	*/
	#scrolldiv_theScroll{
		margin:1px;
		width:13px;
		height:3px;
		background-color:#666666;
		position:absolute;	
		top:0px;
		left:0px;
		cursor:pointer;
	}	/*
	Scroll buttons(The up and down arrows)
	*/
	#scrolldiv_scrollUp{
		width:15px;
		height:16px;
		border-top:1px solid #EEEEEE;
		border-left:1px solid #EEEEEE;
		border-right:1px solid #EEEEEE;
		text-align:center;
		font-size:16px;
		line-height:16px;
		cursor:pointer;
	}
	#scrolldiv_scrollDown{
		width:15px;
		height:16px;
		border-bottom:1px solid #EEEEEE;
		border-left:1px solid #EEEEEE;
		border-right:1px solid #EEEEEE;
		text-align:center;
		font-size:16px;
		line-height:16px;
		cursor:pointer;
	}
	#scrolldiv_scrollUp{
		margin-bottom:0px;
	}
	#scrolldiv_scrollDown{
		margin-top:0px;
	}
	#scrolldiv_scrollDown span,#scrolldiv_scrollUp span{
		font-family: Symbol;
	}
