/*
Sections that are hidden when printing the page. We only want the content printed.
*/



* {
	margin: 0;
	padding: 0;
}

body {
color: #000 !important; /* we want everything in black */
background-color:#fff !important; /* on white background */
font-family:arial; /* arial is nice to read ;) */
border:0px !important; /* no borders thanks */
font-size: 0.5em;
line-heigh: 1em;
}


/* This affects every tag */
* {
border:0 !important; /* again no borders on printouts */
}

/* 
no need for accessibility on printout. 
Mark all your elements in content you 
dont want to get printed with class="noprint"
*/
.accessibility,
.noprint,
.line
 {
display:none !important; 
	line-height: 0;
	height: 0;
}

table {
	margin: 0;
	padding: 0;
}

div#content table.news h3, h3.news {
font-size:0.95em;
font-weight:bold;
line-height:1em;
margin: 0;
padding: 0;
}

a, a:link a:active {
background-color:inherit;
color:#B82531;
text-decoration:underline;
}

div#content table.news td {
margin:0;
padding:0;
}

/* 
remove all width constraints from content area
width:100% !important;*/
div#content,
div#colright,
div#main {
display:block !important;
border:0 !important;
padding:0 !important;
margin: 0;
}

td.date {
	width: 100px;
}

/* hide everything else! */
div#header,
div#header h1 a,
div.breadcrumbs,
div#search,
div#footer,
div#menu_vert,
div#menu_horiz,
div#news,
div.right49,
div.left49,
div#sidebar  {
   display: none !important;
}

img {
float:none; /* this makes images couse a pagebreak if it doesnt fit on the page */
}