$(document).ready(function() {

    $("#noticiasHome li:first").css({border: "0px"});
    $("#noticiasHome li:last").css({borderBottom: "1px solid #D0D8DA"});
    $("#noticiasHome li:first p a").css({fontSize: "18px", lineHeight: "120%"});
    $(".bgEspacoSindico:last").css({marginRight: "0px"});

    /*MÁSCARA PARA O CAMPO TELEFONE*/
    $(".telefone").mask("(99) 9999-9999");

    /*MÁSCARA PARA O CAMPO DATA DE NASCIMENTO*/
    $(".data").mask("99/99/9999");

    /*TARGET: _BLANK NOS LINKS*/
    $('a[rel*=external]').click( function() {
        window.open(this.href);
        return false;
    });

});