/**
 * CSS Mini Reset
 * Adapted from https://github.com/vladocar/CSS-Mini-Reset
 */

*, *:before, *:after {
    box-sizing: border-box;
}

html,
body,
div,
form,
fieldset,
legend,
caption,
label,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre {
    font-size: 100%;
    font-weight: normal;

    margin: 0;
    padding: 0;

    vertical-align: baseline;

    border: 0;
    outline: 0;
    background: transparent;
}

a {
    color: inherit;
    text-decoration: inherit;
}

nav ul, nav ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

th,
td {
    text-align: left;
    vertical-align: top;
}

img {
    border: 0;
}