@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 686px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 1rem 1rem 0;
}
p {
  padding-bottom: 0.8rem;
}
h1 {
  margin: 0 0 0.8rem;
  font-size: 1.09em;
  line-height: 1.5em;
  text-align: center;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0 0 0.8rem;
  list-style: none;
}
li {
  padding-left: 3.2rem;
}
ul li:before {
  content: "•";
  font-size: 1.3em;
  float: left;
  margin-left: -1.3rem;
}
header {
  padding-bottom: 2rem;
}
@media only screen and (max-width:685px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  span {
    display: inline-block;
  }
}
@media only screen and (max-width:480px) {
  li {
  padding-left: 1.3rem;
}
}