/* Some people, especially those still using CRTs, prefer White text on
 * a black background. This is not intended for printed media
 * Copyright James Phillips June 2010 */
@media screen, tv, projection, handheld {
	/* I am assuming most "tty" browsers ignore colour directives */
	BODY {
		color: white;
		background: black;
	}
	/* link colors stolens from 
	 * "Appendix A: Sample style sheet for HTML 2.0"
	 * In CSS leve 1 spec http://www.w3.org/TR/CSS1/
	 */
	A:link { color: blue }          /* unvisited link */
	A:visited { color: red }        /* visited links */
	A:active { color: lime }        /* active links */
}

