@charset "windows-1250";
/* CSS Document */

/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
*/

div#hold	{ 
	position:relative; overflow:hidden;
	width: 190px; height:300px; 
 	z-index:100; 
	}
div#wn	{ 
	position:absolute; 
	left:10px; top:10px; 
	width:170px; height:280px; 
	clip:rect(0px, 165px, 280px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div.content { 
	position:absolute; visibility:hidden;
	left:0px; top:0px; 
	z-index:1; 
	}
	
div.content p { margin: 0; margin-top: 0; margin-bottom: 12px; }

/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar { 
  position:relative; left:0; top:0;
  width:14px; height:300px; 
  z-index:1;
  }
div#track { 
  position:absolute; left:0; top:14px;
  width:14px; height:272px;
  background: url(img/scrollbar_bgnd.gif) repeat-y;
  z-index:1;
  }
div#dragBar {
  position:absolute; left:0; top:0;
  width:12px; height:20px;
  background: url(img/scrollbar_slider.gif) no-repeat center center;
  border-top: 1px solid #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
  z-index:1;
  }  
div#up { position:absolute; left:0; top:0; z-index:2; border-bottom: 1px solid #bcbcbc; }  
div#down { position:absolute; left:0; bottom:0; z-index:3; border-top: 1px solid #bcbcbc; }  
