/*
 * create a printable MDSG page  
 * Invoked automatically when printing, no need to click on anything 
 *
 *DONE
 * added printonly class to main Style Sheet 
 * added new link tag in HEAD for the printing style sheet 
 * page header is screenonly class thanks to JS including it 
 * page footer is screenonly class due to PHP footer include 
 * indented div is much less indented, no padding, no borders 
 * font is serif and 100%  
 * next and prev newsletter pointers are screeonly 
 * add "Formatted for printing" under the newspaper guy 
 * page footer: print current URL and date/time 
 * 
 *TODO 
 * top of page links are screenonly 
 * <td valign="middle" align="right" class="screenonly"><a href="#TopHdr" class="top">TOP</a></td></tr>
 * "all articles on this page" is screenonly
 * headings in diff font 
 * page footer: my name, current local date/time   
 *
 * change link rel=stylesheet to a PHP include  <? include 'gripeheader.mike'; ?>
 * F on t - for font sizes - change cursor for each: small medium large 
 * A document needs a larger font-size on a screen than on paper, and 
 *   serif fonts are easier to read on paper. <======= NEXT 
 */ 

body 
{	background-color: white;   
	font-family: serif;   font-size: 100%;		   
	border-left-width: 0em;  border-right-width: 0em; border-top-width: 0px; border-bottom-width: 0px;
	padding-top: 0px; padding-left: 0px; padding-right: 0px;
	margin-left: 0px;  margin-right: 0px; margin-top : 0px;     
        float: none; 	
} 
P  { font-family: serif; font-size: 100%; }
TD { font-family: serif; font-size: 100%; }
UL { font-family: serif; font-size: 100%; }

.screenonly {display: none; }   
.printonly  {display: block;} 
 	
.ludate {background-color: #FFEED5;   font-size: smaller; } 
.indented { margin-left: 2px;  margin-right: 2px; }  
