#newsscrollcontainer { 
	/*	Innerhalb dieses Containers liegt der gesamte Scroll-Leisten-Klumpatsch.
		Mit position:relative; positionieren. */
	position: relative;
	left: 0;
	top: 0;			
	width: 370px;
	height: 230px;
	overflow: hidden;
	margin-top: 5px;
	margin-left: 7px;
	margin-bottom: 20px;
	z-index: 1000;
	float:left; 
	display:inline;
} 
#newsscrollinhalt {
	/*	Innerhalb dieses Divs liegt der Inhalt. */
	position: absolute;
	left: 0;
	top: 0;
	width: 350px;
	z-index: 10000;
}
#newsscrollbarbox {
	/*	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;
	height: 230px;
	width: 11px;
	overflow: hidden;
}
#newsscrolltrack {
	/*	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: 200px;
	overflow: hidden;
	background-image: url(/structured/htdocs/images/1_v_track_bg.gif);
	background-repeat: repeat-y;
	z-index: 10000;
}
#newsscrollgreifer {
	/*	Greifer-Grafik. 
		Liegt innerhalb des Scroll-Track */
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 10px;
	height: 20px;
	overflow: hidden;
	z-index: 10000;
}
#newsscrollpfeiloben {
	/*	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: 10020;
}
#newsscrollpfeilunten  {
	/*	Pfeil-Grafik unten (bei vertikaler Scrollbar) / rechts (bei horizontaler Scrollbar) */
	display: block;
	position: absolute;
	left: 0;
	top: 210px;
	width: 10px;
	height: 10px;
	overflow: hidden;
	z-index: 10030;
}
#newsspringpfeil  {
	/* "Spring-Nach-Oben-Pfeil"-Grafik. */
	display: block;
	position: absolute;
	left: 0;
	top: 220px;
	width: 10px;
	height: 10px;
	overflow: hidden;
	z-index: 10040;
}