/* Last updated on Feb 25, 2020 */

/** NOW WE WILL SET THE BASIC HTML DEFINITIONS FOR ALL PAGES OTHER THAN INDEX.HTML **/

{
    margin: 0;
    padding: 0;
}

body {
    /*width: 100%;*/
    padding: 0 0 30px 0; /* top right bottom left */
    font: 18px "Times New Roman", Times, serif;
    text-align: center;
    color: black;
    background: lightgray;
}

h1 {
    font-family: 'Times New Roman', Times, serif;
    /* padding: 10px 0 0 25px; */ /*top right bottom left */
    font-weight: 800;
    font-size: 50px;
    color: darkgreen;
}

h2 {
    /* padding: 3px 0 0 25px; */ /*top right bottom left*/
    font-weight: bold;
    font-size: 20px;
    color: darkgreen;
}

p {
    padding: 8px 0;
    text-align: justify;
    font-size: 18px;
}

td {
    padding: 6px;
}

/* SETS THE VARIOUS HYPERLINK PROPERTIES */
a {
    font-weight: bold;
    text-decoration: underline;
    color: #05535A;
}

    a:hover {
        text-decoration: underline;
        color: #20949E;
    }

    a:active {
        color: #3D5229; /** A chartreuse color **/
        text-decoration: none;
        font-weight: bold;
        background-color: #FFFFFF;
    }
    /* END OF VARIOUS HYPERLINK PROPERTIES */

ol {
    padding: 0px 0;
    text-align: justify;
    font-size: 18px;
    margin-left: 25px;
}

ul {
    text-align: justify;
    font-size: 18px;
    margin-left: 23px;
    color: black;
}

li {
    margin: 10px 0;
}

    
#main {
    display:block;
    margin: 0 auto;
    width: 950px;
    text-align: left;
    border: 8px solid #375b1a;
    background:white;
    padding-top:-10px;
}

#header {
    text-align: center;
    height: 150px;
    background: lightgray no-repeat;
    color: darkgreen;
}

#menu {
    height: 52px;
    background: white url(../images/menu.jpg) no-repeat;
    margin-top:0;
}

    #menu ul {
        list-style: none;
        padding: 0 0 0 10px;
        margin:0;
    }

        #menu ul li {
            padding: 0 10px; /*top right bottom left*/
            display: block;
            float: left;
        }

            #menu ul li a {
                padding: 0;
                font-weight: bold;
                font-size: 20px;
                line-height: 46px;
                text-decoration: none;
                color: #A9B59F;
            }

                #menu ul li a.active, #menu ul li a:hover {
                    text-decoration: none;
                    color: white;
                }

#right {
    float:inherit; 
    padding: 0 36px 30px 36px; /*top right bottom left */
    font-size: 18px;
    background: white url(../images/right.jpg.bak) no-repeat;
}

    #right h3 {
        padding: 20px 0 10px 0; /*top right bottom left */
        font-weight: normal;
        font-size: 24px;
        color: black;
    }

    #right ul {
        /*list-style: none;*/
        padding: 8px 0 8px 35px;
    }

        #right ul li {
            text-align: justify;
        }


.clearing {
    clear: both;
    height: 1px;
    overflow: hidden;
}

#footer {
    /* clear: both; */
    padding: 10px 0px 10px 0px; /*top right bottom left*/
    color: black;
    font-size: 12px;
    background: lightgray no-repeat;
    width: 100%;
    text-align: center;
}

img {
    display: block;
    border-color: green;
    border-width: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
}

    img.wrap {
        max-width: 50%;
        margin: 20px 0px 20px 0px; /*top right bottom left*/
    }

    img.align-right {
        float: right;
        margin-left: 30px;
        margin-right: 30px;
    }

    img.align-left {
        float: left;
        margin-right: 30px;
    }

.centerImage {
    text-align: center;
    display: block;
}

p.pic {
    text-align: left;
    font-size: 18px;
}

.feature {
   width:70%;
   margin: auto;
    
}
