div#scrollbar {
   display: block;
}

div#wn {
   position: relative;
   
   width: 460px;
   height: 200px;
   
   overflow: hidden;
}

div#scrollbar {
   position: relative;
   
   width: 8px;
   height: 200px;
   
   font-size: 1px;
}

div#track {
   position: absolute;
   
   left: 0px;
   top: 9px;
   
   width: 8px;
   height: 176px;
   
   background-image: url('../images/scroll.png');
   background-repeat: repeat-y;
   background-position: 3px 0px;
}

div#dragBar {
   position: absolute;
   
   left: 0px;
   top: 0px;
   
   width: 8px;
   height: 20px;
   
   background-color: #7c0000;
   
   cursor: pointer;
}

div#up {
   position: absolute;
   
   left: 1px;
   top: 0px;
}

div#down {
   position: absolute;
   
   left: 1px;
   bottom: 0px;
}

div#scrollbar, div#track, div#dragBar, div#up, div#down {
   -moz-user-select: none;
   -khtml-user-select: none;
}

div#scrollbar img {
   display: block;
}