/* --------------
   Media Queries
   -------------- */
/* Let CSS select the appropriate image sizes depending on the device - smaller devices load smaller image files */   

/* Portrait & landscape phone */
@media (max-width: 480px) {
	
	body {
		font-size: 16px;
	}
	
}
