@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font-family: Verdana, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.3em;
}
#wrapper {
  position: relative;
  max-width: 830px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 2rem;
}
p {
  padding-bottom: 1rem;
  text-align: justify;
}
h1 {
  margin: 0 0 1rem;
  font-size: 1em;
  line-height: 1.3;
}
h1 span {
  font-size: 0.7em;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0;
}
a {
  color: #0000EE;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
ul {
  padding: 0 0 1rem 1.5rem;
  list-style: none;
}
li {
  padding-left: 1.5rem;
}
ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1.5rem;
}
header {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
}
article {
  padding: 0;
}
footer p {
  text-align: left;
}
@media only screen and (max-width:749px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 1rem;
  }
  p {
    text-align: left;
  }
  .hide_m {
    display: none;
  }
}