*, *:before, *:after {
    box-sizing: inherit;
}

a.hover-link {
    text-decoration: none;
}
a.hover-link:focus {
    outline: 0;
}
a.hover-link:hover {
    color: darkred;
}

abbr:hover{
  cursor: help;
}

body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: large;
    background: lavender;
}

.darkred {
    color: darkred;
}

.dropdown {
    display: inline-block;
    position: relative;
    padding: 8px 16px;
    color: white;
}
.dropdown:hover {
    background-color: lightgrey;
    color: black;
    cursor: pointer;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropdown-content li:hover {
    background-color: #555;
    color: white;
}
.dropdown:hover .dropdown-content li a {
    display: block;
    color: #000;
    padding: 8px 16px;
}
.dropdown:hover .dropdown-content li:hover a {
    background-color: #555;
    color: white;
}

.dropdown-content {
    display: none;
    position: absolute;
    list-style-type: none;
    background-color: lightgray;
    left: 0;
    width: 120%;
    overflow: auto;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    margin-top: 8px;
    padding: 0;
    z-index: 1;
}
.dropdown-content > li > a {
    text-decoration: none;
    text-align: left;
}

footer {
    border-top-style: solid;
    border-top-width: 1px;
    border-top-color: #000C55;
}

h1 {
    color: darkred;
}

h2 {
    font-style: italic;
    margin-bottom: 0;
    color: darkred;
}

.hamburger {
    cursor: pointer;
    position: relative;
    padding-left: 1.75em;
}
.hamburger:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 1em;
    height: 0.15em;
    margin-left: 0.5em;
    background: white;
    box-shadow:
    0 0.25em 0 0 white,
    0 0.5em 0 0 white;
}
.hamburger:hover {
    background: #555;
    color: white;
}
.hamburger:hover:before {
    background: white;
    box-shadow:
        0 0.25em 0 0 white,
        0 0.5em 0 0 white;
}

header {
    position: relative;
    background: white;
}

html {
    box-sizing: border-box;
    height: 100%;
}

main {
    margin-bottom: 4em;
}

p {
    margin: 10px;
    line-height: 1.5;
}

section > img.section-image {
    width: 100%;
}

th.right-aligned {
    text-align: right;
}

#top-menu {
    text-align: center;
    background: #000C55;
}
#top-menu > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#top-menu > ul > li {
    display: inline-block;
}
#top-menu > ul > li > a {
    display: block;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
}
#top-menu > ul > li > a:hover {
    background-color: #555;
    color: white;
}

/* Selectors that depend on media queries */

/* Breakpoints bounded by 700 pixels and 1000 pixels */
@media all and (min-width: 701px) and (max-width: 1000px) {
    #contact-info {
        display: inline-block;
        position: absolute;
        right: calc(5%);
        top: 16px;
        width: 300px;
        background: white;
        border: none;
    }
    #contact-info > table {
        position: relative;
        left: 25px;
    }
    #contact-info > table th {
        padding-right: 8px;
    }

    .hamburger-bar {
        display: none;
    }
}
@media all and (max-width: 700px) {
    #contact-info {
        display: block;
        position: relative;
        left: calc(5%);
        width: 300px;
        background: white;
        border: none;
    }
    #contact-info > table {
        position: relative;
        left: 25px;
    }
    #contact-info > table th {
        padding-right: 8px;
    }

    .hamburger-bar {
        padding: 8px;
        background: #000C55;
    }
    .hamburger-bar ul {
        display: none;
        position: absolute;
        list-style-type: none;
        background-color: lightgray;
        left: 0;
        width: 250%;
        overflow: auto;
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
        margin-top: 8px;
        padding: 0;
        z-index: 1;
    }
    .hamburger-bar ul > li > a {
        text-decoration: none;
        text-align: left;
    }

    #top-menu {
        display: none;
    }
}

/* Breakpoint at 1000 pixels */
@media all and (min-width: 1001px) {
    #contact-info {
        display: inline-block;
        position: absolute;
        right: calc(20%);
        top: 16px;
        width: 300px;
        background: white;
        border: none;
    }
    #contact-info > table {
        position: relative;
        left: 25px;
    }
    #contact-info > table th {
        padding-right: 8px;
    }

    #copyright {
        position: absolute;
        left: calc(20%);
    }

    div.content-and-photo {
        overflow: hidden;
        position: relative;
        left: 20%;
        width: 60%;
    }
    div.content-and-photo > section {
        float: left;
        margin-bottom: -99999px;
        padding-bottom: 99999px;
        left: 0;
        width: 80%;
    }
    div.content-and-photo > aside {
        float: left;
        margin-bottom: -99999px;
        padding-bottom: 99999px;
        width: 20%;
        padding-top: 2em;
    }
    div.content-and-photo > aside > img {
        width: 100%;
    }
    div.content-and-wide-photo {
        overflow: hidden;
        position: relative;
        left: 20%;
        width: 60%;
    }
    div.content-and-wide-photo > section {
        float: left;
        margin-bottom: -99999px;
        padding-bottom: 99999px;
        left: 0;
        width: 60%;
    }
    div.content-and-wide-photo > aside {
        float: left;
        margin-bottom: -99999px;
        padding-bottom: 99999px;
        width: 40%;
        padding-top: 2em;
    }
    div.content-and-wide-photo > aside > img {
        width: 100%;
    }

    div.one-or-three-columns > * {
        display: inline-block;
        vertical-align: top;
    }

    footer {
        position: fixed;
         /*top: calc(100% - 4em);*/
        flex-shrink: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 4em;
        color: grey;
        background: lavender; /* mintcream; */ /* #333; */
    }

    .hamburger-bar {
        display: none;
    }

    .header-and-content {
        display: flex;
        min-height: 100vh;
        flex: 1 0 auto;
        flex-direction: column;
    }

    #logo {
        position: relative;
        left: 20%;
        text-decoration: none;
    }

    #logo > img {
        margin-top: 4px;
    }

    nav.breadcrumbs {
        position: relative;
        left: 20%;
        width: 60%;
    }
    nav.breadcrumbs > p {
        margin: 0;
        font-size: small;
    }

    .paragraph-and-list > p {
        display: inline-block;
        position: relative;
        width: 70%;
    }
    .paragraph-and-list > ul {
        display: inline-block;
        position: relative;
        vertical-align: top;
        width: 20%;
    }

    #privacy-policy {
        position: absolute;
        right: calc(20%);
        text-align: right;
    }

    section {
        position: relative;
        left: 20%;
        width: 60%;
    }

    .split-list-1000-first-part {
        display: inline-block;
    }
    .split-list-1000-second-part {
        display: inline-block;
    }
}
@media all and (max-width: 1000px) {
    #copyright {
        position: relative;
        left: calc(5%);
        color: grey;
    }

    div.content-and-photo {
        overflow: hidden;
        position: relative;
        left: 5%;
        width: 90%;
    }
    div.content-and-photo > section {
        float: left;
        margin-bottom: -99999px;
        padding-bottom: 99999px;
        left: 0;
        width: 80%;
    }
    div.content-and-photo > aside {
        float: left;
        margin-bottom: -99999px;
        padding-bottom: 99999px;
        width: 20%;
        padding-top: 2em;
    }
    div.content-and-photo > aside > img {
        width: 100%;
    }
    div.content-and-wide-photo {
        overflow: hidden;
        position: relative;
        left: 5%;
        width: 90%;
    }
    div.content-and-wide-photo > section {
        float: left;
        margin-bottom: -99999px;
        padding-bottom: 99999px;
        left: 0;
        width: 60%;
    }
    div.content-and-wide-photo > aside {
        float: left;
        margin-bottom: -99999px;
        padding-bottom: 99999px;
        width: 40%;
        padding-top: 2em;
    }
    div.content-and-wide-photo > aside > img {
        width: 100%;
    }

    #logo {
        position: relative;
        left: 5%;
        text-decoration: none;
    }

    #logo > img {
        margin-top: 4px;
    }

    nav.breadcrumbs {
        position: relative;
        left: 5%;
        width: 90%;
    }
    nav.breadcrumbs > p {
        margin: 0;
        font-size: small;
    }

    .paragraph-and-list > p {
        display: block;
        position: relative;
        width: 100%;
    }
    .paragraph-and-list > ul {
        display: block;
        position: relative;
        vertical-align: top;
        width: 100%;
    }

    #privacy-policy {
        position: relative;
        left: 5%;
        /*right: calc(20%);*/
        /*text-align: right;*/
    }

    section {
        position: relative;
        left: 5%;
        width: 90%;
    }

    .split-list-1000-first-part {
        margin-bottom: 0;
    }
    .split-list-1000-second-part {
        margin-top: 0;
    }
}

/* Breakpoint at 1200 pixels */
@media all and (min-width: 1201px) {
    .split-list-1200-first-part {
        display: inline-block;
    }
    .split-list-1200-second-part {
        display: inline-block;
    }
}
@media all and (max-width: 1200px) {
    .split-list-1200-first-part {
        margin-bottom: 0;
    }
    .split-list-1200-second-part {
        margin-top: 0;
    }
}
