
	function decreaseFontSize() {
		document.body.style.fontSize = '10px';	
	}
	
	function defaultFontSize() {
		document.body.style.fontSize = '12px';
	}
	
	function increaseFontSize() {
		document.body.style.fontSize = '14px';
	}
