/*===========================================================================
	Print (Global)
	
	This stylesheet optimizes the page for printing in the following ways:
	* Resets fixed widths to fluid (printed pages are narrower than 800px).
	* Hides parts of the page that need not be printed (i.e. navigtation).
	* Disables image replacement.
===========================================================================*/

/* Imports (must come first in the file)
===========================================================================*/

/* Page
===========================================================================*/

body div#page {
	width: auto;
}

/* trigger hasLayout since we removed the width dimension */
/* 1st for IE 5.x-6, 2nd for IE 7, hidden from IE 5 Mac */ /*\*/
* html body div#page {
	height: 1%;
}

*+html body div#page {
	zoom: 1;
}
/**/ /* end hidden from IE 5 Mac */

/* Defaults
===========================================================================*/

/* Links */

a:link,
a:visited,
a:focus,
a:hover,
a:active {
	color: black;
	
	text-decoration: underline;
}

/* Tables*/

/*
	Printing Tables
	http://css-discuss.incutio.com/?page=PrintingTables
*/

table thead {
	display: table-header-group; /* for IE 5.5+ */
}

table tr {
	page-break-inside: avoid;
}

/* Common Classes
===========================================================================*/

/* Content
===========================================================================*/

/* Primary Navigation
===========================================================================*/

div#page ul#primary-navigation {
	display: none;
}

/* Logo
===========================================================================*/