/* Portion of Reset from Eric Meyer (https://meyerweb.com/eric/tools/)
 * omit sup and sub
 * Use rem with fallback to px (https://snook.ca/archives/html_and_css/font-size-with-rem)
 * Set the font-size to 87.5% on the root element (html). This makes the default 14px; i.e.
 * 1em is 14px and so 1rem is px / 14.0
**/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr, address, cite, code, del, dfn,
em, img, ins, kbd, q, s, samp, small, strong, var,
b, u, i, dl, dt, dd, ol, ul, li, label, legend, article,
canvas, details, menu, output, ruby, summary, time, mark, 
section, article, header, footer, nav, aside, hgroup {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

section, article, header, footer, nav, aside, hgroup {
  display: block;
}

body {
  line-height: 1; 
}

ol, ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { clear: both; }

/* Images */
img { border: 0; }

.imgwrap {
  margin: 4px 25px 25px 0px;
  border: 1px solid #0000ff;
}

.alignright { float: right; }
.alignleft { float: left; }

/* Main structure */

html {
  font-size: 87.5%;
}

body {
  width: 100%;
  font-size: 14px;
  font-size: 1rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  color: #444;
}

a {
  outline: none;
  color: #21759b;
}
a:hover {
  color: #0f3647;
}

.page {
  padding: 0 24px;
  padding: 0 1.714285714rem;
  background-color: #fcede2;
}

.nav-header {
  padding: 24px 0;
  padding: 1.714285714rem 0;
}

.nav-header h1 {
  font-size: 24px;
  font-size: 1.714285714rem;
  line-height: 1.285714286; /* 18px */
  margin-bottom: 14px;
  margin-bottom: 1rem;
}

.nav-header h1 a {
  color: #515151;
  display: inline-block;
  text-decoration: none;
}

.nav-header h1 a:hover {
  color: #21759b;
}

#navigate {
  margin-top: 24px;
}

#navigate #navlinks #current-item > a {
  color: #f08080;
  font-weight: bold;
}

#navigate #navlinks {
  border-bottom: 2px solid #ededed;
  border-top: 2px solid #ededed;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}

#navigate #navlinks a {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.5em 1.25em 0.6em 0; 
  color: #000000;
}

#navigate #navlinks li a:hover, #navlinks li a:focus {
  color: #21759b;
}

.block {
  margin: 18px;
  margin: 1.285714286rem;
}

section {
  padding-bottom: 12px;
  padding-bottom: 0.85714286rem;
}

#detail p, #detail p + p {
  margin: 0 0 18px 0;
  margin: 0 0 1.285714286rem 0;
  line-height: 18px;
  line-height: 1.285714286rem;
  text-indent: 0;
}

.chunk {
  margin: 12px 0 0;
  margin: 0.8571428rem 0 0;
  padding-bottom: 12px;
  padding-bottom: 0.85714286rem;
  word-wrap: break-word;

}

.chunk h1, .chunk h2, .chunk h3 {
  line-height: 1.8;
  font-weight: normal;
}

.chunk h1 {
  font-size: 21px;
  font-size: 1.5rem;
}

.chunk h2 {
  font-size: 18px;
  font-size: 1.285714286rem;
  color: #757575;
}

.chunk h3 {
  font-size: 14px;
  font-size: 1.0rem;
  padding: 4px 0 0 12px;
  font-weight: bold;
}

.chunk p {
  margin: 6px 12px 6px 12px;
  margin: 0.07142857rem 0.8571428rem 0.07142857rem 0.8571428rem;
  line-height: 20px;
  line-height: 1.428571428;
}

.chunk p + p {
  text-indent: 14px;
  text-indent: 1rem;
  margin-top: 0;
}

.chunk ol,
.chunk ul {
  line-height: 24px;
  line-height: 1.714285714;
}

.chunk ul ul,
.chunk ol ol,
.chunk ul ol,
.chunk ol ul {
  margin-bottom: 0;
}

.chunk ul {
  list-style: disc outside;
}

.chunk ol {
  list-style: decimal outside;
}

.chunk li {
  margin: 0 0 0 36px;
  margin: 0 0 0 2.571428571rem;
}

.chunk ul ul {
  list-style: circle inside;
}

ol.plain > li {
  list-style: none;
  margin-left: 0;
}

.chunk:after {
  clear: both;
}

.table {
    display: table;
/*    width: 500px; */
}
.table .tr { 
    display: table-row; 
}
.table .td { 
    display: table-cell;
}

.tight {
  padding-left: 18px;
  padding-left: 1.285714286rem;
  line-height: 18px;
  line-height: 1.285714286rem;
}



@media screen and (min-width: 600px) {
 .page {
    margin: 0 auto;
    max-width: 960px;
    max-width: 68.571428571rem;
    overflow: hidden;
  }

  .nav-header h1 {
    font-size: 26px;
    font-size: 1.857142857rem;
    line-height: 1.846153846;
    margin-bottom: 0;
  }
  
}

@media screen and (min-width: 960px) {
  body {
    background-color: #f5f5f5;
  }
  body .page {
    padding: 0 40px;
    padding: 0 2.857142857rem;
    margin-top: 48px;
    margin-top: 3.428571429rem;
    margin-bottom: 48px;
    margin-bottom: 3.428571429rem;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
  }

}
