<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* -- Please ask questions if you need help -- */

#mobileMenu {
    display: none;
    cursor: pointer;
}

#nav {
    z-index: 500;
    position: relative;
}

    #nav .menu {
        margin: 0;
        padding: 0;
        position: relative;
        float: right;
    }

    #nav .navContainer {
    width:960px;
    margin:auto;
    }

        #nav .menu li {
            list-style: none outside;
            float: left;
            position: relative;
        }

            #nav .menu li a {
                color: #8b8b8b;
                display: block;
                padding: 9px 25px;
                text-decoration: none;
            }

            #nav .menu li.first a {
                /* -- For specific CSS on the first link in the Main Menu.  For example, nav dividers and borders. -- */
            }

            #nav .menu li.last a {
                /* -- For specific CSS on the last link in the Main Menu.  For example, nav dividers and borders. -- */
                border-right: none;
            }

            #nav .menu li a:hover {
                color: #000; /* -- Main menu hover color. -- */
            }

        #nav .menu ul {
            display: none;
            margin: 0;
            padding: 0;
            position: absolute;
            top: 100%;
            left: 0%;
            width: 100%;
        }

            #nav .menu ul li {
                float: none;
                text-align: center; /* -- Take this line of css out if links need to be left aligned. -- */
            }

                #nav .menu ul li a {
                    padding: 4px 10px;
                    background: #666; /* -- Sub menu background color.  This will also affect the sub sub background color. -- */
                    border-bottom: #999 solid 1px;
                    border-right: none;
					color: #fff;
                }

                    #nav .menu ul li a:hover {
                        background: #999; /* -- Sub menu hover color. -- */
						color: #fff;
                    }

            #nav .menu ul ul {
                top: 0%;
                left: 100%;
            }

                #nav .menu ul ul li a:hover {
                    background: #999; /* -- Sub sub menu hover color. -- */
					color: #fff;
                }

        /* -- The CSS below does not need to be edited in any way.  It is for multiple sub menus if they appear on the site. -- */

        #nav .menu li:hover ul ul {
            display: none;
        }

            #nav .menu li:hover ul ul ul {
                display: none;
            }

@media (min-width:769px) {
    #nav .menu li:hover ul, #nav .menu ul li:hover ul {
        display: block;
    }

    #nav .menu ul ul li:hover ul {
        display: block;
    }

    #nav button.subMenu {
        display: none;
    }
}</pre></body></html>