/* ==== cellplay.css; all core modules, as well as extra mods (via. modules.css) are imported here. ==== */
/* Add the following line to the HEAD of all .htm files, to allow proper scaling on mobile devices that use it:
 * <meta name="viewport" content="width=device-width, initial-scale=1.0" /> */

/* ==== Import cellplay core modules ==== */
@import url("reset.css");
@import url("common.css");
@import url("grids.css"); /* for testing of new grids module; remove -new from the filename for old grids mod */

/* ==== Import extra modules ==== */
@import url("modules.css");

/* ==== Special classes for low resolution/mobile devices ==== */
@media handheld, print, only screen and (max-width: 767px) {
	/* Exclude any element at low resolution */
	.excludeAtLowRes {
		display: none !important;
		visibility: hidden !important;
	}
}