/* CSS Document 
- - - CSS design by J Hogue at Highchair designhaus for PRINT media 

XX  XX  XX  XXXXX  XX  XX  XXXXX  XX  XX  XXXXX  XX  XXXXX     XXXX   XXXXX   XXXX  XX  XXXXX  XX  X  XX  XX  XXXXX  XX   X   XXXX
XX  XX  XX  XX     XX  XX  XX     XX  XX  XX  X  XX  XX  X     XX  X  XX     XX     XX  XX     XX  X  XX  XX  XX  X  XX   X  XX   
XXXXXX  XX  XX XX  XXXXXX  XX     XXXXXX  XX  X  XX  XX  X     XX  X  XXXXX   XXX   XX  XX XX  X X X  XXXXXX  XX  X  XX   X   XXX 
XX  XX  XX  XX  X  XX  XX  XX     XX  XX  XXXXX  XX  XXXX      XX  X  XX        XX  XX  XX  X  X  XX  XX  XX  XXXXX  XX   X     XX
XX  XX  XX  XXXXX  XX  XX  XXXXX  XX  XX  XX  X  XX  XX  X     XXXX   XXXXX  XXXX   XX  XXXXX  X  XX  XX  XX  XX  X   XXX    XXXX 

First, import all the styles from the main stylesheets */ 

@import url(screen.css);
@import url(required.css);

/* Then, restyle a few key things to make them print better 

Redefine rules that specify background repeating patterns...
Turn text to black...
Get rid of useless DIVs by using display: none...
Use inches instead of pixels or ems on any wrappers to set the width of the page...
Use point size instead of pixels if possible

*/

body { 
	font-size: 7pt;
	line-height: 7pt;
	background-color: #fff; 
	background-image: none; 
}

#everyoneneedsawrapper {
	width: 100%; 
	min-width: 7in; 
}
/*
#mainnav {
	float: left; 
	width: 15%; 
	min-width: 1.5in; 
}
*/
#centercolumn {
	width: 100%; 
	margin: 0; 
}
#rightcolumn {
	float: right; 
	width: 2.25in; 
	min-width: 2.25in; 
}

#centertext {
	margin: 0 2.375in 0 0;  
}

#global, #headimage, #mainnav, a#orderDVD { display: none; }

h1#forprintonly { 
	display: inherit; 
	visibility: visible;  
	font: normal 1.9em/1.4em NewYork, "New York", Georgia, Times, "Times New Roman", TimesNewRoman, serif; 
	padding: 0 0 1em 0; 
}

img#keepuptop, img#keepupbot { width: 2.25in; }

#centertext a, #centertext p, #footer { color: black; }

/* We also try to use the psuedo class :after to insert the actual link so people can see where a link goes */
/* this uses the P tag to ensure that it does not get added to calendar links in a table */
#centertext p a:link:after, 
#centertext p a:visited:after, 
#keepup a:link:after, 
#keepup a:visited:after, {
   content: " (" attr(href) ") ";
   font-size: 75%;
}

