* {
	margin: 0px;
	padding: 0px;
	border: 0px;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
		
	-webkit-appearance: none;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
	-ms-scroll-chaining: none;
	
	font-size: 100%;
	outline: 0px;
}

/* Fix for Windows Phone IE10 & 11 */
/*@-ms-viewport{ width: device-width; }*/

header, main, footer, nav, aside, section, article { display: block; }

ul, li {
	list-style: none;
	list-style-type: none;
}

[unselectable=on] {
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	user-select: none;
}

a, input[type=button], input[type=submit] { cursor: pointer; }

a {
	text-decoration: none;
	color: inherit;
	word-wrap: break-word;
}

a > img { border: 0px; }
a[href^=tel] { cursor: text; }

a[href^=tel]:hover
, a[href^=tel]:active
, a[href^=tel]:focus {
	color: inherit;
	text-decoration: none;
}

input::-webkit-inner-spin-button
, input::-webkit-outer-spin-button
, input::-webkit-search-cancel-button { -webkit-appearance: none; }

input { -moz-appearance: textfield; }

textarea { resize: none; }

input:-webkit-autofill {
	background-color: inherit !important;
	color: inherit !important;
	
	-webkit-transition: all 9999s ease-in-out 9999s;
	-webkit-transition-property: background-color, color;
	
	transition: all 9999s ease-in-out 9999s;
	transition-property: background-color, color;
}

@media only screen and (max-width: 768px) {
	a {
		-webkit-touch-action: manipulation;
		-moz-touch-action: manipulation;
		-ms-touch-action: manipulation;
		-o-touch-action: manipulation;
		touch-action: manipulation;
	}
}