* {
	margin: 0;
	padding: 0;
}


/* HTML 5 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* DEFAULT HYPERLINKS */
a {
	color: inherit;
}

a:focus {
    outline: thin dotted;
}

a:active,
a:hover {
    outline: 0;
    text-decoration: none;
}

	a img {
		border: 0;
	}

/* SAME SIZE FOR ALL BROWSERS */
input,
textarea,
button {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* NO SCROLLBAR IN IE/EDGE */
textarea {
	overflow: auto;
}

/* PLACEHOLDER COLORFIX */
input::placeholder {
	color: inherit !important;
}
input::-moz-placeholder {
	color: inherit !important;
}
input:-ms-input-placeholder {
	color: inherit !important;
}
input::-webkit-input-placeholder {
	color: inherit !important;
}
textarea::placeholder {
	color: inherit !important;
}
textarea::-moz-placeholder {
	color: inherit !important;
}
textarea:-ms-input-placeholder {
	color: inherit !important;
}
textarea::-webkit-input-placeholder {
	color: inherit !important;
}