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

Copyright (c) 2007 American Geophysical Union

Description: print modification of typographic style for "openers" HTML pages

Sections:

1) don't print
2) typography and links
3) variations on spacing


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


/* 1) don't print */

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


/* 2) typography and links */

body {
/* can specify printing font here */
}

h1, h2, h3, h4, h5, h6 {
/* could specify printing font here */
}

a {
text-decoration: none;
color: black;
background-color: inherit;
/* In print, hyperlinks are not functional. 
Make the text black, and do not underline it. */
}


/* 3) variations on spacing */

.column {
float: none;
/* Without this, multiple columns print on top of each other. */
}

.column-indent {
margin-left: 0;
/* Since "columns" from screen print sequentially, un-columned, 
the indent would look silly. */
}


