/* 
    Document   : jScrollPane
    Created on : 25.08.2009, 14:20:25
    Description:
        Scrollbars
*/

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

.jScrollPaneTrack {
    width: 1px;
	position: absolute;
	cursor: pointer;
	right: 0;
	top: 0;
	background:#fff;
}
.jScrollPaneDrag {
	position: absolute;
	background:#fff;
	cursor: pointer;
	overflow: hidden;
    width: 1px;
	height: 10px;
}
.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: -37px !important;
	left: 110px !important;
	text-indent: -2000px;
	overflow: hidden;
	background:url('../ui/arrow-top.png') no-repeat left top;
    width: 25px !important;
	height: 25px !important;
}

a.jScrollArrowDown {
	display: block;
	position: absolute;
	z-index: 1;
	top: 445px !important;
	left: 110px !important;
	text-indent: -2000px;
	overflow: hidden;
	background:url('../ui/arrow-bottom.png') no-repeat left top;
    width: 25px !important;
	height: 25px !important;
}
