/*
 * 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: 16px;
	height: 100%;
	background: red;
}

.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: #d5d5d5;
	position: relative;
}

.jspdrag
{
	background: #7f7f7f;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}

.jsphorizontalbar .jsptrack,
.jsphorizontalbar .jspdrag
{
	float: left;
	height: 100%;
}

.jsparrow
{
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}
.jsparrowup{
	background: ;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.jsparrowdown{
	background: ;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

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