
#textFrame {
	position:relative;
	left:0px;
	top:0px;
	width:448px;
	height:346px;
	padding:0px 0px 0px 0px;
	margin: 0px 0px 0px 10px;
	z-index:100;
	border: 0px solid #000000;
}

	#textBox {
		position:relative;
		width:448px;
		height:340px;
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
}

	#scrolldiv_parentContainer {
		width:423px;	/* Width of the scrolling text */
		height:100%;
		overflow:hidden;
		float:left;
		position:relative;
	}
	
	/*
	CSS for the scrolling content 
	*/
	#scrolldiv_content {
		position:relative;

	}
	
	/*
	The scrollbar slider 
	*/
	#scrolldiv_slider {
		width:13px;
		height:100%;
		float:right;
	
	}
	
	/*
	The scrollbar (The bar between the up and down arrow )
	*/
	#scrolldiv_scrollbar {
		margin-top:0px;
		margin-bottom:0px;
		width:15px;
		height:312px;	/* Total height - 340 pixels */
		position:relative;
		background-image:url(../images/sb_slider.gif);
		background-repeat:no-repeat;
		background-position:center;
	}

	/*
	The scrollbar handle
	*/
	#scrolldiv_theScroll {
		margin-top:1px;
		width:13px;
		height:25px;
		position:absolute;	
		top:0px;
		left:1px;
		cursor:pointer;
		background-image:url(../images/sb_btn_slider.gif);
		background-repeat:no-repeat;
	}

	/*
	Scroll buttons(The up and down arrows)
	*/
	#scrolldiv_scrollUp, #scrolldiv_scrollDown {
	    margin:0px;
		padding:0px;
		width:15px;
		height:17px;
		cursor: pointer;
		background-repeat:no-repeat;
		font-size:9px;
	}
	
	#scrolldiv_scrollUp {
		background-image:url(../images/sb_btn_up.gif);
	}

	#scrolldiv_scrollDown {
		background-image:url(../images/sb_btn_down.gif);
	}

