var normal=11;
var min=10;
var max=18;
function aumentarTamanho() {
   
   if (document.getElementById('body') == null) {
      var c = document.getElementById('body');
   } else {
      var c = document.getElementById('body');
   }
   
   if(c.style.fontSize) {
      var s = parseInt(c.style.fontSize.replace("px",""));
   } else {
      var s = normal;
   }
   if(s<max) {
      s += 2;
   } else if(s>=max) {
      
   }
   c.style.fontSize = s+"px"

}

function diminuirTamanho() {
   
   if (document.getElementById('body') == null) {
      var c = document.getElementById('body');
   } else {
      var c = document.getElementById('body');
   }
   
   if(c.style.fontSize) {
      var s = parseInt(c.style.fontSize.replace("px",""));
   } else {
      var s = normal;
   }
   if(s>min) {
      s -= 2;
   } else if(s<=min) {
      
   }
   c.style.fontSize = s+"px"

}
