
.jScrollPaneContainer {
    position: relative;
	overflow: hidden;
	z-index: 1;
	/*border: thin solid magenta;*/
}

.jScrollPaneTrack {
	position: absolute;
	cursor: pointer;
	/* Position the element 100px off to the right, so that it can be moved in when the newspanel expands */
	right: 0;
	top: 0;
	height: 100%;
	background: #f2f2f2;
	/*border-left:thin solid #aaaaaa;*/
	/*border:thin solid magenta;*/
}
.jScrollPaneDrag {
	position: absolute;
	right: 0px;
    background: url(images/scrollpanedrag.gif) repeat-y;
	cursor: pointer;
	overflow: hidden;
}

.jScrollPaneDragTop {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	background: url(images/scrollpanedragTop.gif) no-repeat;
	/*border:thin solid magenta;*/
	height:0px;
}
.jScrollPaneDragBottom {
	position: absolute;
	bottom: 0;
	left: 0;
	overflow: hidden;
	background: url(images/scrollpanedragBottom.gif) no-repeat;
    /*border:thin solid magenta;*/
	height:0px;
}

a.jScrollArrowUp {
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0px;
	text-indent: -2000px;
	overflow: hidden;
	background: url(images/scrollpanedragTop.gif) no-repeat;
	height: 15px;
}
a.jScrollArrowUp:hover {
	background-color: #8c8c00;
}

a.jScrollArrowDown {
	display: block;
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0px;
	text-indent: -2000px;
	overflow: hidden;
	background: url(images/scrollpanedragBottom.gif) no-repeat;
	height: 15px;
}
a.jScrollArrowDown:hover {
	background-color: #8c8c00;
}
a.jScrollActiveArrowButton, a.jScrollActiveArrowButton:hover {
	background-color: #008c8c;
}
