/*
 * 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;
	overflow-y: hidden;
	position: relative;
	padding-right: 27px !important;
	z-index: 1;
}

.jspPane
{
	position: absolute;
	padding: 0px 0 0 0 !important;
	z-index: 2;
}

.jspVerticalBar
{
	position: absolute;
	display: block;
	visibility: visible;
	z-index: 9999;
	top: 0;
	right: 0;
	width: 15px;
	height: 100%;
}

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

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

.jspCap
{
	display: block;
}
.jspCapTop
{
	height: 30px;
}
.jspCapBottom
{
	height: 30px;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	position: relative;
}

.jspDrag
{
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}
.jspVerticalBar .jspTrack
{
	padding: 2px 0;
	background: url("../images/bg-scrollbar-track-y.png") repeat-y center 0;
}
.jspVerticalBar .jspDrag
{
	background: url("../images/bg-scrollbar-thumb-y.png") no-repeat 0 center;
}
.jspVerticalBar .jspDragBottom
{
    background: url("../images/bg-scrollbar-thumb-y-b.png") no-repeat 0 bottom;
    bottom: -4px;
    height: 4px;
    left: 0;
    position: absolute;
    width: 15px;
}
.jspVerticalBar .jspDragTop
{
    background: url("../images/bg-scrollbar-thumb-y-t.png") no-repeat 0 0;
    top: -4px;
    height: 4px;
    left: 0;
    position: absolute;
    width: 15px;
}

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

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

.jspArrow.jspDisabled
{
	cursor: default;
}

.jspVerticalBar .jspArrow
{
	height: 16px;
}

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

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

.jspCorner
{
	float: left;
	height: 100%;
}

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