/*
 * create a printable page at nypc.org 
 * 
 * Invoked automatically when printing, no need to click on anything 
 *
 *DONE
 * 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 
 * top of page links are screenonly 
 * <td valign="middle" align="right" class="screenonly"><a href="#TopHdr" class="top">TOP</a></td></tr>
 * add Formatted for printing under the newspaper guy 
 * "all articles on this page" is screenonly
 *
 */ 

body 
{	background-color: white;   
	font-family: Georgia, 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%; }
H1 { font-family:'Arial Rounded MT Bold','sans serif'; font-size: 140%; font-weight:bold; }  
H2 { font-family:'Arial Rounded MT Bold','sans serif'; font-size: 130%; font-weight:normal;}  
H3 { font-family:'Arial Rounded MT Bold','sans serif'; font-size: 120%; font-weight:normal;}  
H4 { font-family:'Arial Rounded MT Bold','sans serif'; font-size: 110%; font-weight:normal;}  

.indented { margin-left: 2px;  margin-right: 0px; }  

.h3orangeunderline 
    {font-family:'Arial Rounded MT Bold', serif; font-size:140%; color:#000000; font-weight: normal;
    border-bottom: 2px solid #000000; } 

.point8      {font-family:Verdana, geneva, Helvetica, sans-serif; font-size: 75%;}    
.whitestripe {font-family:Verdana, geneva, Helvetica, sans-serif; font-size: 75%;} 

/* If these were not specified here, they defaulted to looking like all other text */ 
.scheduletitle {text-align:center; border-top:    1px solid #808080; font-size:110%;  }  
.scheduledata  {text-align:center; border-bottom: 1px solid #808080; line-height:120%;}  

.screenonly {display: none; }   
.printonly  {display: block;} 
 	
/* always underline for visual clue
 *  links are dark color - close to black - while still dark red for color printers
 */  	
 a:link, a:visited {color:#520; background: transparent; 
     font-weight: bold; text-decoration: underline;}   
     
/* show where links go - added June 2008  */  
/* Works in Firefox 2 and 3, not in IE 6 or IE 7  */ 
   a:link:after, a:visited:after { content:" (LINK: " attr(href) ") "; } 
     