<!-- ########## acessibilidade em texto ########## -->

var textoNormal = 12;
var tamanhoMaximo = 18;
var tamanhoMinimo = 10;

function mudaFonte(tipo,elemento){

	if (tipo=="mais") {
		if(textoNormal < tamanhoMaximo) textoNormal += 2;
		<!-- createCookie('texto',textoNormal,365); -->
	} else {
		if(textoNormal > tamanhoMinimo) textoNormal -= 2;
		<!-- createCookie('texto',textoNormal,365); -->
	}

	var chilldsSheetsDiv = document.getElementById('conteudo');

	if (chilldsSheetsDiv.hasChildNodes()) {

		// Pega todos os chillds do no
		var children = chilldsSheetsDiv.childNodes;
		
		// Loop dos childs
		for(var c=0; c < children.length; c++) {
			if(children[c].style) {
				children[c].style.fontSize = textoNormal +'px';
			}
		}
	}

	//document.getElementById('conteudo').style.fontSize = textoNormal +'px';

}

<!-- ########## fim acessibilidade em texto ########## -->
