.no-touch .scroll-parent {
  overflow-y: hidden;
}

.touch .scroll-parent {
  overflow-y: scroll;
}

.scrollbar {
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  width: 8px;
  background-color: #e1e0e0;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: background 500ms;
  -moz-transition: background 500ms;
  -o-transition: background 500ms;
  transition: background 500ms;
}
.scrollbar:hover {
  background-color: rgba(120, 120, 120, 0.4);
}
.scrollbar .handler {
  position: absolute;
  height: 20px;
  top: 0;
  right: 0;
  width: 8px;
  background: #005a9e url('../img/ico/scroll_nav.gif') no-repeat scroll center center;  
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 50ms;
  -moz-transition: all 50ms;
  -o-transition: all 50ms;
  transition: all 50ms;
}
.scrollbar .handler:hover {
  background: #005a9e url('../img/ico/scroll_nav.gif') no-repeat scroll center center; 
  width: 12px;
  margin-right: -2px;
}
