﻿/* ---------------------------------------------------------------
   Simple Menu
   ------------------------------------------------------------ */

.noah_nav {
    float: left;
    margin: 0;
    padding: 0;
    display: block;
}

    .noah_nav a {
        font-family: Arial, Verdana, san-serif;
    }

    .noah_nav li {
        position: relative;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .noah_nav > li.toplevel {
        float: left;
        height: 50px;
        background-color: transparent;
    }

        .noah_nav > li.toplevel:first-child {
            margin-top: 0;
        }

    .noah_nav .toplevel > a, .noah_nav .toplevel > span {
        display: block;
        font-size: 14px;
        font-weight: bold;
        line-height: 50px;
        color: #fff;
        text-decoration: none;
        padding: 0 10px;
    }

        .noah_nav .toplevel > a:hover {
            color: #e0e0e0;
        }

    .noah_nav > li.toplevel > ul {
        min-width: 100%;
    }

    .noah_nav > li ul {
        display: none;
        position: absolute;
        padding: 2px 0;
        background: #fff;
        -webkit-box-shadow: 3px 3px 6px 1px #e0e0e0;
        box-shadow: 3px 3px 6px 1px #e0e0e0;
        border: 1px solid #e0e0e0;
        z-index: 2;
    }

    .noah_nav li:hover > ul {
        display: block;
    }

    .noah_nav li.submenu {
        border-bottom: 1px solid #ccc;
    }

        .noah_nav li.submenu:last-child {
            border-bottom: 0;
        }

    .noah_nav .submenu > a,
    .noah_nav .submenu > span {
        display: block;
        padding: 5px 20px;
        font-size: 12px;
        color: #135275;
        text-decoration: none;
        white-space: nowrap;
    }

        .noah_nav .submenu > a:visited {
            color: #135275 !important;
        }

        .noah_nav .submenu > a:hover {
            color: #fff !important;
            background-color: rgb( 130, 62, 145);
        }

    .noah_nav .submenu > ul {
        left: 95%;
        top: 0;
    }

    /* with right arrow >*/
    .noah_nav li.submenurightarrow {
        border-bottom: 1px solid #ccc;
    }

        .noah_nav li.submenurightarrow:last-child {
            border-bottom: 0;
        }

    .noah_nav .submenurightarrow > a,
    .noah_nav .submenurightarrow > span {
        display: block;
        padding: 5px 20px;
        font-size: 12px;
        color: #135275;
        text-decoration: none;
        white-space: nowrap;
  
    background-image: url('rmExpandArrows.png');
    background-color: transparent;
    background-position: 100% 0;
    background-repeat: no-repeat;

    }

        .noah_nav .submenurightarrow > a:visited {
            color: #135275 !important;
        }

        .noah_nav .submenurightarrow > a:hover {
            color: #fff !important;
            background-color: rgb( 130, 62, 145);
               background-position: 100% 25%;
        }

    .noah_nav .submenurightarrow > ul {
        left: 95%;
        top: 0;
    }

    /*
    .noah_nav .submenurightarrow > a:after, .noah_nav .submenurightarrow > a:before {
        left: 100%;
        top: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .noah_nav .submenurightarrow > a:after {
        border-color: rgba(136, 183, 213, 0);
        border-left-color: rgb( 130, 62, 145);
        border-width: 12px;
        margin-top: -12px;
    }

    .noah_nav .submenurightarrow > a:before {
        border-color: rgba(194, 225, 245, 0);
        border-left-color: #c2e1f5;
        border-width: 14px;
        margin-top: -14px;
    }
    */