		var now = new Date();
        var hours = now.getHours();
        var psj=0;

        //7-19 Noite
        if (hours > 6 && hours < 20){
                document.write('<link href="arquivos/estilo.css" rel="stylesheet" type="text/css">')
        }

        //19-24 Noite
        if (hours > 18 && hours < 24){
                document.write('<link href="arquivos/preto.css" rel="stylesheet" type="text/css">')
        }
		        //0-7 Noite/Manhã
        if (hours > 0 && hours < 7){
                document.write('<link href="arquivos/estilo.css" rel="stylesheet" type="text/css">')
        }
		
		        //0-7 Noite/Manhã
        if (hours < 1 && hours < 7){
                document.write('<link href="arquivos/preto.css" rel="stylesheet" type="text/css">')
        }
