﻿
#Editorias {
    background: white;
    width: 100%;
    position: relative;
    top: -20px;
    z-index: 1;
}

    #Editorias ul {
        list-style-type: none;
        margin: 0;
        padding-left: 0;
        width: 220px;
        float: left;
    }

    #Editorias li {
        display: inline;
    }

        #Editorias li a {
            padding: 12px;
            display: inline-block;
            font-size: 16px;
            border-bottom: 3px solid #51b241;
        }

        #Editorias li:hover > a {
            background: #51b241;
            color: white !important;
            text-decoration: none;
        }

        #Editorias li:hover .seta-baixo {
            color: white !important;
        }

    /*---------------SubMenu----------------*/
    #Editorias ul ul {
        position: absolute;
        top: 54px;
        left: 0;
        z-index: 2;
        display: none;
        width: 100%;
        padding: 0;
        background: #51b241;
    }

    #Editorias ul li {
        margin: 0;
        padding: 0;
    }

    #Editorias ul ul a {
        color: white !important;
        margin: 0;
        font-size: 14px;
    }

        #Editorias ul ul a:hover {
            background: #86ed74;
        }

    #Editorias li:hover > ul {
        display: block;
    }
/*--------Fim do SubMenu-----------*/