*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track {
	background-color: rgba(255,255,255,.3);
	-webkit-border-radius: 2em;
	border-radius: 2em;
	-webkit-transition: all .3s;
	transition: all .3s;
}
::-webkit-scrollbar-thumb {
	background-color: rgba(0,0,0,.1);
	-webkit-border-radius: 2em;
	border-radius:2em;
	-webkit-transition: all .3s;
	transition: all .3s;
}
ul,
ol {
	list-style: none;
}
ul li {
	margin: 20px auto;
}
ol li {
	margin: 5px auto;
}
html,
body {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-touch-callout: none;
	background: #FEFEFE;
	font-size: 15px;
	color: #333;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}