/* ------------------------------------------- */
/* ----------------Scrollbars----------------- */
/* ------------------------------------------- */
#scrolldiv_parentContainer{
width:390px;	/* Width of the scrolling text */
	height:100%;
	overflow:hidden;
	float:left;
	position:relative;
	}
	/*	CSS for the scrolling content 	*/
	#scrolldiv_content{
		padding-right: 20px;
		position:relative;
	}
	/*	The scrollbar slider 	*/
	#scrolldiv_slider{
		background-color:#cccccc;
		width:10px;
		margin-left:10px;
		height:190px;
		float:left;
	}
	/*	The scrollbar (The bar between the up and down arrow)	*/
	#scrolldiv_scrollbar{
		position:relative;
	}
	/*	The scrollbar handle	*/
	#scrolldiv_theScroll{
	width:10px;
	height:40px;
	background-color:#bebebe;
	position:absolute;
	top:0px;
	left:0px;
	cursor:pointer;
	}
	/*	Scroll buttons(The up and down arrows)	*/
	#scrolldiv_scrollUp,#scrolldiv_scrollDown{
			background-color:#bebebe;
		width:10px;
		height:15px;
		cursor:pointer;
	}
	#scrolldiv_scrollUp{
		margin-bottom:2px;
	}
	#scrolldiv_scrollDown{
		margin-top:2px;
	}
	#scrolldiv_scrollDown span,#scrolldiv_scrollUp span{
		font-family: Symbol;
	}

