/*
 * 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;
}

.jspScrollable{
	outline:none;
	}

.jspPane
{

position: absolute;
/*width:99% !important;*/
}

.jspVerticalBar
{
	position: absolute;
	top: 0;
	right: 0;
	/*width: 10px;*/
	width:4px;
	height: 100%;
	background: #FFF;
}

.jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
	background: #FFF;
}

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

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	/*background:#FFFFFF;*/
	background:#000;
	position: relative;
}

.jspDrag
{
	/*background: #333333;
    background: -moz-linear-gradient(top,  #333333 0%, #333333 50%, #0a0e0a 51%, #0a0809 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#333333), color-stop(50%,#333333), color-stop(51%,#0a0e0a), color-stop(100%,#0a0809));
    background: -webkit-linear-gradient(top,  #333333 0%,#333333 50%,#0a0e0a 51%,#0a0809 100%);
    background: -o-linear-gradient(top,  #333333 0%,#333333 50%,#0a0e0a 51%,#0a0809 100%);
    background: -ms-linear-gradient(top,  #333333 0%,#333333 50%,#0a0e0a 51%,#0a0809 100%);
    background: linear-gradient(top,  #333333 0%,#333333 50%,#0a0e0a 51%,#0a0809 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#0a0809',GradientType=0 );*/
	background: #d7d7d7;
	/*background: -moz-linear-gradient(top,  #fff 0%, #fff 50%, #D7D7D7 51%, #D7D7D7 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(50%,#fff), color-stop(51%,#D7D7D7), color-stop(100%,#D7D7D7));
	background: -webkit-linear-gradient(top,  #fff 0%,#fff 50%,#D7D7D7 51%,#D7D7D7 100%);
	background: -o-linear-gradient(top,  #fff 0%,#fff 50%,#D7D7D7 51%,#D7D7D7 100%);
	background: -ms-linear-gradient(top,  #fff 0%,#fff 50%,#D7D7D7 51%,#D7D7D7 100%);
	background: linear-gradient(top,  #fff 0%,#fff 50%,#D7D7D7 51%,#D7D7D7 100%);*/
	/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#D7D7D7' );*/
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}

.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;
}