/*
  Print-Stylesheet: [Kundenname]
  Author - [Entwicklername] / visual4 GmbH
  Site - www.visual4.de
*/

/*
  // for economic customers:
  
  @media only print
  {
	body * { display: none !important; }
	body:after { content: "Don't waste paper!"; }
  }
  
*/

@media print {

	/* Set background, text-color and remove effects */
		* { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; }

	/* prevent weird bleeding images */
		img { max-width: 100% !important; }
	
	/* Set default width, margin and float */
		body, #content, #container {
		   width: 100%;
		   margin: 0;
		   float: none;
		}

	/* Remove any elements not needed in print */
		#mainnav, #subnav, #sidebar, .noprint {
		   display: none; 
		}

	/* Set body font face and size. */
		body {
		   font: 1em Georgia, "Times New Roman", Times, serif;
		}

	/* Set heading font face and sizes. */
		h1,h2,h3,h4,h5,h6 {
		   font-family: Helvetica, Arial, sans-serif;
		}
		h1 { font-size: 120%; }
		h2 { font-size: 110%; }
		h3 { font-size: 110%; }
		h4 { font-size: 100%; font-variant: small-caps; }
		h5 { font-size: 100%; }
		h6 { font-size: 90%; font-style: italic; }

	/* Make hyperlinks more usable. */
		a, a:visited { text-decoration: underline; }
		  a[href]:after { content: " (" attr(href) ")"; font-size: 80%; font-weight: normal; }
		  abbr[title]:after { content: " (" attr(title) ")"; }
		  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after, h1 a:after, h2 a:after, h3 a:after,  { content: ""; }  /* Don't show links
		  
	  
	/* Make final touches to keep it looking classy */
		/* ... */
	
}