/* 
   Styles for scrolling layers  
	 Specify width and height in hold and wn, and in clip for wn 
*/

#extra_controls, #scrollbar { 
    display:block; /* initially display:none; to hide from incapable */
    }

div#scrollbar {
    display:block; /* initially display:none; to hide from incapable */
 }
div#hold
{
position:relative; 
overflow:hidden;
width:400px; 
height:310px; 
z-index:100; 
}
div#hold2	{ 
	position:relative; overflow:hidden;
	width:290px; height:200px; 
  	z-index:100; 
	}
div#wn	{ 
	position:absolute; 
	left:0px; top:5px; 
	width:400px; height:310px; 
	clip:rect(0px, 400px, 310px, 0px); 
	overflow:hidden;	
	z-index:1; 
	}
div#wn2	{ 
position:absolute; 
left:0px; top:5px; 
width:290px; height:200px; 
clip:rect(0px, 290px, 190px, 0px); 
overflow:hidden;	
z-index:1; 
}
div.content {
	position:absolute; visibility:hidden;
	left:0px; top:0px; 
	z-index:1; 
	padding-left: 10px;
	padding-right: 5px;
	}
/* Set small font-size or size/position of div's will be off in some browsers  */
div#scrollbar, div#scrollbar2 { 
  position:relative; left:0; top:0;
  width:12px; height:160px; 
  font-size:1px; z-index:1;
  }
  
div#track { 
  position:absolute; left:0; top:0px; 
  /*width:9px; */
  /*height:333px;*/
  /*background: url("/images/nav/track.gif") #336 repeat;*/
  /*border: 1px solid #ef6b00;*/
  background-color: #ffffff;
  z-index:1;
  border: 1px solid #ef6b00; 
  width: 12px; 
  height: 309px;
  margin-top: 12px;
}
div#track2 { 
  position:absolute; left:0; top:0px; 
  /*width:9px; */
  /*height:333px;*/
  /*background: url("/images/nav/track.gif") #336 repeat;*/
  /*border: 1px solid #ef6b00;*/
  background-color: #ffffff;
  z-index:1;
  border: 1px solid #ef6b00; 
  width: 12px; 
  height: 178px;
  margin-top: 12px;
 }
div#dragBar, div#dragBar2 {
  position:absolute; left:1px; top:1px;
  width:10px; height:20px;
  background-color:#c0c0c0;
  z-index:1;
  }  
div#up { position:absolute; left:1px; top:0; z-index:2; width:11; height:11;}  
div#down { position:absolute; left:1px; bottom:-175; z-index:2; width:11; height:11;}  


div#up2 { position:absolute; left:1px; top:0; z-index:2; width:11; height:11;}  
div#down2 { position:absolute; left:1px; bottom:-44; z-index:2; width:11; height:11;}  

/* for safari, to prevent selection problem  */
div#scrollbar, div#track, div#dragBar, div#up, div#down {
    -moz-user-select: none;
    -khtml-user-select: none;
}

/* Styles for demo, not necessary for scrolling layers */  

body, td  { font-family: arial; font-size: 8pt;}  
