/* CSS Print Document - print.css*/

body {color: #000000; background: #ffffff; font-family: "Times New Roman", Times, serif; font-size: 10pt;}

a {text-decoration: underline; color: #0000ff;}

h1 {font-size: 16pt; }

div.tablerowheader {
	font-size: 14pt; 
	text-align: center;
}

div.tablerowsubheader {font-size: 12pt; }

div#navalpha, div#footer {display: none;} 

div.content { width:100%;
	color: #000000;
	text-align: justify;
	font-weight: normal;
	font-size: 10pt;
	font-family: "Times New Roman", Times, serif;}

div.exercise {color: #000000;
	text-align: justify;
	font-weight: normal;
	font-size: 10pt;
	font-family: "Times New Roman", Times, serif;}

div.exercise2 {
	color: #000000;
	text-align: justify;
	font-weight: bold;
	font-size: 10pt;
	font-family: "Times New Roman", Times, serif;}
	
/*.remove { display: none }

.setwidth { width: 100% }

#wrapper, #content {
	width: auto; 
	margin: 0 5%;
	padding: 0; 
	border: 0;
	float: none !important;
	color: black; 
	background: transparent;
	}
	
*/
div.page {
  size: A4 landscape;
	height: 80%;
	margin: 1% 1%;
	counter-increment: page;
  @bottom-center { content: "Page " counter(page) " of " counter(pages); 
}


div#footer a[href]:after {
   content: " (" attr(href) ") ";
   font-size: 90%;}



/*Note that now CSS properties have a reverse sense. Height means width and top/bottom margins become left/right margins. */

/* Save print.css in the css directory, include the <link rel="stylesheet" type="text/css" href="css/print.css" media="print" /> */
/* in the head of your document, and your page will print perfectly while displaying however you would like.*/