/** initial setup **/
.nano {
  position : relative;
  width    : 100%;
  height   : 286px;
  overflow : hidden;
}
.nano .content {
  position      : absolute;
  overflow      : scroll;
  overflow-x    : hidden;
  top           : 0;
  right         : 0;
  bottom        : 0;
  left          : 0;
  height   : 286px;
  padding: 0 30px 0 0;
}
.nano .content a {
	color: #9AF6FF;
	transition: all 300ms ease-in-out 0s;
	-moz-transition: all 300ms ease-in-out 0s;
	-webkit-transition: all 300ms ease-in-out 0s;
	-ms-transition: all 300ms ease-in-out 0s;
	-o-transition: all 300ms ease-in-out 0s;
}
.nano .content a:hover {
	color: #D0F86C;
}
.nano .content:focus {
  outline: thin dotted;
}
.nano .content::-webkit-scrollbar {
  visibility: hidden;
}
.has-scrollbar .content::-webkit-scrollbar {
  visibility: visible;
}
.nano > .pane {
  background : none repeat scroll 0 0 #6F6F6F;
  position   : absolute;
  width      : 8px;
  right      : 7px;
  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    : 7px;
  -webkit-border-radius : 7px;  
  border-radius         : 7px;
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2) inset;
  -moz-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2) inset;
  -webkit-box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2) inset;
}
.nano > .pane > .slider {
  background: none repeat scroll 0 0 #CFCFCF;
  position              : relative;
  margin                : 0;
  -moz-border-radius    : 5px;
  -webkit-border-radius : 5px;  
  border-radius         : 5px;
}
.nano > .pane > .slider:hover { cursor: pointer; }
.nano:hover > .pane, .pane.active, .pane.flashed {
  visibility : visible\9; /* Target only IE7 and IE8 with this hack */
  opacity    : 0.99;
}
