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

.jspVerticalBar
{
	position: absolute;
	top: 0;
	right: 0;
	width: 16px;
	height: 100%;
	background: red;
}

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

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

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	background: #333333;
	position: relative;
	-moz-border-radius: 4px ;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.75), 0px 1px 1px 0px rgba(72,72,72,1);
	-moz-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.75), 0px 1px 1px 0px rgba(72,72,72,1);
	box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.75), 0px 1px 1px 0px rgba(72,72,72,1);
}

.jspDrag
{
	background: #424549;
	position: absolute;
	top: -2px;
	left: 0;
	cursor: pointer;
	border:1px solid #1a1c1f;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#4b4e53), to(#3a3d40));
	background: -moz-linear-gradient(top, #4b4e53, #3a3d40);
    background: linear-gradient(#4b4e53, #3a3d40 100%);
	-moz-border-radius: 6px ;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.33), inset 0px 1px 1px 0px rgba(95,97,104,1);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.33), inset 0px 1px 1px 0px rgba(95,97,104,1);
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.33), inset 0px 1px 1px 0px rgba(95,97,104,1);
	text-align:center;
}
.jspDrag:after {
    content: "| | |";
    position: absolute;
    top: 2px;
    left: 14px;
	color: #ffffff;
    font-size: 5px;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
	float: left;
}
.jspHorizontalBar .jspTrack {
	height: 9px;
	margin-top:2px;
}
.jspHorizontalBar .jspDrag
{
	height: 13px;
}

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