/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 */

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

.jspPane
{
	position: absolute;
}

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

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

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

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	background: #e8eaeb;
	position: relative;
    width: 3px;
    margin-left: 3px;
    overflow: show;
}

.jspDrag
{
	background: #717e88;
	position: relative;
	top: 0;
	left: -1px;
	cursor: pointer;
    width: 5px;
}
.jspDragTop, .jspDragBottom {
    width: 5px;
    height: 2px;
    position: absolute;
    left: 0;
    background-color: white;
    background-position: 1px 0;
    background-repeat: no-repeat;
}
.jspDragTop {
    background-image: url(../../../img/scroller/dragger_top_scroller.png);
    top: 0;
}
.jspDragBottom {
    background-image: url(../../../img/scroller/dragger_bottom_scroller.png);    
    bottom: 0;
}
.jspDrag:hover {
    background: #009fe4;
}
.jspDrag:hover .jspDragTop, 
.jspDrag:hover .jspDragBottom {
    background-position: 1px -12px;
}
.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}

.jspArrow
{
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}
.jspArrow.jspArrowUp {
    background: url(../../../img/scroller/arrow_up_scroller.png) 0 0 no-repeat transparent;
}
.jspArrow.jspArrowUp:hover {
    background: url(../../../img/scroller/arrow_up_scroller.png) 0 -15px no-repeat transparent;
}
.jspArrow.jspArrowUp.jspDisabled {
    background-position: 0 0;
}
.jspArrow.jspArrowDown {
    background: url(../../../img/scroller/arrow_down_scroller.png) 0 2px no-repeat transparent;
}
.jspArrow.jspArrowDown:hover {
    background: url(../../../img/scroller/arrow_down_scroller.png) 0 -13px no-repeat transparent;
}
.jspArrow.jspArrowDown.jspDisabled {
    background-position: 0 2px;
}
.jspArrow.jspDisabled
{
	cursor: default;
}

.jspVerticalBar .jspArrow
{
	height: 7px;
}

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

