/************************************************/
/* difprint.css                                 */
/* Use for rendering www.dif-bayern.de pages    */
/* on print media. Link in behind difstyles.css */
/************************************************/

/* serif fonts are better readable on print media */
body { 
  font-family:Georgia, "Times New Roman", Times, serif; 
  background-color: #ffffff;
  color: #000000;
}

h1, h2, h3, h4, h5, h6, p, td, th, ul, ol, li, dl, dt, dd { 
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* Don't use color for links, might be hard o read in black & white print */
a:link, a:visited, a:hover {
  color: #000000;
  text-decoration: underline;
}
/* Print URLs after links */
#page_links a:after { content: " <" attr(href) "> ";}
/* 
 * Don't print navigation bar; therefore the content div does not need
 * such a wide left margin
 */
#navigation {
  display: none;
}
#content { 
  margin-left: 0em; 
}

/* Don't print the banner graphics but the heading 1 & 2 instead */
#banner { display: none; }
#header h1, #header h2 { display: block; }
#eyecatcherBarLeft, #eyecatcherBarRight {  display: none; }

