/*
print_art.css
by Orjan Hansson, ohwada.se

Cascading style sheet for printing.
Appropriate for modifying styles in art.css 

Based on an article by Eric Meyer in ALA:
http://www.alistapart.com/articles/goingtoprint

Version 1.0, 2007-11-19
Version 1.1, 2007-12-03
Version 1.2, 2007-12-30
Version 1.3, 2008-10-28
	Made sideText visible and framedImg hidden. Added hidden class noPrint.
	Corrected colorWeak.
*/

body {
	text-align: left;
}
#container {
	width: auto;
	float: none !important;
	margin: 0; 
	border: none;
}
#header, /*#sideText,*/ #footer, #leftColumn {
	display: none;
}
#mainText, #sideText {
	width: auto;
	height: auto;
	float: none !important;
	overflow: visible;
	margin: 0; 
	background: transparent none;
}
#rightColumn {
	width: auto;
	height: auto;
	float: none !important;
	margin: 0; 
	text-align: left;
	background: transparent none;
}
.framedImg {
	display: none;
}
.noPrint {
	display: none;
}

/* Text formatting */
body {
	background: white;
	color: black;
	font-family: "Times New Roman", Times, serif;
	font-size: 12pt;
}
#sideText h1, #sideText h2 {
	text-align: left;
}

/* Links */
a {
	background: transparent;
	font-weight: bold;
	text-decoration: underline; 
}

/* Color scheme */
body {
	background: #fff;
	color: #000;
}
h1, h2, h3, h4, th, a {
	color: #000; 
}
.colorWeak {
/*	color: #fff; */
	display: none;
}
#sideText h1, #sideText h2 {
	background: #fff;
	color: #000;
}

