Prueba 123
PRUEBA DE MAPA MUNDIAL
.land{fill:#134169; transition: all .5s;}
.land:hover {fill:#00aaff;
<!---->
<!--
-->
<!---->
<!---->
<!---->
<!--
-->
<!--
-->
function colourCountry(country_name, colour) {
var country = document.getElementById(country_name);
country.setAttributeNS(null, 'fill', colour);
}
function displayName(name) {
document.getElementById('country-name').firstChild.data = name;
}


