/*
 * 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 /* gebraucht um den Scrollbalken hrzustellen */
{
	overflow: hidden;
	position: relative;
	background-color:transparent;
}

.jspPane /* Inhalt des Containers */
{
	position: absolute;

}

.jspVerticalBar /* Scrollbalken */
{
	position: absolute;
	top: 0;
	right: 0; /* Stellung rechts oder links des Balkens */
	width: 5px; /* verändert die Breite des Balkens */
	height: 100%;
	background: red;
}



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

.jspCap
{
	display: none;
}



.jspTrack
{
	background: #EAC1ED; /* dunkelblau = verändert die Farbe des langen Balkens */
	position: relative;
}

.jspDrag
{
	background: #9016b2; /* rosa = verändert die Frabe des Scrollbalkens */
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}



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

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

.jspVerticalBar .jspArrow
{
	height: 16px;
}



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



/*Ab hier wird nicht gebraucht */
/*.jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
	background: red;
}
.jspHorizontalBar *


.jspHorizontalBar .jspCap
{
	float: left;
	
	.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}
.jspHorizontalBar .jspArrow
{
	width: 16px;
	float: left;
	height: 100%;
}
*/

