.h-30px {
    height: 30px;
}
.h-50px {
    height: 50px;
}
.h-100px {
    height: 100px;
}

.w-half {
    width: 420px;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



:root {
    color: var(--color-text);
    font-family: "Public Sans", Sans-serif;
    font-size: 20px;
    line-height: 1.3em;
    letter-spacing: -0.3px;
}
body {
    background-color: var(--color-background-white);
}



a {
    color: var(--c-text);
}
a:hover,
nav a, 
main a,
.link {
    color: var(--c-orange);
    text-decoration: underline;
}
main a:hover {
    text-decoration: underline;
}



#header_background,
footer {
    background-color: var(--color-background-white);
}


header a {
    height: 50px;
}
#header_background {
    position: absolute;
    height: 75px;
}
#header {
    margin: .5rem 1rem 1rem 1rem;
}
header #a2b_logo {
    display: inline-flex;
}
#header,
header #a2b_logo,
header #a2b_logo img {
    height: 95px;
}


nav {
    margin: 0 0 1rem 0;
    padding: 0.25rem 1rem;
    background-color: var(--c-grey);
}
nav, #nav {
    font-weight: bold;
}


nav a {
    color: var(--c-orange);
}



main {
    padding: 0 1rem 1rem 1rem;
}
main #content_wrapper {
    margin: 0;
}
main div[id^='article_'], 
main #content {
    max-width: 900px;
}


main #title {
    color: var(--c-orange);
}

main div[id^='article_'] h1, 
main div[id^='article_'] h2 :not(#title), 
main div[id^='article_'] h3, 
main div[id^='article_'] h4, 
main div[id^='article_'] h5, 
main div[id^='article_'] h6 {
    margin-top: 24px;
}


ul, ol {
    margin-left: 1.25rem!important;
}
ol {
    margin-bottom: 1rem;
}
ol li {
    margin-top: 1rem;
}
ul li {
    margin-top: 0;
}

p {
    margin-bottom: 0.5rem;
}

h4 {
    margin-top: 1rem;
}


#footer {
    margin: 0.5rem 1rem;
}
footer #below_footer {
    font-size: 15px;
}


.div_link {
    border: 4px solid var(--c-orange);
}

span[id^='cloak'] { /* this gets overridden by JS if activated */
    background-color: var(--c-grey);
}

hr {
    border-width: 0.15rem;
    border-color: var(--c-orange);
}






















