/*
print.css

2007-02-04 21:24:33 (Jake): created
2007-10-09 23:49:38 (Jake): added td.right and td.center to body.back as well
*/

body.print {
	background-color: white;
	color: rgb(0, 0, 0);
	font-family: benquiat, arial, sans-serif;
	font-size: 1em;
}

/*
Fotnot till tabeller
*/
body.print table tfoot tr td {
  font-style: italic;
  text-align: center;
  font-size: 0.8em;
}

/*
Anger att sidbrytning skall ske efter varje tabell.
*/
body.print table {
  page-break-after: always;
}

/*
Rubriker
*/
body.print h1 {

}

body.print h2 {

}

/*
Tabellrubriker
*/
body.print table th {
  font-weight: bold;
  text-align: left;
}

/*
Tabellinnehåll
*/
body.print table td {

}

body.print table td.center, body.back table td.center {
  text-align: center;
}

body.print table td.right, body.back table td.right {
  text-align: right;
}

