/*
 * Author: Joachim Wittmann
 * Copyright (C) Joachim Wittmann, 2009
 */

/* print */

@media print
{

* {
	background-color: white !important;
	background-image: none !important;
	/* color: black; */
}
body, #outerContainer, #innerContainer, #contentBody {
	border: 0;
	margin: 0;
	padding: 0;
}
#outerContainer, #innerContainer {
	max-width: none;
	min-width: 0;
	width: 100% !important;
}
body, input, textarea, select {
	font-family: "Times New Roman", Times, serif;
	font-size: 12pt;
}

/* avoid page breaks right after headings */
h1, h2, h3, h4, h5, h6 {
	page-break-after: avoid;
}

/* format acronyms and abbreviations for print */
abbr[title]:after, acronym[title]:after {
	content: " (" attr(title) ")";
}

/* disable background graphics of links 
#contentBody a[href^="http:"], #contentBody a[href^="https:"] {
	background-image: none;
	padding-left: 0;
}
*/

/* enable URL output in print layout */
a[href]:after {
	content: " (" attr(href) ")";
}

/* 2columns layout */
#column1 {
	display: none;
}
#content1 {
	display: none;
}
#column2, #content2 {
	border: 0;
	margin: 0 !important;
	padding: 0;
	width: 100%;
}
#header, #nav, #footer {
	display: none;
}

}
