/* Page Setup */
*, *::after, *::before, *:after, *:before { box-sizing: border-box; }
html,
body {
	padding: 0;
	width: 100%;
	background-color: #fff;
}
html {
	height: 100%;
	margin: 0;
}
body {
	min-height: 100%;
	margin: 0 auto;
	font-family: Arial, Helvetica, sans-serif;
	color: #202020;
}

/* Scrollbars - Google 2013 */
::-webkit-scrollbar {
	height: 10px;
	width: 10px;
	overflow: visible;
}
::-webkit-scrollbar-button {
    height: 0;
    width: 0;
}
::-webkit-scrollbar-track {
    background-clip: padding-box;
	background: transparent;
	border-left: 1px solid #f0f0f0;
}
::-webkit-scrollbar-track:horizontal {
	border-left: 0;
	border-top: 1px solid #f0f0f0;
}
::-webkit-scrollbar-track:hover,
::-webkit-scrollbar-track:active {
    background-color: rgba(0,0,0,.05);
}
::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,.2);
    background-clip: padding-box;
    border: solid transparent;
    border-width: 1px;
    min-height: 28px;
    padding: 100px 0 0;
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);
}
::-webkit-scrollbar-thumb:horizontal {
    padding: 0 0 0 100px;
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset -1px 0 0 rgba(0,0,0,.07);
}
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0,0,0,.4);
    box-shadow: inset 1px 1px 1px rgba(0,0,0,.25);
}
::-webkit-scrollbar-thumb:active {
    background-color: rgba(0,0,0,0.5);
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.35);
}
::-webkit-scrollbar-corner {
    background: transparent
}
body::-webkit-scrollbar-track-piece {
    background-clip: padding-box;
    background-color: #f5f5f5;
    border: solid #fff;
    box-shadow: inset 1px 0 0 rgba(0,0,0,.14),inset -1px 0 0 rgba(0,0,0,.07);
}
body::-webkit-scrollbar-track-piece:horizontal {
    box-shadow: inset 0 1px 0 rgba(0,0,0,.14),inset 0 -1px 0 rgba(0,0,0,.07);
}
body::-webkit-scrollbar-corner {
    background-clip: padding-box;
    background-color: rgba(0,0,0,.2);
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.14);
}