/*
 *	CSS for print media
 *
 *	Put styles in here which should be only used when printing.
 *
 *	Currently, this is only used to hide some sections, but it could be used
 *	to overwrite previously defined styles to make them more suitable for printing.
 *	As such, it should always be the last file imported in the CSS include chain.
 *	
 */


/*
 *	Totally removed from the page when printing
 */
.printerNone {
	display: none;
}

/*
 *	Included in the box model but not displayed
 */
.printerHidden {
	visibility: hidden;
}

/*
 *	Hide borders of input
 */
input {
	border-style: none;
}

/*
 *	Clean links into a printable look
 */
a {
	font-weight: bold;
	color: black;
	text-decoration: none;
}

/*
 *	Display table headers on each new page.
 */

thead { 
	display: table-header-group; 
}
