	@media screen and (-webkit-min-device-pixel-ratio:0) {
		body {
			overflow: hidden;
		}
		#container {
			position: absolute;
			top: 0;
			left: 0;
			bottom: 5px;
			right: 5px;
			overflow: auto;
		}
	}
	@media only screen and (max-device-width:480px) { /* iPhone */
		body {
			overflow: auto;
		}
		#container {
			position: relative;
			top: auto;
			right: auto;
			bottom: auto;
			left: auto;
			overflow: auto;
		}
	}
	@media only screen and (max-device-width:1024px) { /* iPhone */
		body {
			overflow: auto;
		}
		#container {
			position: relative;
			top: auto;
			right: auto;
			bottom: auto;
			left: auto;
			overflow: auto;
		}
	}
	#container::-webkit-scrollbar {
		width: 6px;
		height: 6px;
	}
	#container::-webkit-scrollbar-button:start:decrement,
	#container::-webkit-scrollbar-button:end:increment {
		display: block;
		width: 25px;
		height: 25px;
		background: transparent;
	}
	#container::-webkit-scrollbar-track:enabled {
		background: transparent;
	}
	#container::-webkit-scrollbar-track-piece {
		margin: 11px 0 0;
		background: transparent;
		border: none;
	}
	#container::-webkit-scrollbar-thumb:vertical {
		height: 30px;
		background-color: rgba(255, 255, 255, 0.5);
		-webkit-border-radius: 5px;
	}
	#container::-webkit-scrollbar-thumb:horizontal {
		width: 30px;
		background-color: rgba(255, 255, 255, 0.5);
		-webkit-border-radius: 5px;
	}