/*
 * 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%;
}

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

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	background: transparent url(../images/bg-scrollbar-track-y.png) repeat-y  0px 0;
	position: relative;
}

.jspDrag
{
	background: transparent url(../images/bg-scrollbar-thumb-y.png) repeat-y 2px 100%;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}

.jspDragTop
{
	background: transparent url(../images/bg-scrollbar-thumb-y.png) no-repeat 2px 0px;
	position: relative;
	bottom: 0;
	left: 0;
	cursor: pointer;
	width: 11px;
	height: 1px;
}


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


.jspArrow.jspArrowUp
{
	background: none;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
	padding: 0;
	margin: 0;
}
.jspArrow.jspArrowDown
{
	background: none;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
	padding: 0;
	margin: 0;
}

jspArrowDown.jspDisabled
{
	cursor: default;	
	background: transparent url(../images/scrolldown.gif) no-repeat 1px 1px;
}


jspArrowUp.jspDisabled
{
	cursor: default;
	background: transparent url(../images/scrollup.gif) no-repeat 1px 10px;
}

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

/* Styles specific to this particular page */
.scroll-pane
{
	width: 100%;
	height: 300px;
	overflow: auto;
	outline: none
}
.jspCap
{
	display: block;
}

.jspVerticalBar .jspCap
{
	height: 10px;
}

.jspHorizontalBar .jspCap
{
	width: 50px;
	height: 100%;
}