/*
	dark rgb(102,102,102)
	medium	rgb(152,153,153)
	gray:	rgb(204,204,204)
	bright: white;
*/
.dynamic-slider-control {
	position:			relative;
	-moz-user-focus:	normal;
	-moz-user-select:	none;
	cursor:				default;
	height:				15px;
	background-image: 	url("horizontal_scrollbar_background.gif");
}

.horizontal {
	width:				260px;
	height:				15px;
}

.vertical {
	width:				29px;
	height:				80px;
}

.dynamic-slider-control input {
	display:	none;
}

.dynamic-slider-control .handle {
	position:			absolute;	
	font-size:			1px;
	overflow:			hidden;
	-moz-user-select:	none;
	cursor:				default;
}

.dynamic-slider-control.horizontal .handle {
	width:				23px;
	height:				15px;
	background-image:	url("horizontal_scrollbar_knobsmall.gif");
}

.dynamic-slider-control.horizontal .handle div {}
.dynamic-slider-control.horizontal .handle.hover {}

.dynamic-slider-control.vertical .handle {
	width:				25px;
	height:				13px;
	background-image:	url("css/handle.vertical.png");

}

.dynamic-slider-control.vertical .handle.hover {
	width:				25px;
	height:				13px;
	background-image:	url("css/handle.vertical.hover.png");
}

.dynamic-slider-control .line {
	position:			absolute;
	font-size:			0.01mm;
	behavior:			url("css/boxsizing.htc"); /* ie path bug */
	box-sizing:			content-box;
	-moz-box-sizing:	content-box;
}

.dynamic-slider-control.vertical .line {
	width:				1px;
}

.dynamic-slider-control.horizontal .line {
	height:				15px;
}

.dynamic-slider-control .line div {
	background-image: 	url("horizontal_scrollbar_background.gif");
}

.leftbut {
	position:			relative;
	-moz-user-focus:	normal;
	-moz-user-select:	none;
	cursor:				default;
	font-size:			0.01mm;
	height:				15px;
	width:				17px;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background: url("horizontal_scrollbar_arrowLeft.gif") left center;
}

.rightbut {
	position:			relative;
	-moz-user-focus:	normal;
	-moz-user-select:	none;
	cursor:				default;
	font-size:			0.01mm;
	height:				15px;
	width:				17px;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background: url("horizontal_scrollbar_arrowRight.gif") right center;
}