/* 
    Document   : scrollbar
    Created on : 24.1.2014, 2:11:08
    Author     : Janci
    Description:
        Purpose of the stylesheet follows.
*/
.jspScrollable .jspContainer{
	overflow: hidden;
	position: relative;
}

.jspScrollable .jspContainer .jspPane {
	position: absolute;
	overflow:visible;
}

.jspScrollable .jspContainer .jspVerticalBar {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 6px;
	padding: 0 2px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.jspScrollable .jspContainer .jspHorizontalBar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
}
.jspScrollable .jspContainer .jspCap
{
	display: none;
}

.jspScrollable .jspContainer .jspTrack {
	position: relative;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: rgba(0,0,0,0);
}
.jspScrollable .jspContainer .jspVerticalBar:hover .jspTrack
{
	/*background-color: rgba(0,0,0,0.1);*/
}

.jspScrollable .jspContainer .jspDrag {
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
	-moz-border-radius: 5px;
	border-radius: 5px;
	opacity: 0.5;
	filter:alpha(opacity=50);
	background-color: #aaa;
}
.jspScrollable .jspHorizontalBar .jspTrack,
.jspScrollable .jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}