/*
 * 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: 5px;
	height: 100%;
}

.jsphorizontalbar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
}

.jspverticalbar *,
.jsphorizontalbar *
{
	margin: 0;
	padding: 0;
	opacity:inherit;
	filter:inherit;
}

.jspcap
{
	display: none;
}

.jsphorizontalbar .jspcap
{
	float: left;
}

.jsptrack
{
	background: transparent;
	position: relative;
}

.jspdrag
{
	background: #666;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;		
	-ms-border-radius:5px;			
	-o-border-radius:5px;				
}

.jsphorizontalbar .jsptrack,
.jsphorizontalbar .jspdrag
{
	float: left;
	height: 100%;
}


.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;
}