/* CSS Document */

#dhtmlgoodies_scrolldiv{
	/* The total width of the scrolling div including scrollbar */
	width:530px;
	height:500px;	/* The height of the scrolling div */
}
#scrolldiv_parentContainer{
	width:500px;	/* Width of the scrolling text */
	height:100%;
	overflow:hidden;
	border:1px solid #BC8FBD;
	float:left;
	position:relative;
}

/*
CSS for the scrolling content 
*/
#scrolldiv_content{
	padding-left: 5px;
	padding-right: 5px;
	position:relative;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height:130%;
	color: #000000;
}

/*
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 #BC8FBD;
	position:relative;
	
}
/*
The scrollbar handle
*/
#scrolldiv_theScroll{
	margin:1px;
	width:13px;
	height:13px;
	background-color:#BC8FBD;
	position:absolute;	
	top:0px;
	left:0px;
	cursor:pointer;
}

