html{
    font-family: 'Quicksand', sans-serif;
}

body{
    width: 100%;
    font-size: 0.9em;
    background-color: #ffffff;
    margin: 0;
}

h1, h2, h3, h4{
    margin: 0;
}

ul, li{
    margin: 0;
    padding: 0;
    list-style: none;
}

input#busqueda{
    width: 200px;
}

ul#resultadoBusqueda{
    font-size: 0.7em;
    background-color: white;
    position: absolute;
    z-index: 1;
    max-height: 20vh;
    overflow-y: scroll;
    width: 200px;
    left: 21px;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
    border-bottom: 1px solid gray;
    color: #222222;
}


/*input#busqueda:focus ~ ul#resultadoBusqueda{
    visibility: visible;
}*/

ul#resultadoBusqueda a{
    text-decoration: none;
}

ul#resultadoBusqueda a:link{
    color: #222222;
}
ul#resultadoBusqueda a:visited{
    color: #222222;
}

header{
    width: 100%;
    background-color: #03B4FF;
    height: 70px;
    /*padding-top: 15px;*/
    color: #ffffff;
    border-bottom: 1px solid black;
}

#logo{
    /*width: 20%;*/
    text-align: center;
    float: left;
    border-right: 1px solid black;
}

#titulos{
    float: left;
    margin-left: 1%;
    /*width:  90%;*/
    text-align: center;
    padding-top: 10px;
    background-color: #03B4FF;
}

#buscarHeader{
    float: right;
    background-color: #03B4FF;
    margin-top: 30px;
    margin-right: 1%;
    position: relative;
}

#buscarHeader img{
    vertical-align: middle;
}

#logo img{
    vertical-align: middle;
}

.separador{
    clear: both;
    width: 100%;
/*    height: 5px;
    background: linear-gradient(white,#03B4FF);*/
}

#contenedor{
    width: 98%;
    padding: 1%;
}

nav{
    width: 18%;
/*    background-color: #F5F5F5;*/
    float: left;
    height: 77vh;
    margin-right: 1%;
    padding-left: 1%;
    padding-top: 1%;
    box-shadow: 3px 0px 10px #888888;
    border-radius: 20px;
    overflow-y: scroll;
}

nav a{
    text-decoration: none;
}

nav a:link{
    color: black;
}

nav a:visited{
    color: black;
}

.mapa{
    width: 80%;
    float: left;
    background-color: #F5F5F5;
    border-radius: 15px;
}

#map {
    height: 79vh;
    width: 100%;
    border-radius: 15px;
}

footer{
    width: 99.8%;
    text-align: center;
    background-color: #03B4FF;
    color: white;
    font-weight: bold;
    padding: 0.1%;
    margin-top: 14px;
    font-size: 12px;
    border-top: 1px solid black;
}

.clear{
    clear: both;
}

ul.navegador li{
    padding-bottom: 10px;
}

ul.subnavegador{
    padding-left: 15px;
}

ul.subnavegadormas{
    padding-left: 47px;
    font-size: 0.8em;
}

ul.subnavegador li a img{
    vertical-align: middle;
    margin-right: 15px;
}

a.desplegable img{
    vertical-align: middle;
    margin-right: 5px;
}

.fa-plus-square-o{
    font-size: 0.8em;
}

.clearMap{
    width: 70px;
    background-color: #03b4ff;
    color: white;
    padding: 2px;
    font-size: 9px;
    border-radius: 5px;
    box-shadow: 3px 0px 10px #888888;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (max-width: 555px){
    nav{
        display: none;
    }
    .mapa{
        width: 100%;
    }
    #buscarHeader{
        display: none;
    }
}