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

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

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

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	background: #E7E7E7;
	position: relative;
}

.jspDrag
{
	/*background: #DDECFD;  /*F1F1F2 to E9E9EB to C0C0C4 */
	background-color: #C0C0C4;
	background: -webkit-gradient(linear, left center, right center, from(#F1F1F2), to(#C0C0C4), color-stop(.5,#E9E9EB));
	background: -moz-linear-gradient(left, #F1F1F2 0%, #E9E9EB 50%, #C0C0C4 100%);
	background: url(../img/scrollbar.png) center center no-repeat;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
	border:1px solid #979797;
}

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

.jspArrow
{
	background-color: #EAEAEA;
	background: -webkit-gradient(linear, left center, right center, from(#E3E3E3), to(#EAEAEA), color-stop(.5,#EFEFEF));
	background: -moz-linear-gradient(left, #E3E3E3 0%, #EFEFEF 50%, #EAEAEA 100%);
	text-indent: -20000px;
	display: block;
	cursor: pointer;
	border:1px solid #BDBDBD;
}

.jspArrowDown {
	background-image: url(../img/arrow_down.png);
}
.jspArrowUp {
	background-image: url(../img/arrow_up.png);
}

.jspVerticalBar .jspArrow
{
	height: 12px;
}

.jspVerticalBar .jspArrow .jspArrowUp
 {
	background-image: url(../img/arrow_up.png);
}

.jspArrow .jspArrowUp .jspDisabled
 {
	background-image: url(../img/arrow_up.png);
}

.jspVerticalBar .jspArrow .jspArrowDown
 {
	background-image: url(../img/arrow_down.png);
}

.jspArrow .jspArrowDown .jspDisabled
 {
	background-image: url(../img/arrow_down.png);
}

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