/* <![CDATA[ */


#container { 
	/*	Innerhalb dieses Containers liegt der gesamte Scroll-Leisten-Klumpatsch.
		Mit position:relative; positionieren. */
	overflow: hidden;
	z-index: 10;
	margin:20px 0 0 20px;
	float:left; 
	display:inline;
} 
#scrollinhalt {
	/*	Innerhalb dieses Divs liegt der Inhalt. */
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width:500px;
}
#scrollbarbox {
	/*	Dieses Div umschliesst alle Elemente der Scroll-Leiste.
		Es ist standardmaessig ausgeblendet und wird eingeblendet, wenn der Inhalt groesser ist als der sichtbare Bereich und somit gescrollt werden muss. */
	display: block;
	visibility: hidden;
	position: absolute;
	right: 0;
	top: 0;
	width: 11px;
	overflow: hidden;
}
#scrolltrack {
	/*	Dieses Div stellt die Scroll-Leiste dar.
		Zur individuellen Gestaltung kann ein Hintergrund-Bild verwendet werden. */
	position: absolute;
	left: 0;
	top: 10px;
	width: 10px;
	height: 270px;
	overflow: hidden;
	background-image: url(grafiken/v_track_bg.png);
	background-repeat: repeat-y;
	z-index: 10;
}
#scrollgreifer {
	/*	Greifer-Grafik. 
		Liegt innerhalb des Scroll-Track */
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 10px;
	height: 20px;
	overflow: hidden;
	z-index: 10;
}
#scrollpfeiloben {
	/*	Pfeil-Grafik oben (bei vertikaler Scrollbar) / links (bei horizontaler Scrollbar) */
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 10px;
	height: 10px;
	overflow: hidden;
	z-index: 20;
}
#scrollpfeilunten  {
	/*	Pfeil-Grafik unten (bei vertikaler Scrollbar) / rechts (bei horizontaler Scrollbar) */
	display: block;
	position: absolute;
	left: 0;
	top: 280px;
	width: 10px;
	height: 10px;
	overflow: hidden;
	z-index: 30;
}
#springpfeil  {
	/* "Spring-Nach-Oben-Pfeil"-Grafik. */
	display: block;
	position: absolute;
	left: 0;
	top: 290px;
	width: 10px;
	height: 10px;
	overflow: hidden;
	z-index: 40;
}

/* ]]> */