/* Plain Style-sheet. The main goal is to make headings sans-serif, and large
 * portions of text a serif font. In theory the result should be easier to read,
 * provided the display resolution is high enough.
 * As a "Plain" style-sheet, any effects should be subtle.
 * The design of this style sheet is informed in part by
 * "A sample style sheet for HTML 4.0"
 * http://www.w3.org/TR/1998/REC-CSS2-19980512/sample.html */

/* Copyright James Phillips June 2010.
 * This has not yet been tested with all media types:
 * http://www.w3.org/TR/REC-html40/types.html#type-media-descriptors
 *  Of particular concern are low-resolution media such as
 *  "tv" and "handheld". Carefully chosen bitmaped fonts may look
 *  better than generic serif or sans serif fonts. */
BODY  { 
	font-family: serif;
	}
DIV.Address {  /* case sesitive */
	text-align: center;
	font-family: sans-serif;
	}
H1, H2, H3, H4, H5, H6 {
	font-family: sans-serif;
	}
@media tty { H1, H2, H3, H4, H5, H6 {
		 text-decoration: underline;
	}
	}
DT     { font-family: sans-serif }

IMG	{
	/* suppress annoying box around image links */
	border-width: 0px;
	}

@media embossed, print, projection {
	/* Try to get printouts to break up nicely */
	DIV { page-break-inside : avoid }
	}



