﻿/* Menu */
.cd.nav {
    background-color: #497a60;
    margin-left: 10px;
    margin-right: 10px;
    height: 33px;
    color: White;
    font-size: 1em;
    line-height: 33px;
    vertical-align: middle;
    /*padding-left:10px; padding-right:10px;*/
    clear: both;
}

    .cd.nav a, .cd.nav a:visited, .cd.nav a:active, .cd.nav a:link {
        color: White;
        padding-left: 15px;
        height: 33px;
        padding-right: 15px;
        text-decoration: none;
    }

        .cd.nav a:hover {
            text-decoration: none;
            color: White;
        }

    .cd.nav ul {
        padding-left: 10px;
        padding-right: 10px;
        margin-left: 0px;
        z-index: 999;
        list-style-type: none;
    }

        .cd.nav ul li {
            float: left;
            line-height: 33px;
            vertical-align: middle;
            position: relative;
            z-index: 999;
            /*padding-left:10px; padding-right:10px;*/
        }

    .cd.nav li:hover {
        background-color: #40ab4b;
    }

    .cd.nav li li {
        width: 200px;
    }

    .cd.nav .wider, .cd.nav .wider li {
        width: 250px;
    }

    .cd.nav li li:hover {
        background-color: #40ab4b;
    }

    .cd.nav ul ul {
        background-color: #497a60;
        margin-left: 1px;
        position: absolute;
        top: -999em;
        left: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }

        .cd.nav ul ul ul {
            background-color: #497a60;
            margin-left: 1px;
            position: absolute;
            top: 0px;
            left: -999em;
            padding-left: 0px;
            padding-right: 0px;
        }

    .cd.nav li:hover ul, .cd.nav li.sfHover ul {
        top: 33px;
        width: 200px;
    }

        .cd.nav li:hover ul li:hover ul, .cd.nav li.sfHover ul li.sfhover ul {
            top: 0px;
            left: 200px;
            width: 200px;
        }


    .cd.nav li ul {
        transition: all 0s ease-in-out 0.5s;
        z-index: 1;
    }

    .cd.nav li:hover ul {
        transition: all 0s ease-in-out 0s;
    }

    .cd.nav:hover li:not(:hover) ul {
        display: none;
    }
