.jScrollPaneContainer {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.jScrollPaneTrack {
	position: absolute;
	cursor: pointer;
	right: 0;	/* added by dean because w/o it there is space between the body and scrollbar so the bg image bleeds through */
	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;	/* added by dean because w/o it there is space between the body and scrollbar so the bg image bleeds through */
	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;	/* added by dean because w/o it there is space between the body and scrollbar so the bg image bleeds through */
	text-indent: -2000px;
	overflow: hidden;
	/*background-color: #666;*/
	height: 9px;
}
a.jScrollArrowDown:hover {
	/*background-color: #f60;*/
}
a.jScrollActiveArrowButton, a.jScrollActiveArrowButton:hover {
	/*background-color: #f00;*/
}


			/* IE SPECIFIC HACKED STYLES */
			* html .jScrollPaneTrack {
				right: 0;	/* added by dean because w/o it there is space between the body and scrollbar so the bg image bleeds through */
			}
			* html .jScrollArrowUp {
				right: 0;	/* added by dean because w/o it there is space between the body and scrollbar so the bg image bleeds through */
			}
			* html .jScrollArrowDown {
				right: 0;	/* added by dean because w/o it there is space between the body and scrollbar so the bg image bleeds through */
			}
			/* /IE SPECIFIC HACKED STYLES */