/**
 * This stylesheet is intended to be used on legacy content pages, with the
 * intent of making the page more usable on mobile devices.
 */
* {
  box-sizing: border-box;
  overflow-wrap: break-word;
  font-size: max(1em, 16px);
}

html {
  background: #fff;
  font-size: 16px;
}

body {
  background: #fff;
  margin: 0 auto;
  max-width: 1280px;
  padding: 30px;
}

table, thead, tbody, tr, th, td {
  overflow: hidden; /* prevent horizontal scrolling at all costs */
}

img {
  max-width: 100%;
}

p, li {
  font-size: 1rem !important;
}

font[size] {
  font-size: 1rem;
}

@media screen and (max-width: 780px) {
  * {
    max-width: 100% !important;
  }
  body {
    padding: 10px;
  }
  #wrapper {
    margin: 0 !important;
  }
  table, thead, tbody, tr, th, td {
    display: block !important;
    width: 100% !important;
  }
}

