body {
    margin: 0px;
}

h1 {
    font-family: 'Kalam', serif;
    padding: 0.25em;
    margin: 0px;
    letter-spacing: 12px;
}
h2 {
    font-size: 2.5em;
    margin-top: 0em;
    margin-bottom: 0.25em;
}
h3 {
    font-size: 2em;
    margin-bottom: 0.25em;
}

div.banner {
    padding: 0px;
    margin: 0px;
    height: 144px;
    /*
    background-image: url('background.png');
    background-position: right top;
    background-repeat: no-repeat;
    */
    background-color: #b3b3b3;
    font-size: 1.75em;
    text-shadow: 0px 0px 8px  #ff0000, 0px 0px 8px #ff0000,
                 0px 0px 12px #ff0000, 0px 0px 12px #ff0000;
    border-color: black;
    border-bottom-style: solid;
    border-bottom-width: 4px;
}
div.banner img {
    padding-left: 0.5em;
    position: absolute;
    top: 100px;
}
@media screen and (max-width: 560px) {
    div.banner img {
        width: 95%;
        object-fit: scale-down;
    }
}

.menu {
    list-style-type: none;
    font-family: sans-serif;
    padding: 0px;
    margin: 0px;
}
.menu li {
    padding: 0px;
    margin: 0px;
    font-size: 1.75em;
    margin-left: 0.25em;
    margin-right: 0.25em;
}
.menu a {
    text-decoration: none;
    padding: 0px;
    margin: 0px;
}
@media not screen and (max-width: 900px) {
    .menu li {
        display: inline;
        font-size:1.75em;
    }
}

main {
    /* Top right bottom left */
    margin: 0.5em 0em 0em 0em;
    padding: 1em;
    background-color: rgb(1,1,1,0.05);
    border-color: black;
    border-style: solid;
    border-width: 1px;
    min-height: 200px;
}

p.image {
    text-align: center;
}
p.image img {
    width: 90%;
    object-fit: scale-down;
}
@media not screen and (max-width: 900px) {
/* object-fit:scale-down does not shrink vertical space if image
   has a height value, so only add them for full-size screens */
    img.img566 {
        height: 566px;
    }
    img.img144{
        height: 144px;
    }
    img.img431{
        height: 431px;
    }
    img.img414{
        height: 414px;
    }
    img.img486{
        height: 486px;
    }
}

table.darkgrey {
    border-collapse: collapse;
    margin-left: auto;
    margin-right:auto;
    table-layout: fixed;
    border: 2px;
    border-style: solid;
    border-color: black;
}
table.darkgrey thead td {
    font-weight: bold;
}
table.darkgrey td {
    background-color: rgba(100,100,100,0.5);
    padding: 2px;
    border: 1px;
    border-style: solid;
    border-color: rgb(200,200,200);
    text-align: center;
}
table.darkgrey tbody tr:first-of-type td {
    border-top: 2px solid;
}
tbody.nowrap tr td {
    white-space: nowrap;
}

dl.pointlist {
  padding-left: 2em;
}
dl.pointlist dt {
    font-weight: bold;
}

code.inline {
	white-space: nowrap;
	border-style: dashed;
	padding: 0px 0.25em 0px 0.21em;
	border-width: 1px;
	border-color: rgba(250,220,215, 0.5);
	background-color: rgba(250,220,215, 0.2);
}
code.inline:hover {
	border-style: dashed;
	border-width: 1px;
	border-color: black;
	background-color: rgba(250,220,215, 0.5);
}

sup {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
}
