/**
 * jquery.scrollbox.css
 * 
 * @version    0.2.1
 * @author     Invis1ble
 * @copyright  (c) 2013 Invis1ble <invisiblexman2010@gmail.com>
 * @license    MIT http://www.opensource.org/licenses/mit-license.php
 */
.scrollbox-wrapper {
  position: relative;
  overflow: hidden;
  padding-right: 18px;
}
.scrollbox-rail,
.scrollbox-bar {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  width: 8px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.scrollbox-bar {
  background-color: #fff;
}
.scrollbox-rail {
  background-color: #6925ba;
}
.scrollbox-rail-in,
.scrollbox-bar-in {
  display: block;
}
.scrollbox-rail {
  height: 100%;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.scrollbox-bar {
  min-height: 30px;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
