/* Stylesheet for printed pages using IE 5 or newer                             */
/* Insert as last style:                                                        */
/* <link rel="stylesheet" type="text/css" href="/css/print.css">                */


/********************************************************************************/
/* Declare classes for use in authoring tools (e.g. Dreamweaver or Contribute). */
/* Set class of objects to one of the following to suppress when printing.      */
/********************************************************************************/

/* Suppress region and allow text to fill in (e.g. navigation blocks)   */
.HideFromPrint { }

/* Suppress region but retain the space                                 */
/* (e.g. class handout with answers suppressed but keep space to write) */
.HideFromPrintRetainSpace { }
	

@media print {

	/* Set background to white and text to black.                        */
	/* Mark as important so it doesn't get trumped by other stylesheets. */
	body, p, li, h1, h2, h3, h4, h5, h6
	{
		background: #FFFFFF !important;
		color: #000000 !important;
	}
	
	/* Set a reasonable print font size */
	body, p, li
	{
		font-size: 11pt;
	}
	
	/* Ensure links are bold and underlined */
	a:link, a:visited
	{
		color: #000000 !important;
		font-weight: bold;
		text-decoration: underline;
	}
	
	/* Remove navigation header, footer and border */
	table.navigation, .footer
	{
		display: none !important;
	}
	
	table.BorderPage
	{
		margin-left: 0px !important;
		margin-right: 0px !important;
		margin-bottom: 0px !important;
		border: none !important;
	}
	
	.HideFromPrint
	{
		display: none !important;
	}
	
	.HideFromPrintRetainSpace
	{
		visibility: hidden !important;
	}
}
