body{
  font-family: 'Droid Sans', 'Helvetica', Arial, sans-serif;
}

#latlng{
  display: block;
  margin: 0;
  padding: 0;
  position: absolute; /* posición absoluta a navegador */
  top: 0;             /* ajusta a borde de navegador */
  left: 0;
  right: 0;
  height: 50px;
}

#map{
  display: block;
  margin: 0;
  padding: 0;
  position: absolute; /* posición absoluta a navegador */
  top: 100px;      
  left: 0;        /* ajusta a borde de navegador */
  right: 0;
  bottom: 0;
  background: rgba(0,255,0,0.5); /* verde si no hay mapa */
}

#botones ul {
  margin:0;
  margin-right: 20px;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction: row;
  justify-content: flex-end;
}
#botones ul li {
}
#botones ul li img {
  width:20px;
  height:20px;
  padding: 0.3em;
  border-radius:50%;
  background-color: #626262;
  margin-right: 10px;
}
#botones ul li img:hover {
  background-color: white;
}
