/* General styles */
html, body {
    margin:0;
    padding:0;
    height:100%;
}
body {
    border:0;
    width:100%;
    color: #000;/* Black on white for contrast */
    background: #fff;
    font-size: 62.5%; /* Resets UA 16px common default such that 1em = 10px. Kudos to Richard Rutter. */
    line-height: 1.5; /* We can use unitless numbers here; they act as multiples of the font-size. */
    font-family:Arial, Verdana, Helvetica, sans-serif; /*Set the same as E:HEBER*/
}
address {
    display:inline;
    font-style:normal;
}
abbr, acronym, .help {
    border-bottom: 1px dotted #333;
    cursor: help;
}
pre { 
    font-family: monospace;
    margin-left: 0em; 
}
.key {
    font-size: 50%
}
a:link img, a:visited img {
    border:0;
}
a:link, a:active {
    color: #0000ee;
    background: transparent;
    text-decoration: none;
}
a:visited {
    color: #552299;
    background: transparent;
}
a.external
{
    background:url(../fileicons/external.png) center right no-repeat;
    padding-right:16px
}
h1 {
    text-align: center;
}
h2 {
    text-align: left;
}
h3 {    /* distinguish from h2 */
    font-style: italic; 
    text-align:left;
    margin-left: 0em; 
}
img {
    border:0;
}
img.display {
 display: block;
    margin-left: auto;
    margin-right: auto;
}
li {
    text-indent:0;
}
/* Single narrow column format*/
#content {
    min-height:100%;
    position:relative;
    width: 42em;/* Short line length for readability */
    margin: 0 auto 0 auto;/* To reliably float in the center of the page */
    }
main{ /* HTML5 main (content) */
    min-height:100%;
    position:relative;
    width: 42em;/* Short line length for readability */
    margin: 0 auto 0 auto;/* To reliably float in the center of the page */
}
#body {
    padding-top:1em;
    font-size: 1.6em;  /* 16pt */
    padding-bottom:11em;/* Height of the footer */
}
#footer {
    position:absolute;
    bottom:0;
    width:100%;
    height:11em;/* Height of the footer */
    font-size: 1.6em;  /* 16pt */
}
footer{ /* HTML5 footer */
    position:absolute;
    bottom:0;
    width:100%;
    height:11em;/* Height of the footer */
    font-size: 1.6em;  /* 16pt */
}
#footer p {
    margin:1em;
    font-size: 0.75em;
}
footer p {
    margin:1em;
    font-size: 0.75em;
}
/*Resource list styles*/
.resources ul {margin:0em 1em; padding:0em}
.resources li
{
    margin: 0.3em 0em;
    padding-left: 0em;
    list-style-position: inside;
    list-style-type: disc;
    text-indent: 0em;
}
/* Provides override for sublists of the below */
.resources li.normal
{
    margin: 0.3em 0em;
    padding-left: 0em;
    list-style: disc outside none;
    list-style-position: inside;
    list-style-type: disc;
    text-indent: 0em;
}
.resources li.pdf
{
    list-style: url(../fileicons/pdf.gif);
    list-style-position: inside;
}
.resources li.txt
{
    list-style: url(../fileicons/txt.gif);
    list-style-position: inside;
}
.resources li.jpg
{
    list-style: url(../fileicons/jpg.gif);
    list-style-position: inside;
}
.resources li.mp3
{
    list-style: url(../fileicons/mp3.gif);
    list-style-position: inside;
}
.resources li.doc
{
    list-style: url(../fileicons/doc.gif);
    list-style-position: inside;
}
.resources li.odt
{
    list-style: url(../fileicons/odt.gif);
    list-style-position: inside;
}
.resources li.ods
{
    list-style: url(../fileicons/ods.gif);
    list-style-position: inside;
}
.resources li.xls
{
    list-style: url(../fileicons/xls.gif);
    list-style-position: inside;
}
.resources li.multimedia-embed
{
    list-style: none;
    list-style-position: inside;
}
figure { /* HTML5 figure environment (added 2017-09) */
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    margin: auto; /* to center */
}
figcaption { /* HTML5 figcaption environment (added 2017-09) */
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
    font-size:80%
}