/* from https://css-tricks.com/box-sizing/ */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
    font-family: sans-serif;
	 font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 1rem;
}

/* ToDo: Lookup the owl selector form heydon */


p {max-width: 60em;}

pre {
    font-family: monospace;
    font-size: 14px;
    margin: 0.5em 0;
    overflow: auto;
    padding: 0;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

menu,
ol,
ul {
    margin: 16px 0;
    padding: 0 0 0 40px;
}

ul {
    list-style-type: square;
}

li > ul,
li > ol {
    margin: 0;
}
li > p {
    margin-bottom: 0.5rem;
}

img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
}

blockquote {
  font-style: italic;
  background-color: #eee;
}

table {
    border-bottom: 1px solid #ededed;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 14px;
    line-height: 2;
    margin: 0 0 20px;
    width: 100%;
}

caption {
	font-weight: bold;
	border-bottom: 1px grey dashed;
}

caption {
    font-size: 16px;
    margin: 20px 0;
}

th {
    font-weight: bold;
}

td {
    border: 1px solid #ededed;
    padding: 6px 10px 6px;
    line-height: 1.1;
    vertical-align: top;
}
td.good {background-color: #cfc;}
td.bad {background-color: #fcc;}
td.warning {background-color: #fdc;}

.wide-wrapper {
	max-width: 100%;
	overflow-x: scroll;
}

/* From https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe#.bhj5608be */
.a11y-suppliment {
  clip: rect(1px 1px 1px 1px); /* IE 6/7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; /* prevents words mushing together */
  width: 1px;
}
