#scrolldiv {
	/* The total width of the scrolling div including scrollbar */
	/* text-align:left; */
	/* background-color: trasparent;
	opacity: .8;
	filter: alpha(opacity=80); */
}
#scrolldiv_parentContainer{
	overflow:hidden;
	float:left;
	position:relative;
	z-index:auto;
}
/*
CSS for the scrolling content 
*/
#scrolldiv_content{
	/* padding-left:25px; */
	position:absolute;
}

/*
The scrollbar slider 
*/
#scrolldiv_slider{
	width:15px;
	margin-left:8px;
	/* height:57px; */
	float:left;
	visibility:hidden;
}

/*
The scrollbar (The bar between the up and down arrow )
*/
#scrolldiv_scrollbar{
	width:15px;
	/* height:257px;	Total height - 40 pixels */
	position:relative;
}
/*
The scrollbar handle
*/
#scrolldiv_theScroll{
	margin:1px;
	width:13px;
	height:22px;
	position:absolute;	
	text-align:center;
	cursor:pointer;
	background-image:url(../images/scroll_bar.gif);
	background-repeat:no-repeat;
	background-position:center;
}
/*
Scroll buttons(The up and down arrows)
*/
#scrolldiv_scrollUp,#scrolldiv_scrollDown{
	width:15px;
	height:10px;
	text-align:center;
	cursor:pointer;
}
#scrolldiv_scrollUp{
	margin-bottom:2px;
}
#scrolldiv_scrollDown{
	margin-top:2px;
}
