.scrollPane
{
        width: 420px;
        overflow: auto;
        background: inherit;
        float: left;
        padding: 0;
        margin: 0;
}


.jScrollPaneContainer
{
	position: relative;
	overflow: hidden;
	z-index: 1;
	width: 420px;
	height: 400px;
	background: inherit;
}

.jScrollPaneTrack 
{
	position: absolute;
	cursor: pointer;
	right: 0;
	top: 0;
	height: 100%;
	background: #aaa;
	width: 5px;
}
.jScrollPaneDrag {
	position: absolute;
	background: red;
	cursor: pointer;
	overflow: hidden;
	width: 10px;
}
.jScrollPaneDragTop {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 10px;
}
.jScrollPaneDragBottom {
	position: absolute;
	bottom: 0;
	left: 0;
	overflow: hidden;
	width: 10px;

}
a.jScrollArrowUp {
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	text-indent: -2000px;
	overflow: hidden;
	background-color: green;
	height: 9px;
	width: 5px;
}
a.jScrollArrowUp:hover {
	background-color: #f60;
	width: 5px;
}

a.jScrollArrowDown {
	display: block;
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	text-indent: -2000px;
	overflow: hidden;
	background-color: green;
	height: 9px;
	width: 5px;
}

