/* --- static menu styles ---
note:
	1. not all browsers render styles the same way so try out your style sheet
	on different browsers before publishing;
style naming convention:
	m<zero based menu number>l<zero based level number>i|o<for inner or outer tag>
*/

body,
tr,
td,
p,
li {
    font-family: "Comic Sans MS", Verdana, Arial;
    font-size: 17px;
    color: navy;
}

h1 {
    font-family: "Amazone BT";
    color: #1d4d81;
    font-size: 26px;
    text-align: center;
    line-height: 25px;
}

h2 {
    font-family: 'Times New Roman', Times, serif;
    color: #dc143c;
    text-align: center;
}

h3 {
    font-size: 16px;
    font-family: "Comic Sans MS", Verdana, Arial;
    color: #1d4d81;
    text-align: center;
}

.top {
    margin-top: 20px;
}

.title {
    font-family: "Comic Sans MS", Verdana, Arial;
    font-size: x-large;
    font-weight: bold;
    font-style: italic;
}

.subtitle {
    font-family: "Comic Sans MS", Verdana, Arial;
    font-size: 22px;
    font-style: italic;
}

.margin20 {
    margin-left: 20px;
    margin-right: 20px;
}

.lmargin30 {
    margin-left: 30px;
}

.margin50 {
    margin-left: 50px;
    margin-right: 50px;
}

.rmargin50 {
    margin-right: 50px;
}

.center {
    text-align: center;
}

.justify {
    text-align: justify;
}

.ctr9 {
    font-family: Verdana, Arial;
    text-align: center;
    font-size: 9px;
}

A:hover {
    color: Red;
}

hr {
    color: #99cc99;
    height: 6px;
    width: 540px;
}

.hr2 {
    width: 540px;
    height: 1px
}

.h3link {
    font-size: 16px;
    font-family: "Comic Sans MS", Verdana, Arial;
    color: #1d4d81;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}

h4 {
    font-family: "Comic Sans MS", Verdana, Arial;
    text-align: center;
    font-size: 15px;
    color: #006633;
}

h5 {
    font-size: 15px;
    color: #804000;
}

.medium {
    font-size: medium;
}

.small {
    font-size: small;
}

.xsmall {
    font-size: x-small;
}

.xxsmall {
    font-size: xx-small;
}

.large {
    font-size: large;
}

.xlarge {
    font-size: x-large;
}

.xxlarge {
    font-size: xx-large;
}

.f10 {
    font-size: 10px;
}

.f11 {
    font-size: 11px;
}

.f13 {
    font-size: 13px;
}

.f15 {
    font-size: 15px;
}

.f17 {
    font-size: 17px;
}

.f19 {
    font-size: 19px;
}

.f21 {
    font-size: 21px;
}

.italics {
    font-style: italic
}

.spacing {
    letter-spacing: 5px;
    line-height: 150%;
}

.black15 {
    font-size: 15px;
    text-align: center;
}

.black {
    color: Black;
}

.brown {
    color: #804000;
}

.green {
    color: #006633;
}

.teal {
    color: #99cc99
}

.navy {
    color: navy;
}

.red {
    color: red;
}

.red15 {
    color: #dc143c;
    font-size: 15px;
}

.bgcolor {
    background-color: #fff8dc;
}

.copyright {
    color: #804000;
    font-size: 9px;
    text-align: center;
}

.menu {
    font-family: Verdana, Arial;
    font-size: 13px;
    padding: 5px;
    background-color: #99cc99;
    text-align: center;
    text-decoration: none;
    text-weight: normal;
    margin-left: 0px;
    margin-top: 0px;
}

.middle {
    vertical-align: middle;
}

.txtdec {
    text-decoration: none;
}

.scrollbar {
    scrollbar-3dlight-color: green;
    scrollbar-arrow-color: Black;
    scrollbar-base-color: White;
    scrollbar-darkshadow-color: Black;
    scrollbar-face-color: #99cc99;
    scrollbar-highlight-color: #c0febf;
    scrollbar-shadow-color: Black;
    scrollbar-track-color: #FFFFF0;
    "

}


/*NEW CSS Nav Bar 2022-02*/

.top {
    margin-top: 0;
}

.navWrapper {
    width: 790px;
    margin: 0 auto;
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 0;
    background: #339967 url(ajxmenu_files/menu-bg.gif) top center;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
    line-height: 0;
}

#topMenu>ul {
    justify-content: space-between;
    position: relative;
    display: flex;
    flex: 1 1 auto;
    margin: 0;
    padding: 0 30px;
    list-style-type: none;
}

#topMenu>ul li {
    border: 2px solid transparent;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    transition: background 1.2s;
}

#topMenu>ul li a {
    color: #ffffff;
    font: bold 12px Verdana, Arial, Helvetica, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
    line-height: 8px;
}

#topMenu>ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    display: block;
    margin: 12px -12px;
    padding: 0;
    background: rgb(78, 147, 40);
    border: 2px solid #254d10;
    border-right: 2px solid #0e1b07;
    border-bottom: 1px solid #0e1b07;
    border-radius: 5px;
    transition: opacity 1.2s, visibility 1.2s;
    list-style-type: none;
}

#topMenu>ul li ul li {
    margin: -2px 0 0 -2px;
    width: calc(100% - 20px);
    line-height: 1.2;
}

#topMenu>ul li ul li a {
    color: #ffffff;
}

#topMenu>ul li:hover {
    background: #316415;
    border: 1px solid #ffffff;
    border-right: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

#topMenu>ul li:hover a {
    color: #F9F8FD;
}

#topMenu>ul li:hover ul {
    visibility: visible;
    opacity: 1;
    box-shadow: 0px 3px 5px 2px #EBECF1;
}

#topMenu>ul li:hover ul li a {
    color: #F9F8FD;
}

@keyframes slide-in {
    0% {
        top: -50px;
    }
    40% {
        top: 20px;
    }
    70% {
        top: 10px;
    }
    100% {
        top: 15px;
    }
}