	#scrolldiv{
	/* The total width of the scrolling div including scrollbar */
		width:36px;
	height:400px;	/* The height of the scrolling div */
	position: relative;
	left: 285px;
	top: 85px;
	}
	#scrolldiv_parentContainer{
	width:359px;	/* Width of the scrolling text */
	height:100%;
	overflow:hidden;
	float:left;
	position:relative;
	border:none;
	border-color:#7c8992;
	border-width:1px;
	left: 20px;
	top: 10px;
	}
	
	/*
	CSS for the scrolling content 
	*/
	#scrolldiv_content{
	padding: 5px;
	position:relative;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height:130%;
	color: #695E4A;
	width: 323px;
	height: 200px;
	
	}
	
	/*
	The scrollbar slider 
	*/
	#scrolldiv_slider{
	width:1px;
	margin-left:2px;
	height:185px;
	position:absolute;
	left:350px;
	top: 20px;
	}
	
	/*
	The scrollbar (The bar between the up and down arrow )
	*/
	#scrolldiv_scrollbar{
	background-color:#6a7780;
	width:1px;
	height:180px;	/* Total height - 40 pixels */
	border:none;
	position:absolute;
	left: 6px;
	margin-top:17px;
	top: 1px;
	}
	/*
	The scrollbar handle
	*/
	#scrolldiv_theScroll{
	margin:1px;
	width:10px;
	height:38px;
	background-color:#e3cbaf;
	position:relative;
	margin-top:-1px;
	top:0px;
	left:-5px;
	cursor:pointer;
	}
	/*
	Scroll buttons(The up and down arrows)
	*/
	#scrolldiv_scrollUp,#scrolldiv_scrollDown{
		width:15px;
		height:16px;
		border:none;
		color: #FFFFFF;
		text-align:center;
		font-size:16px;
		line-height:16px;
		cursor:pointer;
	}
	#scrolldiv_scrollUp{
		margin-bottom:-3px;
		
	}
	#scrolldiv_scrollDown{
	margin-top:1px;
	top: 200px;
	position:absolute;
	}
	#scrolldiv_scrollDown span,#scrolldiv_scrollUp span{
		font-family: Symbol;
	}
