function tam() {
	pag = conteudo.document.getElementById("pag").scrollHeight;
	if(pag > 414){
		document.getElementById("conteudo").height = conteudo.document.getElementById("pag").scrollHeight;
	}else{
		document.getElementById("conteudo").height = 414;
	}
}