/*
 * 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: 30px;
	width: 20px;
	height: 100%;
	bottom:0;
}

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

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

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	position: relative;
    width: 21px;
    margin: auto;
	background:#fff;
	margin-top: -2px;
	-o-box-shadow: -3px 2px 0 #d4d4d4;
	-moz-box-shadow: -3px 2px 0 #d4d4d4;
	-webkit-box-shadow: -3px 2px 0 #d4d4d4;
	box-shadow: -3px 2px 0 #d4d4d4;

}

.jspDrag
{
	background: #b5b5b5;
	position: relative;
	width:17px;
	top: 4px;
	left: 2px;
	bottom:-10px;
	cursor: pointer;
}

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

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

.jspArrow.jspDisabled
{
	cursor: default;
	
}

.jspVerticalBar .jspArrow
{
	height: 10px;
}

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

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

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

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

.jspArrowUp, .jspArrowDown {

}

.jspArrowUp.jspDisabled {
    background-position: 0 -10px;
}
.jspArrowUp {
    background-position: 0 0;
}
.jspArrowDown.jspDisabled {
    background-position: -18px -10px;
}
.jspArrowDown {
    background-position: -18px 0px;
}
.jspDragTop, .jspDragBottom {
    height: 10px;
    width: 14px;
    position: absolute;
    background: #b5b5b5;;
}
.jspDragTop {
    top: 0px;
}
.jspDragBottom {
    bottom: 0px;
}
