/*
 * 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.
 */
.jScrollPaneContainer{
	position: relative;
	margin: 6px 10px 0px 0px;
	overflow: hidden;
	z-index: 1;
}
.scroll-pane, .scroll-pane-arrows
{
	width: 100%;
	height: 262px;
	overflow: auto;
}
.horizontal-only
{
	height: auto;
	max-height: 262px;
}
.jspContainer
{
	overflow: hidden;
	position: relative;
}

.jspPane
{
	position: absolute;
}

.jspVerticalBar
{
	position: absolute;
	top: 16px;
	right: 0;
	width: 16px;
	height: 100%;

}

.jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
	background: red;
}

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	/* background: #dde;
	position: relative; */
	
	position: absolute;
	right: 0px;
	top: 0px;
	height: 100%;
	background: transparent url("images/scroll_background.png") repeat-y scroll 0% 0%;
	cursor: pointer;
}

.jspDrag
{
	background: transparent url("images/scrollbar_center.png") no-repeat scroll 0px 50%;
	position: relative;
	left: 0;
	cursor: pointer;
	width: 14px;
	height: 74.7405px;
	top: 1px;
	
	/* position: absolute;
	background: transparent url("images/scrollbar_center.png") no-repeat scroll 0px 50%;
	cursor: pointer;
	overflow: hidden; */
}
.jspDragTop, .jspDragBottom{
	width: 14px;
	position: absolute;
	left: 0px;
	height: 6px;
	overflow: hidden;
} 
.jspDragTop{
	top: 0px;
	background: transparent url("images/result.png") no-repeat scroll 0px -1136px;
}
.jspDragBottom{
	bottom: 0px;
	background: transparent url("images/result.png") no-repeat scroll 0px -1120px;
}
.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}

.jspArrow
{
	/* background: transparent url("images/result.png") no-repeat scroll 0px -1136px; */
	text-indent: -20000px;
	display: block;
	cursor: pointer;
	padding: 0;
	margin: 0;
}
.jspArrowUp{
	width: 14px;
	display: block;
	position: absolute;
	right: 0px;
	top: -11px;
	height: 15px;
	text-indent: -2000px;
	background: transparent url("images/result.png") no-repeat scroll 0px -1167px;
	overflow: hidden;
	z-index: 1;
}
.jspArrowDown{
	width: 14px;
	display: block;
	position: absolute;
	right: 0px;
	bottom: 21px;
	height: 15px;
	text-indent: -2000px;
	background: transparent url("images/result.png") no-repeat scroll 0px -1207px;
	overflow: hidden;
	z-index: 1;
}
.jspArrow.jspDisabled
{
	cursor: default;
}

.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;
}