
body{
    margin-right:0px;
    margin-left:0px;
    background-color:floralwhite;
    font-family: "calibri", "helvetica", "arial", sans-serif;
    font-size:110%;
    border: 0px solid;
    border-color:floralwhite;
}

h1{
    text-align: center;
}

h2{
    text-align: center;
    margin-top: 0;
    margin-bottom: 5px;
}

h3{
    text-align: center;
}

h4{
    text-align: center;
    margin-bottom: 0em;
}

hr{
    width: 100%;
}

p{
    clear: both;
}

#contactBand{
    margin-right: 0px;
    margin-left: 0px;
    border-top: 2px solid;
    border-bottom: 2px solid;
    border-color: black;
    background-color: whitesmoke;
}

/* Logo centered at top of page */
#logo{
    display: block;
    width: 35%;
    max-width: 350px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.center{
    text-align: center;
}

.nowrap{
    white-space: nowrap;
}

/* Wrap and left justify text, keeping the block of text centered and narrow */
.textBox{
    text-align: left;
    width: auto;
    max-width: 1200px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}

.flexContainer{
    display: flex;
    align-items: flex-start; /*Align tops*/
    justify-content: center; /*Extra space after maximizing the content
                               creates equal margins on right and left*/

    /*Set a maximum width, and if it is reached, center on the parent*/
    width: 100%;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.flexContent{
    position: relative;
    padding-right: 3px;
    padding-left: 3px;
    text-align: left;
}

.flexImg{
    width: 100%;
    height: 100%;
    max-width: 700px;
    max-height: 1200px;
    object-fit: contain; /*Maintain aspect ratio*/
}

.flexOneImg{
    width: 50%;
    height: 100%;
    max-width: 700px;
    max-height: 1200px;
    object-fit: contain; /*Maintain aspect ratio*/
}

.imgAnnotation{
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: floralwhite;
}

/* Center an image, sized the same as the paired images */
.centerImg{
    clear: both;
    display: block;
    width: 47.5%;
    max-width: 750px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}


.centerImgLarge{
    clear: both;
    display: block;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

