/* common css */	body {		margin: 0;		padding: 0;		font-size: 0.8em;		font-family: verdana, tahoma, helvetica, sans-serif;		background-color: #ffffef;		color: #000;		line-height: 160%		}	#maincontent {   		margin-left: 170px;   		margin-right: 180px;		/*		IE5x PC mis-implements the box model. Because of that we sometimes have		to perform a little CSS trickery to get pixel-perfect display across browsers.		The following bit of code was proposed by Tantek Celik, and it preys upon a CSS		parsing bug in IE5x PC that will prematurly close a style rule when it runs		into the string "\"}\"". After that string appears in a rule, then, we can override		previously set attribute values and only browsers without the parse bug will		recognize the new values. So any of the name-value pairs above this comment		that we need to override for browsers with correct box-model implementations		will be listed below.				We use the voice-family property because it is likely to be used very infrequently,		and where it is used it will be set on the body tag. So the second voice-family value 		of "inherit" will override our bogus "\"}\"" value and allow the proper value to		cascade down from the body tag.		The style rule immediately following this rule offers another chance for CSS2		aware browsers to pick up the values meant for correct box-model implementations.		It uses a CSS2 selector that will be ignored by IE5x PC.				Read more at http://www.glish.com/css/hacks.asp		*/				/* voice-family: "\"}\"";		voice-family: inherit;   		margin-left: 201px;   		margin-right: 201px; */		}			html>body #maincontent {   		margin-left: 170px;   		margin-right: 180px;   		max-width: 640px;		}	#featurecontent {		position: absolute;		top: 0;		right: 0;		margin: 0;		padding: 5px;		width: 170px;  /* need ie5 fudge here */		}			#maincontent p, #maincontent h1, #maincontent h2, #maincontent h3, 	#maincontent h4, #maincontent h5, #maincontent h6,	#maincontent ul, #maincontent ol		{		margin: 1.2em 10px 1em 15px;		}			#maincontent h1, #maincontent h2, #maincontent h3,	#maincontent h4, #maincontent h5, #maincontent h6		{		margin-bottom: -1em;		font-family: georgia, serif;		}			#maincontent h1 {		font-size: 1.3em;		color: #009;		letter-spacing: 1px;		}			#maincontent h2 {		font-size: 1.2em;		color: #309;		letter-spacing: 1px;		}			#maincontent h3 {		font-size: 1.1em;		color: #30c;		letter-spacing: 1px;		}			#maincontent h4 {		font-size: 1.1em;		color: #60c;		letter-spacing: 1px;		}			#maincontent h4 {		font-size: 1em;		color: #60f;		letter-spacing: 1px;		}			#maincontent h5 {		font-size: 0.9em;		color: #63c;		letter-spacing: 2px;		}			#maincontent h6 {		font-size: 0.8em;		color: #90c;		letter-spacing: 2px;		}			#maincontent a:hover		{		color: #f90;		}			#maincontent a:active		{		color: #f00; background-color: #fcc;		}			#featurecontent p {		font-size: 0.9em;		}	#nav {		position: absolute;		top: 0;		left: 0;		padding: 5px;		width: 150px;		background-color: #cfefd2;		color: #ccc;  /* lightest */		font-weight: bold;		/* need ie5win fudge here */		voice-family: "\"}\"";		voice-family: inherit;		width: 160px;		}		#nav p		{			margin: 2.5em 0 0.2em 0.7em;			line-height: 130%;		}		#nav a		{			color: #aaa;  /* lightest */		}	#nav a:hover		{			color: #90c;		}		#nav ul		{			margin: 0; padding: 0;			list-style-type: none;		}			#nav li		{ margin: 0 0 0.2em 0; }		#nav li a		{			display: block;			color: #ccc;			background-color: #336;  /* darkest */			width: 138px;			padding: 0.3em 0.7em;			text-decoration: none;			font-weight: bold;		}			#nav li a:hover		{			background-color: #93c;			color: #fcf;		}			#nav li a:active		{			background-color: #c6c;			color: #fff;		}		#nav_extras li a		{ color: #9cf; }		#footer		{			display: inline;			color: #888;			letter-spacing: 0.1em;			font-size: 0.9em;		}	#footer a		{ color: #888; }			#footer a:hover		{ color: #f90; }			#footer a:active		{ color: #f00; background-color: #fcc; }				.spaced li		{ margin-top: 0.75em; }		.spaced ol		{ padding-bottom: 1em; }	.read_more		{ margin-left: 2em; background-color: #fdf7eb; padding: 1em; }			p.separator		{ border-top: 1em solid #eef; }	.pullquote	{		margin: 1em 16px 1em 16px;		color: #063; padding: 0.5em 1em; background-color: #dfa;		font-size: 1.2em; font-style: italic; line-height: 120%;	}		p.em.pullquote  /* this is not working to specify the phrase <em> in a <p> in a class pullquote */	{		font-style: normal;	}		.panel_1	{		margin: 1em 16px 1em 16px; padding: 0.5em 1em; background-color: #edf;	}		.panel_2	{		margin: 1em 16px 1em 16px; padding: 0.5em 1em; background-color: #def;	}		.panel_3	{		margin: 1em 16px 1em 16px; padding: 0.5em 1em; background-color: #fed;	}		
