/*
   Print Styles
   Author: Alice DeLaney Svehaug
   Date:  12/05/2014 

   Filename:         print.css
   Supporting Files: 

*/

/* Styles to be used for print displays */

/*Setting the page size */
@page {
	size: 8.5in 11in portrait;
	margin: 0.5in;
   }

/* hide page elements that will not be printed */
header, footer {display: none;}

/* setting the page breaks in the document */
	/* article { display: block;
	page-break-after: always;
	page-break-inside: avoid;  */
	}
h1 { font-size: 28pt;
	text-align: center;
	width: 100%;
	}

h2 { font-size: 16pt;
	text-align: center;
	width: 100%;
	}

/* The next lines hide the links to the Table of Contents in the documents */
.noprint {
    display: none;
}

    