@charset "iso-8859-1";

/* - - - - - - - - - - - - - - - - - - - - - -   Global settings - fairly basic to begin with */

/* If I define stuff for mobile here, as I understand it, it should override the normal styles
   but where there is nothing specific here, the normal styles shold still be used            */

@media handheld {
	
	/* all styles within here should only apply to mobiles. This construct apparently ensures that older
	   non-mobile-aware browsers won't apply styles alsewhere. I don't entirely understand why a browser 
	   that doesn't recognise "media = handheld" in the link in the head will recognise it here and am 
	   taking on trust information I obtained from an arbitrary web site (perishablepress.com). */
	   
}