/*
 * 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: 13px;
	width: 7px;
	height: 100%;
}

.jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 7px;
}

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

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	background: none repeat scroll 0% 0% rgba(0, 0, 0,0.2);
	position: relative;
	-webkit-border-radius: 36px; 
     border-radius: 36px; 
}

.jspDrag
{
	background: #ffcc00;
	position: relative;
	top: 0;
	left: -1px;
	cursor: pointer;
	-webkit-border-radius: 50%; 
     border-radius: 50%; 
	color: rgb(51, 106, 5);
    font-size: 9px;
    padding: 0 5px;
    text-shadow: 0px -1px 0px rgba(30, 30, 30, 0.8);
    -webkit-border-radius: 18.64864864864865px;
    -moz-border-radius: 18.64864864864865px;
    border-radius: 18.64864864864865px;
    background: rgb(234, 154, 0);
    background: -moz-linear-gradient(90deg, rgb(234, 154, 0) 30%, rgb(255, 204, 0) 70%);
    background: -webkit-linear-gradient(90deg, rgb(234, 154, 0) 30%, rgb(255, 204, 0) 70%);
    background: -o-linear-gradient(90deg, rgb(234, 154, 0) 30%, rgb(255, 204, 0) 70%);
    background: -ms-linear-gradient(90deg, rgb(234, 154, 0) 30%, rgb(255, 204, 0) 70%);
    background: linear-gradient(0deg, rgb(234, 154, 0) 30%, rgb(255, 204, 0) 70%);
}

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

.jspArrow
{
	background: #50506d;
	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: #eeeef4;
	float: left;
	height: 100%;
}

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