/*
 * 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.
 */
:focus {
  outline-color: transparent;
  outline-style: none;
}
.jspContainer
{
	overflow: hidden;
	position: relative;
	outline: none;
}

.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: #fff url( ../img/scroll-track.gif ) center center no-repeat;
	position: relative;
}

.jspDrag
{
	background-color: #f1f1f1;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
	height: 40px;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}
a.jspArrow {
	border: none;
}
.jspArrow
{
	background-image: url('../img/scroll-arrows.png');
	background-repeat: no-repeat;
	
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}

.jspArrow.jspDisabled
{
	cursor: default;
	background: #fff;
}

.jspVerticalBar .jspArrow
{
	height: 16px;
}

.jspHorizontalBar .jspArrow
{
	width: 16px;
	float: left;
	height: 100%;
}

.jspVerticalBar .jspArrow:focus
{
	outline: none;
}
.jspHorizontalBar, .jspVerticalBar {
	background: #fff;
}
.jspVerticalBar>.jspActive, .jspArrow:hover {
	background-image: url('../img/scroll-arrows.png');
}
.jspVerticalBar>.jspDisabled,
.jspVerticalBar>.jspDisabled:hover,
.jspHorizontalBar>.jspDisabled,
.jspHorizontalBar>.jspDisabled:hover
{
	background-color: transparent;
	background-image: url('../img/scroll-arrows.png');
	background-repeat: no-repeat;
}
.jspVerticalBar .jspArrow {
	height: 9px;
}

.jspHorizontalBar .jspArrow {
	width: 9px;
}

.jspArrowUp {
	background-position: 0 0;
}

.jspArrowDown {
	background-position: 0 -31px !important; 
}

.jspCorner
{
	background: #eeeef4;
	float: left;
	height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}
