/* RESET */

/* !!! DO NOT EDIT THIS FILE !!! */

/* Box Model, Overflow & Text Size Adjust */
html {
	box-sizing: border-box;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

/* Global Reset */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	box-sizing: inherit;
}

/* Reset Links */
a {
    text-decoration: none;
}

/* Reset Lists */
ol, ul {
	list-style: none;
}

/* Reset Tables */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Clearfix */
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}
