	#dhtmlgoodies_scrolldiv{
		/* The total width of the scrolling div including scrollbar - over written by a script on the page*/
		width:230px;
		height:100%;	/* The height of the scrolling div */
	}
	#scrolldiv_parentContainer{
		width:100%;	/* Width of the scrolling text - overwritten by a script on the page */
		height:100%;
		overflow:hidden;
		border:0px solid #FFF;
		float:left;
		position:relative;
		
		text-align:left;
	}
	
	/*
	CSS for the scrolling content 
	*/
	#scrolldiv_content{
		padding: 5px;
		position:relative;
		font-family: "Arial", Helvetica, sans-serif;
		font-size:.9em;
		font-weight:normal;
		
		color: #333;
		background-color:#60cae4;
	}
	
	#scrolldiv_content a{
		text-decoration:none;
		color:#FFF;
		
	}
	
	#scrolldiv_content ul { /* all lists */
	padding:0px;
	margin:0px;
	list-style:none;
	list-style-type: none;
			
	}
	
	#scrolldiv_content li {
	list-style:none;
	list-style-type:none;
	
	line-height:18px;
	letter-spacing:1px;
	margin-left:0px;
	margin-bottom:20px;
	
	
}
	
	
	/*
	The scrollbar slider 
	*/
	#scrolldiv_slider{
		width:15px;
		margin-left:2px;
		height:500px;
		float:left;
	}
	
	/*
	The scrollbar (The bar between the up and down arrow )
	*/
	#scrolldiv_scrollbar{
		width:15px;
		height:460px;	/* Total height - 40 pixels */
		border:1px solid #C0E5E9;
		position:relative;
		
	}
	/*
	The scrollbar handle
	*/
	#scrolldiv_theScroll{
		margin:1px;
		width:13px;
		height:50px;
		background-color:#C0E5E9;
		position:absolute;	
		top:0px;
		left:0px;
		cursor:pointer;
	}
	/*
	Scroll buttons(The up and down arrows)
	*/
	#scrolldiv_scrollUp,#scrolldiv_scrollDown{
		width:15px;
		height:16px;
		border:1px solid #C0E5E9;
		color: #FFF;
		text-align:center;
		font-size:16px;
		line-height:16px;
		cursor:pointer;
		background-color:#60cae4;
	}
	#scrolldiv_scrollUp{
		margin-bottom:2px;
	}
	#scrolldiv_scrollDown{
		margin-top:2px;
	}
	#scrolldiv_scrollDown span,#scrolldiv_scrollUp span{
		font-family: Symbol;
	}

