<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">		/* ATTENTION: The &lt;styles&gt; defined in here are meant for secondary pages and not for the Home page */

		/* For Mobile devices: Secondary page header class */
		/* Mobile first design. i.e. Specify the specification for Mobile device as default. Then, specification for other devices such as Desktops, tables etc. */
		.headerSecondaryPage { 
			flex: 100%;
			/* height: 600px; */
			text-align:center;
			color:black; /* white */
			background-image: url("../Images/ASPH24CellsHigh_1_Mobile1.jpg"); 
			background-repeat: no-repeat;
			background-position: center top;
			background-size: 100% auto; /* 100% 250px; */
		}

		/* For Desktops and Tables: header class*/
		/* For devices 600px and LARGER: */
		@media only screen and (min-width: 600px) {
		.headerSecondaryPage { 
				flex: 100%;
				/* height: 600px; */
				text-align:center;
				color:black; /* white */
				background-image: url("../Images/ASPH18CellsHigh_1.jpg"); 
				background-repeat: no-repeat;
				background-position: center top;
				background-size: 100% auto; /* 100% 600px; */
			}
		}		</pre></body></html>