var fonte = 13;
function tamanhoFonte(tipo) {
	if (tipo == '+') {
		if (fonte < 18) {
			fonte++;
		}
	} else {
		if (fonte > 10) {
			fonte--;
		}
	}
	$('.conteudo').css({ fontSize: fonte+'px' });
}
