/*
opener-layout-page-print.css
Gordon Houtman for AGU, 6 March 2007

Copyright (c) 2007 American Geophysical Union

Description: print modification of page layout for "openers" HTML pages

Sections:

1) don't print
2) page layout
3) header


Updates:
2007-03-06, GH, created from 2006-10-25 version of opener-print.css
2008-07-08, GH
*/


/* 1) don't print */

.noprint {
display: none;
/* Any HTML item with class="noprint" will not be printed. */
}


/* 2) page layout */

#header {
border-bottom: 0;
/* Turn off the screen border, which extends from screen edge to screen edge. */
}

#header-in {
margin: 0.5em;
border-bottom: 2px solid #000099;
/* Turn on the print border, which is the same width as the content. 
(can't print to page edge) */
}

#content {
margin: 0 ;
/* Adds an additional 1/2 inch to browser default printing left/right margins. 
On most browsers, we end up with about 1 inch printed margins, left and right. 
*/
}

#footer {
border-top: 0;
/* like header border-bottom */
}

#footer-in {
	border-top: 2px solid #000099;
	padding-top: 0.5em;
	margin: 0.5em;/* Because print border is on footer-in rather than footer, 
need extra 1/2 em here (like header-in). */
}


/*	3) header */

#header-brand {
float: none;
/* Float screws up printing. */
}


