@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 0.875em;
  line-height: 1.5em;
}
#wrapper {
  position: relative;
  max-width: 750px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background: #fff url('bg.jpg') top 3rem left 1.5rem no-repeat;
  overflow: hidden;
  padding: 2rem 5rem;
}
p {
  padding-bottom: 0.75rem;
  text-align: justify;
}
h1 {
  margin: 0 0 0.75rem;
  font-size: 1.125em;
  line-height: 1.1em;
}
h1 span {
  font-size: 0.7em;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin: 1rem 0 0.75rem;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
ul {
  padding: 0 0 2rem;
  list-style: none;
}
li {
  padding-left: 1.3rem;
}
ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1.3rem;
}
header {
  display: flex;
  justify-content: flex-end;
  margin: 0 -2rem 1rem 0;
}
footer {
  color: #A5A5A5;
  font-size: 0.625rem;
  line-height: 1.3;
  margin-right: -4rem;
}
.table {
  display: flex;
  justify-content: space-between;
}
.col {
  width: calc(25% + 1px);
  margin-left: -1px;
}
footer strong, span, .fullwidth {
  display: block;
  padding: 0.125rem 0.625rem;
}
footer span, .fullwidth {
  border: dotted #A5A5A5;
  border-width: 0 1px 1px 1px;
}
footer strong {
  border: 1px dotted #A5A5A5;
}
.fullwidth {
  text-align: center;
}
.right {
  text-align: right;
}
@media only screen and (max-width:749px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 1rem;
    background-image: none;
  }
  header {
    justify-content: center;
    margin: 0 0 1rem;
  }
  footer {
    margin: 0;
    text-align: center;
  }
  .right {
    text-align: center;
  }
  .table {
    flex-direction: column;
  }
  .col {
    width: calc(100%);
  }
  .col span:last-of-type {
    border-bottom: 0;
  }
  .fullwidth {
    border-top: 1px dotted #A5A5A5;
  }
}