/* Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn. 
   hold div height accommodates scrollbar in this example    
*/
.main { height:144px}
div#hold	{ 
	position:relative; overflow:hidden;
	width:500px; height:144px; z-index:100;
	background-color:#e6e6e6
	}
div#wn	{ 
	position:absolute; 
	left:0px; top:0px; 
	width:500px; height:144px; 
	clip:rect(0px, 500px, 144px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div#lyr1	{ 
	position:absolute; visibility:hidden; 
	left:0px; top:0px; 
	z-index:1; 
	}

/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar { 
padding:0px;
  position:relative; left:0px; top:0px;
  width:500px; height:13px;
  font-size:1px; z-index:2;
  }
div#track { 
  position:absolute; left:12px; top:0px;
  width:476px; height:13px; z-index:1;
  /*background: url("/pix/scroller/track_dgrau.gif") #666 repeat*/
  background-color:#ccc;
  }
div#dragBar {
font-size:1px;
  position:absolute; left:0px; top:0px;
  width:20px; height:12px; z-index:1;
  /*background-color:#333333;*/ 
  /*border-left:solid 1px #999;*/
  /*border-right:solid 1px #333;
  background-image:url("/pix/scroller/scroller_griff.gif");*/
  background-color:#666;
  }  
div#left { position:absolute; left:0px; top:0px; z-index:2 }  
div#right { position:absolute; right:0px; top:0px; z-index:3 }
  
/* Styles for demo, not necessary for scrolling layers */  
body { 
  overflow:hidden;
  }

.bild {float:left}

a img { border:none }
