
/*********** SCROLLER *************/

#container { 
   /*	Innerhalb dieses Containers liegt der gesamte Scroll-Leisten-Klumpatsch.*/
   	position:absolute;
	top:0px;right:0px;
   	overflow: hidden;
   	float:left; 
   	display:inline;
	width:689px;
	height:316px;
} 

#scrollinhalt {
   /*	Innerhalb dieses Divs liegt der Inhalt. */
   	position: absolute;
   	left: 0;
   	top: 0;
	width:506px;
	padding-bottom:0px;
	padding-top:40px;
   	z-index:10;
	margin:0px;
	font-size:12px;
	font-weight:normal;
	color:#666741;
	line-height:18px;
	vertical-align:top; 
}

#TextScrollerInhalt{}


#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: 0px;
   top:20px;
   height: 306px;
   width: 16px;
   overflow: hidden;
   margin-top:0px;
}

#scrolltrack {
   	position: absolute;
   	left: 0;
   	top: 18px;
   	width: 16px;
   	height:240px;
   	overflow: hidden;
 	background-image: url(../img/v_track_bg.gif);
   	background-repeat: repeat-y;
   	z-index: 10;
}

#scrollgreifer {
   /*	Greifer-Grafik.    Liegt innerhalb des Scroll-Track */
   display: block;
   position: absolute;
   left: 0;
   top: 9px;
   width: 16px;
   height: 35px;
   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: 16px;
   height: 18px;
   overflow: hidden;
   z-index: 20;
}

#scrollpfeilunten  {
   /*	Pfeil-Grafik unten (bei vertikaler Scrollbar) / rechts (bei horizontaler Scrollbar) */
   display: block;
   position: absolute;
   left: 0;
   top: 258px;
   width: 16px;
   height: 18px;
   overflow: hidden;
   z-index: 30;
}

 /* "Spring-Nach-Oben-Pfeil"-Grafik. 
#springpfeil  {
  
   display: none;
   position: absolute;
   left: 0;
   top: 307px;
   width: 16px;
   height: 18px;
   overflow: hidden;
   z-index: 40;
}*/