* {
	margin: 0;
	padding: 0;
	border: 0;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
		
	-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: 0;
}

/* 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], button {
	cursor: pointer;
	
	-webkit-touch-action: manipulation;
	-moz-touch-action: manipulation;
	-ms-touch-action: manipulation;
	-o-touch-action: manipulation;
	touch-action: manipulation;
}

a {
	text-decoration: none;
	color: inherit;
	word-wrap: break-word;
}

a > img { border: 0; }

@media only screen and (min-width: 769px) {
	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;*/
}

::-webkit-input-placeholder { opacity: 1; }
::-moz-placeholder          { opacity: 1; }
:-ms-input-placeholder      { opacity: 1; }
:-moz-placeholder           { opacity: 1; }
::placeholder               { opacity: 1; }

@media only screen and (max-width: 768px) {
	a, input, select, textarea, label, .dropdown, .filepicker {
		-webkit-touch-action: manipulation;
		-moz-touch-action: manipulation;
		-ms-touch-action: manipulation;
		-o-touch-action: manipulation;
		touch-action: manipulation;
	}
}