/* Media Queries */

		/* Small Portrait */
		@media only screen and (min-width: 0px) and (max-width: 519px) and (orientation: portrait) { 
				body { font-size: 11px !important; }
		}

		/*  Medium Portrait */
		@media only screen and (min-width:520px) and (max-width: 959px) and (orientation: portrait) { 
				body { font-size: 12px !important; }
		}
		
		/* Large Portrait */
		@media only screen and (min-width:960px) and (orientation: portrait) { 
				body { font-size: 18px !important; }
		}
		
		/* Small Landscape */
		@media only screen and (min-width: 0px) and (max-width: 519px) and (orientation: landscape) { 
				body { font-size: 11px !important; }
		}
		
		/* Medium Landscape */
		@media only screen and (min-width:520px) and (max-width: 959px) and (orientation: landscape) { 
				body { font-size: 12px !important; }
		}
		
		/*Large  Landscape */
		@media only screen and (min-width:960px) and (orientation: landscape) { 
				body { font-size: 18px !important; }
		}		