#scrolldiv{
		/* The total width of the scrolling div including scrollbar */
		width:550px;
		height:500px;	/* The height of the scrolling div */
		float:right;
  		margin-top:25px;
	}
	#scrollContainer{
		width:420px;	/* Width of the scrolling text */
		height:100%;
		overflow:hidden;
		border:0px solid #BC8FBD;
		float:left;
		position:relative;
	}
	
	/*
	CSS for the scrolling content 
	*/
	#ScrollContent{
		padding: 5px;
		position:relative;
		
		line-height:130%;
		color: #333;
		text-align: left;
	}
	#ScrollContent p{margin-bottom:10px;}
	/*
	The scrollbar slider 
	*/
	#scroll_slider{
		width:15px;
		margin-left:2px;
		height:500px;
		float:right;
	}
	
	/*
	The scrollbar (The bar between the up and down arrow )
	*/
	#scrollbar{
		width:10px;
		height:460px;	/* Total height - 40 pixels */
		border:0px solid #BC8FBD;
		position:relative;
		
	}
	/*
	The scrollbar handle
	*/
	#theScroll{
		margin:1px;
		width:8px;
		height:8px;
		background-color:#005aa0;
		position:absolute;	
		top:0px;
		left:0px;
		cursor:pointer;
	}
	/*
	Scroll buttons(The up and down arrows)
	*/
	#scrollUp,#scrollDown{
		width:10px;
		height:10px;
		border:0px solid #BC8FBD;
		color: #BC8FBD;
		text-align:center;
		font-size:16px;
		line-height:16px;
		cursor:pointer;
	}
	#scrollUp{
		margin-bottom:8px;
	}
	#scrollDown{
		margin-top:8px;
	}
	#scrollDown span,#scrollUp span{
		font-family: Symbol;
	}
