/*webkit*/

@media screen and (-webkit-min-device-pixel-ratio:0) {  
    html, html a {
        -webkit-font-smoothing: antialiased;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
    }
}

/*mozilla*/

@-moz-document url-prefix() {
    html, html a {
        text-shadow: 0 0 0;
    }
    
    .menu ul li a{
        text-shadow: 0 0 0.5px rgba(255,255,255,0.5);
    }
}