@media all {
	html body {
		font-family: "Bitstream Vera Sans L", "Bitstream Vera Sans", "Trebuchet MS", Verdana, Tahoma, Helvetica, sans-serif;
		margin: 0;
		padding: 0;
		font-size: 76%; /* This, and ...*/
	}
	#Container {
		font-size: 1em; /* ...this, are part of the sane css typography experiment at  
                        http://www.thenoodleincident.com/tutorials/typography/index.html  */
	}
	/* link styles
	 * hover _must_ be placed before active and after link/visited 
	 * -- see http://www.w3.org/TR/CSS21/selector.html#x32 --
	 */
	a, a:link, a:visited, a:hover, a:active {
		background: inherit;
	}
	a, a:link {
		color: #552;
		color: #000080;
	}
	a:visited {
		color: #552;
		color: #000080;
	}
	a:hover {
		color: red; 
	}
	a:active {
		color: red;
	}
	/* header sizes for cross-browser, cross-platform consistency */
	#Container h1 {font-size: 2em; text-align: center;}
	#Container h2 {font-size: 1.5em;}
	#Container h3 {font-size: 1.25em;}
	#Container h4 {font-size: 1em;}
	#Container h5 {font-size: 0.83em;}
	#Container h6 {font-size: 0.67em;}
	h1, h2, h3, h4, h5, h6 {
		font-family : "Trebuchet MS", "Bitstream Vera Sans L", "Bitstream Vera Sans", "Lucida Sans", Verdana, Geneva, Helvetica, "Myriad Web", Syntax, sans-serif;
	}	
	.left {
		text-align: left;
	}
	.right {
		text-align: right;
	}
	.ctr {
		text-align: center;
	}
	.just {
		text-align: justify;
	}
	.clearing {
		clear: both;
	}
}
/* vim600:	set foldenable foldmethod=marker foldmarker={,} foldlevel=1 fcl=all fdc=3 : */
