body {
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}





#banner {
    position: fixed; top: 0;
    width: 100%;
    background-color: #fff;
    text-align: center;
    z-index: 20;
}
    #toplogo {
        width: 250px;
    }
    #portrait {
            position: fixed;
            top: 35px;
            right: 10px;
            border-radius: 50%;
            width: 35px;
        }


#head {
    position: relative;
    width:100%;
    margin-bottom: 50px;
}
#headimg {
    position: relative; 
    z-index: 0;
    top:80px;  
    width: 100%;
}
#head_fade {
    height: 90px;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    position: relative; top: -10px;
}
#headlineContainer{
    text-align: center;
    margin: 0 20px;
}
    #headline {
        opacity: 1;
        font-family: "Ubuntu", sans-serif;
        font-size: 3em;
        font-weight: bold;
        z-index: 10;
        animation: fadeIn 8s ;    
    }
    @keyframes fadeIn {
        0% {opacity: 0;}
        10% { opacity: 0; } 
        100% { opacity: 1; } 
    }





#section1 {
    width:100%;
    background-color: #b3aca1;
    background-image: linear-gradient(to bottom, #e7e4e0, #b3aca1);
    /* position: relative; */
    top: 0px;
    z-index: 2;
    overflow: hidden;
    text-align: center;
}

    #frame {
        display: inline-block;
        width: 80%;
        margin-top: 25px;
        border: solid 2px #9d7f70;
        border-radius: 10px;
        position: relative;
        /* animation: moveIn 3s ease-in-out;     */
        background-color: #fff;
        text-align: center;
        margin-bottom: 25px;

        /* right: 69%; */
        -webkit-transition:right 1500ms ease-in-out;
        -moz-transition:right 1500ms ease-in-out;
        -o-transition:right 1500ms ease-in-out;
        transition:right 1500ms ease-in-out;

        /* opacity: 0;
        -webkit-transition:opacity 1000ms ease-in-out;
        -moz-transition:opacity 1000ms ease-in-out;
        -o-transition:opacity 1000ms ease-in-out;
        transition:opacity 1000ms ease-in-out; */
    

    }
    /* @keyframes moveIn {
        0% {right: 100%;}
        30% { right: 100%; } 
        90% { right: 0px; } 
        100% { right: 0px; } 
    } */
    #frameContents{
        opacity: 1;
        /* -webkit-transition:opacity 2000ms ease-in-out;
        -moz-transition:opacity 2000ms ease-in-out;
        -o-transition:opacity 2000ms ease-in-out;
        transition:opacity 2000ms ease-in-out; */
        padding-bottom: 20px;
    }
        .frameHeadline {
            color: #9d7f70;
            font-size: 1.5em;
            font-weight: bold;
            padding: 5px;

        }
        .stdpara {
            font-family: Georgia, 'Times New Roman', Times, serif;
            text-align: left;
            line-height: 1.5;
            padding: 0 20px;
        }
        .signature, .date {
            text-align: left;
            color: #635047;
            font-style: italic;
            padding-left: 20px;
        }
        .signature {
            margin-block-end: 0;
        }
        .date {
            margin-block-start: 0;
            font-size: 0.8em;
        }







#pageFooter {
    padding: 20px;
    background-color: #333333;
    text-align: center;
}

#pageFooter a {
    color: #fff;
    text-decoration: none;
}

#pageFooter a:hover {
    color: #ec9848;
}