.jspContainer {
  overflow: hidden;
  position: relative;
}

.jspPane {
  position: absolute;
}

.jspVerticalBar {
  position: absolute;
  margin: 0;
  padding: 0;
  top: 0;
  right: 0;
  width: 16px;
  height: 100%;
}

.jspCap {
  display: none;
}

.jspTrack {
  background: rgba(0, 0, 0, .4);
  position: relative;
}

.jspDrag {
  background: rgba(255, 255, 255, .5);
  position: relative;
  top: 0;
  left: 0;
  margin: 3px;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.jspTrack:hover .jspDrag,
.jspDrag:hover {
  background: #fff !important;
}

.jspArrow {
  background: #666;
  text-indent: -9999em;
  display: block;
  cursor: pointer;
}

.jspArrow.jspDisabled {
  cursor: default;
  background: #111;
}

.jspVerticalBar .jspArrow {
  height: 16px;
}

.jspVerticalBar .jspArrow:focus {
  outline: none;
}

.jspCorner {
  background: #eee;
  float: left;
  height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
  margin: 0 -3px 0 0;
}