@charset "utf-8";
#scrollbar_container {  
     position:relative;   
	 clear:both;
 } 
  
 #scrollbar_track { 
 	 background-image:url(../images/scroll/scroll-bar-bg.jpg);
	 background-repeat:repeat-y;
     position:absolute;  
     top:0;  
     right:0;  
     height:100%;  
     width:10px;  
     background-color:transparent;  
     cursor:move;  
 } 
  
 #scrollbar_handle {  
     width:10px;  
     background-color:#FF3333;  
     cursor:move;  
     -moz-border-radius: 5px;  
     -webkit-border-radius: 5px;  
     opacity:0.9;  
     -moz-opacity:0.9;  
 } 
  
 #scrollbar_content {  
   	 height:22em;
 }  
 
 .hide-overflow {
	overflow-x:hidden; 
	position:relative;
	z-index:100;
 }

 .scrolling {
 	overflow:hidden; 
 }