function agrandarTexto(){
	if(cuerpo < 21){
		cuerpo++;
		document.getElementById('cuerpo_texto').style.fontSize = cuerpo + 'px';
	}
}

function achicarTexto(){
	if(cuerpo > 9){
		cuerpo--;
		document.getElementById('cuerpo_texto').style.fontSize = cuerpo + 'px';
	}
}
