/*
 * 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;
	display: block;

}

.jspPane
{
	position: absolute;

}

.jspVerticalBar
{
	position: absolute;
	top: 0;
	width: 16px;
	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: right;

}

.jspTrack
{
	position: relative;

}

.jspDrag
{
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;

}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
	float: right;
	height: 100%;

}

.jspArrow
{

	text-indent: -20000px;
	display: block;
	cursor: pointer;
}

.jspArrow.jspDisabled
{
	cursor: default;
	background: #80808d;
}

.jspVerticalBar .jspArrow
{
	height: 16px;
}



.jspVerticalBar .jspArrow:focus
{
	outline: none;

}

.jspCorner
{

	background: #eeeef4;
	float: right;
	height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}

.jspHorizontalBar,
.jspVerticalBar,
.jspTrack
{


	width: 7px;
		-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.jspDrag
{
	background:  #dddddd;

	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.jspTrack .jspActive,
.jspTrack .jspHover,
.jspDrag:hover
{
	background: #cccccc;
}

.jspTrack:hover
{
	background: #f0f0f0;
}

.jspArrow
{
	background: url('../images/icons/scroll_arrows.png') no-repeat;
		opacity:0.5; 

}

.jspVerticalBar>.jspActive,
.jspArrow:hover
{
	opacity:1.0; 

}

.jspVerticalBar>.jspDisabled,
.jspVerticalBar>.jspDisabled:hover,
.jspHorizontalBar>.jspDisabled,
.jspHorizontalBar>.jspDisabled:hover
{
	background: transparent url('../images/icons/scroll_arrows.png') top center;

}

.jspVerticalBar .jspArrow
{
height: 7px;
}


.jspArrowUp
{
	background: transparent url('../images/icons/scroll_arrows.png') top center;
}

.jspArrowDown
{
	background-position: bottom !important; 
}


.scroll-pane
{
	width: 100%;
	overflow: auto;
}

.jspVerticalBar
{
	right: 0;
}