/* greenest_print.css 
     PRINT Stylesheet for Greenest Before Dawn website   
     Bart Anderson  /    7:54 PM 1/10/2005    */

/* ---------------------------------------------------------------------------------
There's a different in the defaults for printed page margins between the IE6 and Firefox1.0 browsets.  FF has .5inch margins, IE6 seems to have minimal margins.  The margins here are a compromise, so that output will be acceptable using either.

Font-family is changed to serif for readability on the page (whereas sans-serif is more readable on a computer screen).

Had to change the positions of banner and content from absolute to static so that FF would print the content out successfully.  Otherwise it just prints the first page.  (Problem with flow.)  Changed float to none for the same reason.

Prevented the navigation sidebar from printing.

Measurements are in inches and points, since this is paper, not screen.

Set font to 12 pt so it is easily readable for most people.  10pt was stretching it.    

------------------------------------------------------------------------------------ */
  body {
                background: white;
	margin-left: 0;
	}

   #banner {
	position: static;
	float: none;
 	margin-left: -.5in ;
	color: black;
	}

  #sidebar {
                display: none ;
	}

   #content {
	position: static;
	float: none;
	color: black;
	background: transparent none;
	font-size: 12pt;
	font-family:  serif ;

	width: 6.5in; 
	                                /* ie5win fudge begins */
	voice-family: "\"}\"";
	voice-family:inherit;
	width: 6.5in; 
	}
html>body #content {
	width: 6.5in; 
			 /* ie5win fudge ends */
	} 

pre { font-size: 10pt ;}

 /* to print the the URLs of links, uncomment this section
#content a:link:after,  #content a:visited:after {
	content: " (" attr(href) ") ";
	font-size: 90%;
		}
*/



                        