/* 
Pat LaMarche for Governor - Dec 2005 
Styles for printing
Author: Emi Ireland, Nash Interactive */

/* Print only
----------------------------------------------- */
/* Always keep these last on sheet and last in cascade */
/* @media print styles do not affect screen styles, but screen styles that come later in cascade will override print styles */
/* BUT ie4 incorrectly ignores the first ruleset in @media, and applies all the rest ONSCREEN. Therefore, only one ruleset per @media declaration block, and a dummy rule after each one */

@media print { 
	html #printlogo { 
		display:block; 
		}	
		}
		.dummy {color:#003;}	

/* as if element were commented out */		
@media print { 	
	.noprint, .banner-tbl, .navcol, .all, .morenews, .crumbs-bot, .menubox, .aux-lighthouse, .a-subscr   { 
		display:none; 
		}
		}
	.dummy {color:#003;}	 
	
/* replaces the element with blank space */	
@media print {
	.printhide { 
		visibility: hidden; 
		} 
		}
		.dummy {color:#003;}	 
	
@media print {
	#main, #main20 { 
		margin-right: 0px;
		margin-left: 0px;
		}
		}
		.dummy {color:#003;}	 
		
@media print {
	#sidebar { 
		margin-right: 96px;
		}
		}
		.dummy {color:#003;}	

@media print {
	#sidebarnone { 
		width:102px;
		margin-right: 96px;
		}
		}
		.dummy {color:#003;}	

@media print {
	.topicbar { 
		padding-left: 0px;
		}
		}
		.dummy {color:#003;}	

@media print {
	.footbox { 
		/* margin-top:12px; */
		margin-bottom:6px;
		margin-right:100px; 
		}
		}
		.dummy {color:#003;}	 

@media print {
	.footer { 
		color: #888;
		letter-spacing:normal; 
		/* text-align:left; */
		margin-bottom:3px;
		}
		}
		.dummy {color:#003;}	

@media print {
	.disclaimer {
		width:665px;
		color: #888;
		letter-spacing:normal; 
		/* text-align:left; */
		margin-top:12px;
		margin-right:0px;
		margin-bottom:0px;
		margin-left:0px;
		}
		}
		.dummy {color:#003;}	

@media print {	
	.dottedbox2 {
		border: dotted 2px #777;  
			}
			}
			.dummy {color:#003;}	
			
			
			
/* TEST STUFF 8-18-2006 as if element were commented out */		
@media print { 	
	body#p-event .auxcol { 
		display:none; 
		}
		}
	.dummy {color:#003;}
		
@media print {
	body#p-event #main { 
		margin-right: 70px;
		margin-left: 30px; /* 0px in iehacks.css */
		}
		}
		.dummy {color:#003;}
		
@media print {
	body#p-event td.event-img { 
		border: none;
		}
		}
		.dummy {color:#003;}			

