/* @group Scrollbar */

	@media screen and (-webkit-min-device-pixel-ratio:0) {
  		html {
			overflow: hidden;
		}
  		body {
			position: absolute;
			top: 0;
			left: 0;
			bottom: 0;
			right: 5px;
			overflow-y: scroll;
			overflow-x: hidden;
		}
	}
	
	@media only screen and (max-device-width:480px) {
  		html {
			overflow: auto;
		}
  		body {
			position: relative;
			top: auto;
			right: auto;
			bottom: auto;
			left: auto;
			overflow: auto;
		}
	}

	::-webkit-scrollbar {
		width: 10px;
		height: 10px;
		border-left: solid 1 #000;
	}
	
	::-webkit-scrollbar-button:start:decrement {
		display: block;
		height: 5px;
	}
	
	::-webkit-scrollbar-button:end:increment {
		display: block;
		height: 5px;
	}
	
	::-webkit-scrollbar-button:vertical:increment {
		background-color: transparent;
	}
	
	::-webkit-scrollbar-track:enabled {
		background-color: rgba(113,112,107,0.1);
		-webkit-border-radius: 5px;
	}
	::-webkit-scrollbar-thumb:vertical {
		height: 50px;
		background-color: rgba(0, 0, 0, .2);
		-webkit-border-radius: 5px;
	}
	
	::-webkit-scrollbar-thumb:horizontal {
		width: 50px;
		background-color: rgba(0, 0, 0, .2);
		-webkit-border-radius: 5px;
	}   

/* @end */