/*
 * 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;
	top: 28px;
}
.mediapgerholder .jspPane {
	top: 28px !important;
}

.jspVerticalBar
{
	position: absolute;
	top: 0;
	right: 0;
	width: 16px;
	height: 100%;
}

.jspHorizontalBar
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8px;
}

.jspVerticalBar *,
.jspHorizontalBar *
{
	margin: 0;
	padding: 0;
}

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	background: url(../images/scrolltrackbg.png) 0 50% repeat-x;
	position: relative;
}

.jspDrag
{
	background: #666;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}

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

.jspArrow
{
	background: #50506d;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}

.jspArrow.jspDisabled
{
	cursor: default;
	background: #80808d;
}

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


/****  chronology scrollbar ****/
.chronology .jspHorizontalBar,
.mediapgerholder .jspHorizontalBar {
	top: auto;
	bottom: 7px;
	height: 3px;
}
.chronology .jspHorizontalBar .jspCap,
.mediapgerholder .jspHorizontalBar .jspCap {
	display: block;
	width: 30%;
	height: 10px;
}
.chronology .jspTrack,
.mediapgerholder .jspTrack {
	background: #e9ecf1;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border-top: 1px solid #a4a9b2;
	border-bottom: 1px solid #d4d8de;
	box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2)
}
.chronology .jspDrag,
.mediapgerholder .jspDrag {
	height: 7px;
	top: -2px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2a70af), to(#005097));
	background-image: -webkit-linear-gradient(#2a70af, #005097);
	background-image: -moz-linear-gradient(#2a70af, #005097);
	background-image: -o-linear-gradient(#2a70af, #005097);
	background-image: linear-gradient(#2a70af, #005097);
	box-shadow: 0 2px 2px rgba(0,0,0,0.3)
}
.chronology .jspDrag:hover,
.chronology .jspDrag:active,
.mediapgerholder .jspDrag:hover,
.mediapgerholder .jspDrag:active {
	box-shadow: none;
}