/*
Author: Craig Twigg
Version: 1.0.0
*/

html {
	-webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
	position: relative;
	margin: 0;
	padding: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-variant-ligatures: none;
	text-rendering: optimizeLegibility;
	line-height: 1;
}

div,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
	display: block;
	position: relative;
}

ul,
ol {
	list-style: none;
}

b,
strong {
	font-weight: bold;
}

i,
em {
	font-style: italic;
}

small {
	font-size: 80%;
}

a,
a:visited {
	outline: none;
	text-decoration: none;
	color: inherit;
}

a:hover {
	outline: none;
	text-decoration: none;
}

a:active,
a:focus {
	outline: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

img {
	display: block;
}