body{
    width: 100%;
    height: 100%;
    margin: 0%;
    font-family: Verdana, Tahoma, sans-serif;
    font-size: 14px;
}

body a:link{
    color: black;
}

body a:visited{
    color:black
}

header{
    width: 100%;
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    /*bottom: 630px;*/
    margin-top: 0%;
    background-color: #ffd000;
    border-bottom: 1px solid black;
    z-index: 2;
}

    #titulo{
        position: relative;
        left: 10px;
        top:0px;
        z-index: 0;
    }   

    #en{
        position: absolute;
        top: 0px;
        right: 17px;
        z-index: 0;
    }

    header h2{
        font-family: Verdana, Tahoma, sans-serif;
        text-align: left;
        color: rgb(0, 0, 0);
        font-weight: 500;
    }

    header h2 a{
        text-decoration: none;
    }

    header h2 a:hover{
        text-decoration-line: underline;
        color: white;
    }

#navegacao{
    width: 80%;
    position: relative;
    top: 70px;
    left: 154px;
    background-color: white;
    z-index: 1;
}

    nav ul li{
    display: inline-block;
    text-align: left;
    }

    nav ul li a{
        padding-left: 60px;
        text-decoration: none;
    }

    nav ul li a:hover{
    text-decoration-line: underline;
    color: #ffd000;
    }

#websig{
    position: relative;
    width: 100%;
    top: 65px;
    left: 0px;
    /*height: 568px;*/
    height: 558px;    
    /*background-color: aqua;*/
    text-align: center;
    border-right: none;
    z-index: 2;
}

    #mapDIV{
        height: 558px;
        width: 70%;
        margin: 0%;
        padding: 0%;
        float: right;
        z-index: 0;
        text-align: justify;
        border-top: 1px solid black;
        border-bottom: 1px solid black;
        border-left: 1px solid black;
    }

    #info{
        height: 558px;
        /*height: 570px;*/
        width: 30%;
        float: left;
        z-index: 0;
        border: 1px solid black;  
        margin-bottom: -650px;
        border-left: none;
        font-size: 12px;
        background-color: white;
        overflow-y: auto;
    }

/*footer{
    position: relative;
    width: 100%;
    height: auto;
    top: 64px;
    margin-top: 0px;
    text-align: center;
    font-size: 10px;
    background-color: #ffd000;
    z-index: 0;
    overflow: hidden;
}*/

footer{
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0px;
    margin-top: 0px;
    background-color: #ffd000;
    z-index: 0;
    overflow: hidden;
}

#foot{
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -0%);
    font-size: 9px;
}

footer p a{
    text-decoration: none;
}

footer p a:hover{
    text-decoration-line: underline;
    color: white;
}


  /* Dropdown Button */
  .dropbtn {
    background-color: #ffffff00;
    color: rgb(0, 0, 0);
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: Verdana, Tahoma, sans-serif;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
    text-decoration-line: underline;
    color: #ffd000;
  }
  
  /* The container <div> - needed to position the dropdown content */
  /*.dropdown {
    position: relative;
    display: inline-block;
    top: 37px;
    left: 7px;
    z-index: 2;
  }*/

  .dropdown {
    position: absolute;
    display: inline-block;
    top: 83px;
    /*left: 743px;*/
    left: 7px;
    z-index: 3;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 190px;
    height: 500px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    overflow:auto;
  }

  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ffd000;}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;} 