/** initial setup **/
.nano {
  position : relative;
  width    : 100%;
  height   : 100%;
  overflow : hidden;
}
.nano .content {
  position      : absolute;
  overflow      : scroll;
  overflow-x    : hidden;
  top           : 0;
  right         : 0;
  bottom        : 0;
  left          : 0;
}
.nano .content:focus {
  outline: thin dotted;
}
.nano .content::-webkit-scrollbar {
  visibility: hidden;
}
.has-scrollbar .content::-webkit-scrollbar {
  visibility: visible;
}
.nano > .pane {
  background  : rgba(0,0,0,.2);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33000000', endColorstr='#33000000',GradientType=0 ); /* IE6-9 */
  border      : solid 1px #333;
  border      : solid 1px rgba(81,81,81,.2);
  position    : absolute;
  width       : 4px;
  right       : 9px;
  top         : 0;
  bottom      : 0;
  visibility  : hidden\9; /* Target only IE7 and IE8 with this hack */
  opacity     : .01; 
  -webkit-transition    : .2s;
  -moz-transition       : .2s;
  -o-transition         : .2s;
  transition            : .2s;
  -moz-border-radius    : 1px;
  -webkit-border-radius : 1px;  
  border-radius         : 1px;
}
.nano > .pane > .slider {
  background: url(img/back-scroller.png) center center no-repeat #353535;
  position              : relative;
  margin                : 0 -3px;
}
.nano:hover > .pane, .pane.active, .pane.flashed {
  visibility : visible\9; /* Target only IE7 and IE8 with this hack */
  opacity    : 0.99;
}
