/*
.scroll-track-top { height:18px; width:14px; background-image: url('gfx/handle_top.jpg'); }

.scroll-track-bot { height:18px; width:14px; background-image: url('gfx/handle_bottom.jpg'); }

.scroll-track { background-image: url('gfx/handle_bg.jpg'); }

.scroll-handle-top { height: 3px; width: 14px; background-image: url('gfx/handle_mid.jpg'); cursor: pointer; display: none !important;}

.scroll-handle-bot { height: 3px; width: 14px; background-image: url('gfx/handle_mid.jpg'); cursor: pointer; display: none !important;}

.scroll-handle { height:3px; width:14px; background-image: url('gfx/handle_mid.jpg'); background-repeat:no-repeat; cursor:pointer;}
*/

.scroller .jScrollPaneTrack {
    background: url('gfx/handle_bg.jpg') repeat-y;
}
.scroller .jScrollPaneDrag {
    background: url('gfx/slider_middle.jpg') repeat-y;
}
.scroller .jScrollPaneDragTop {
    background: url('gfx/slider_top.jpg') no-repeat;
    height: 1px;
}
.scroller .jScrollPaneDragBottom {
    background: url('gfx/slider_bottom.jpg') no-repeat;
    height: 1px;
}
.scroller a.jScrollArrowUp {
    height: 18px;
    background: url('gfx/handle_top.jpg') no-repeat;
}
.scroller a.jScrollArrowUp:hover {
    background-position: 0 0;
}
.scroller a.jScrollArrowDown {
    height: 18px;
    background: url('gfx/handle_bottom.jpg') no-repeat;
}
.scroller a.jScrollArrowDown:hover {
    background-position: 0 0;
}


.jScrollPaneContainer {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.jScrollPaneTrack {
	position: absolute;
	cursor: pointer;
	right: 0;
	top: 0;
	height: 100%;
	background: #aaa;
}
.jScrollPaneDrag {
	position: absolute;
	background: #666;
	cursor: pointer;
	overflow: hidden;
}
.jScrollPaneDragTop {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
.jScrollPaneDragBottom {
	position: absolute;
	bottom: 0;
	left: 0;
	overflow: hidden;
}
a.jScrollArrowUp {
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	text-indent: -2000px;
	overflow: hidden;
	/*background-color: #666;*/
	height: 9px;
}
a.jScrollArrowUp:hover {
	/*background-color: #f60;*/
}

a.jScrollArrowDown {
	display: block;
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	text-indent: -2000px;
	overflow: hidden;
	/*background-color: #666;*/
	height: 9px;
}
a.jScrollArrowDown:hover {
	/*background-color: #f60;*/
}
a.jScrollActiveArrowButton, a.jScrollActiveArrowButton:hover {
	/*background-color: #f00;*/
}

