/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */

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

.jspPane
{
	position: absolute;
}

.jspVerticalBar
{
	position: absolute;
	top: 0;
	/*right:0;*/
	left: 5px;
	width: 10px;
	height:100%;
	/*background: red;*/
}

.jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10px;
	/*background: red;*/
}

#content .jspHorizontalBar {
	bottom:50px;
}

#content .jspHorizontalBar .jspCap
{
	display: block;
	width: 30%;
	height: 100%;
}
#content.zoomout .jspHorizontalBar {
	bottom:12px;
}


.jspCap
{
	display: none;;
}

.jspVerticalBar .jspCap
{
	display:block;
	background: #fff;
	height: 200px;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	width:1px;
	background-color: rgb(109,109,109);
	background-color: rgba(0,0,0,0.1);
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#dadbdd+0,dadbdd+50,dadbdd+100&0.2+0,1+50,0.2+100 */
background: -moz-linear-gradient(top, rgba(218,219,221,0.2) 0%, rgba(218,219,221,1) 50%, rgba(218,219,221,0.2) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(218,219,221,0.2) 0%,rgba(218,219,221,1) 50%,rgba(218,219,221,0.2) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(218,219,221,0.2) 0%,rgba(218,219,221,1) 50%,rgba(218,219,221,0.2) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33dadbdd', endColorstr='#33dadbdd',GradientType=0 ); /* IE6-9 */
	position: relative;
	margin-left:4px;
}

.jspDrag
{
	background-color: #eee;
	/*background-color: rgba(0,0,0,0.1);*/
	position: relative;
	top: 0;
	left: -4px;
	width:9px;
	cursor: pointer;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}

.jspArrow
{
	background: #50506d;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
	padding: 0;
	margin: 0;
}

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

.jspVerticalBar .jspArrow
{
	height: 10px;
}

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

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

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

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}

.jspArrow {
	display:none;
}