var tam = 12;
	function mudaFonte(tipo){
		if (tipo=="mais") {
			if(tam<16) tam+=2;
		} else {
			if(tam>9) tam-=2;
		}
		document.getElementById('textoContainer').style.fontSize = tam+'px';
	}
