/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * 26 Mar 2014	modify colours etc for ScrollPane
 *  6 May 2014  add arrows and rounded
 * 27 Jul 2014  dragbar radius 6px not 3, and 15px gap above top arrow 
 *  2 Aug 2014  10px gap above top arrow
 */

.jspContainer
{
	overflow: hidden;
	position: relative;
}

.jspPane
{
	position: absolute;
}

.jspVerticalBar
{
	position: absolute;
	top: 0;
	right: 0;
	width: 15px;
	height: 100%;
	background: #000000;
}

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

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	background: #000000;  /*#3F220F*/;
	position: relative;
}

.jspDrag
{
	background: #666666;
	position: relative;
	top: 0;
	left: 3px;
	width: 9px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	cursor: pointer;
}

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

.jspArrow
{
	background: #000000;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
	padding: 0;
	margin: 0;
}

.jspArrow.jspDisabled
{
	cursor: default;
}
.jspArrowUp {
	background-repeat:no-repeat;
	background-position: 0 10px;  /* push arrow down a bit */
	/*background-size: 15px; */
	background-image: url('../../images/buttons/ahs-arrow-scrollup.png');
}
.jspArrowDown {
	background-repeat:no-repeat;
	background-position: 0 15px; /* push arrow to bottom */
	/* background-size: 15px;  */
	background-image: url('../../images/buttons/ahs-arrow-scrolldown.png');
}
.jspVerticalBar .jspArrow
{
	height: 30px; /* to force gap between arrow and dragbar*/
}
.jspVerticalBar .jspArrow.jspArrowUp
{
	height: 35px; /* because arrow a bit lower 2aug14 */
}

.jspHorizontalBar .jspArrow
{
	width: 16px;
	float: left;
	height: 100%;
}

.jspVerticalBar .jspArrow:focus
{
	outline: none;
}

.jspCorner
{
	background: #000000;
	float: left;
	height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}