/*
If you don`t know what are you doing,
it`s better not to touch this part, because
something may be goes wrong. You can edit
"In my case" part on line 48, but be carefull.
*/
.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, 
a.jScrollArrowDown {
	display: block;
	position: absolute;
	z-index: 1;
	text-indent: -2000px;
	overflow: hidden;
	height:7px;
}

/*In my case*/
a.jScrollArrowUp {
	background:url(../images/arrow-top.gif) no-repeat 0 0;
	top: 0;
	right: 0;
}
a.jScrollArrowDown {
	background:url(../images/arrow-bot.gif) no-repeat 0 0;
	bottom: 0;
	right: 0;
}
.holder {
	float: right;
	margin: 10px;
}
.scroll-pane {
	width: 100%;
	overflow: auto;
	background: #fff;
	float: right;
}
.jScrollPaneTrack {
	background:#d5e1bb;
}
#pane2 {
	height: 406px;
}
.jScrollPaneDrag {
	background:#9bbc49;
}
.jScrollPaneDragTop {
	background:url(../images/scroll-top.gif) no-repeat 0 0;
	height:5px;
}
.jScrollPaneDragBottom {
	background:url(../images/scroll-bot.gif) no-repeat 0 0;
	height:5px;
}
