.jspContainer {
	overflow: hidden;
	position: relative;
}

.jspContainer:hover > .jspVerticalBar {
	opacity: 1;
}

.jspPane {
	position: absolute;
}
/*
.jspVerticalBar {
	position: absolute;
	top: 0;
	right: 1px;
	width: 5px;
	height: 400px;
	background: rgba(0,0,0,0);
	opacity: 0;
	transition: all 0.5s ease-in-out 0s;
}
*/

.jspVerticalBar {
	position: absolute;
	top: 0;
	right: 1px;
	width: 5px;
	height: 400px;
	background: rgba(0,0,0,0);
	
}

.jspVerticalBar:hover {
	opacity: 1;
}

.jspHorizontalBar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 400px;
	height: 5px;
	background: rgba(0,0,0,0);
}

.jspVerticalBar *,
.jspHorizontalBar * {
	margin: 0;
	padding: 0;
}

.jspCap {
	display: none;
}

.jspHorizontalBar .jspCap {
	float: left;
}

.jspTrack {
	height: auto;
	background: rgba(0,0,0,0);
	position: relative;
	border-radius: 5px;
}

.jspDrag {
	border-radius: 3px;
	width: 3px!important;
	position: relative;
	background: rgba(255,255,255,0.9);
	box-shadow: 0 0 3px rgba(0,0,0,0.3);
	top: 1px;
	left: 1px;
	cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
	float: left;
	height: 400px;
}

.jspArrow {
	background: #808080;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}

.jspArrow.jspDisabled {
	cursor: default;
	background: #80808d;
}

.jspVerticalBar .jspArrow {
	height: 16px;
}

.jspHorizontalBar .jspArrow {
	width: 16px;
	float: left;
	height: 100%;
}

.jspVerticalBar .jspArrow:focus {
	outline: none;
}

.jspCorner {
	background: #fff;
	float: left;
	height: 100%;
}

* html .jspCorner {
	margin: 0 -3px 0 0;
}