/** initial setup **/
.nano {
	position : relative;
	width    : 465px;
	height   : 318px;
	overflow : hidden;
	float: left;
	top: 50px;
	left: 50px;
}
.nano .content {
	position      : absolute;
	overflow      : scroll;
	overflow-x    : hidden;
	top           : 0;
	right         : 0px;
	bottom        : 0;
	left          : 0;
	padding-right: 35px;
}
.nano .content:focus {
  outline: thin dotted;
}
.nano .content::-webkit-scrollbar {
  visibility: hidden;
}
.has-scrollbar .content::-webkit-scrollbar {
  visibility: visible;
}
