
/* Copyright 2005 Axel TJ Rohde. All Rights Reserved. */

/* v 1.0 01/12/2011 $ */

/* ******************  Style-Sheet for Printing  ************** */

@media print {

/* Hide navigation menu */
div.navmenu {
	display: none;
}

/* Let body occupy the whole width! */
body {
 position: static;		/* Make containing block for the menus */
 padding: 2%;	/* Overide the padding we had to give room for the navmenu at the left.*/
}


div.box_intro {
 background-color: transparent;
 border: thick double black;
}

div.box_chapter {
 background-color: transparent;
 border: thin solid black;
}

table th {
  page-break-before: auto;
  page-break-after: avoid;
}

table td {
  page-break-before: avoid;
  page-break-after: auto;
}


/* Force a page break before chapters?
div.box_chapter {
  page-break-before: always;
}
*/

body:after {
	font-size: 6pt;
	content:" [Copyright 2005 Axel TJ Rohde (MetroSperm), All rights reserved.] ";	
}

}

