// Função para aumentar e diminuir o texto
	var tam = 13;
	function mudaFonte(tipo){
		var aObj;
		if (tipo=="mais")
		{
			if (17>tam) tam+=2;
		} 
			else
		{
			if (tam>11) tam-=2;
			
		}
		//document.getElementById('container_corpo').style.fontSize = tam+'px';
		aObj=document.getElementsByTagName('*');
		for(var i=0;i<aObj.length;i++){
			if (aObj[i].className=='zoom_text'){
				aObj[i].style.fontSize = tam+'px';
			}
		}
		
	}
