@charset "UTF-8";

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

body {
  font-family: sans-serif;
  line-height: 1;
  color: #000;
  background-color: #fff;
}

ul,
ol {
  list-style: none;
}

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

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

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

/* ============================
   Print
============================ */
@media print {
  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
    line-height: 1.4;
  }

  a {
    text-decoration: underline;
    color: #000;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  nav,
  button,
  input,
  textarea,
  select {
    display: none !important;
  }

  table {
    page-break-inside: avoid;
  }
}