/*=====================================================================
 *
 * Filename: print.css
 * Website: www.domain.com
 * Author: Markus Baeck (Visualacting GmbH)
 * Date Created: 04/09/2008
 * Last Update: 04/09/2008
 * Media: Screen, Projection
 *
 * Description
 * -----------
 * print css
 *
 *=====================================================================*/

@media print {
  html,
  body {
  	/*width: 100% !important;*/
    color: black;
    /*font: normal 9pt/150% "times new roman",times,serif;*/
    font: normal 10pt/150% Arial, serif;
    background-color: white !important;
    background-image: none !important;
    word-spacing: 1.1pt;
		letter-spacing: 0.2pt;
		text-align: justify
  }

  a:link, a:visited {
  	background: transparent;
  	font-weight: 700;
  	text-decoration: underline;
  	color: black
	}
	a:link[href^="http://"]:after,
	a[href^="http://"]:visited:after {
		content: " (" attr(href) ") ";
		font-size: 90%
	}
	a[href^="http://"] {
		color: black
	}

  hr {
    height: 2px;
    background: black;
    margin: 1em 0 0 0
  }

  h1, h2, h3, h4, h5, h6 {
  	font-family: Helvetica, Arial, sans-serif;
    background-color: transparent;
    color: black;
    font-weight: bold;
    page-break-after: avoid
  }
	h1 {font-size:19pt}
	h2 {font-size:17pt}
	h3 {font-size:15pt}
	h4, h5, h6 {font-size:12pt}
	h1, h2, h3 {
    page-break-after: avoid
  }

	blockquote {margin:1.3em;padding:1em;font-size:10pt}

	p {
  	font-size:10pt
  }
  form {
    display: none;
  }
  code {
    font-family: "Courier New", Courier, mono;
  }
  abbr[title]:after,
  acronym[title]:after {
    content:'(' attr(title) ')';
  }

	table {margin:1px;text-align:left;}
	th {border-bottom:1px solid black;font-weight:bold}
	td {border-bottom:1px solid black}
	th,td {padding:4px 10px 4px 0}
	tfoot {font-style:italic}
	caption {background:white;margin-bottom:2em;text-align:left}
	thead {display:table-header-group}
	tr {page-break-inside:avoid}

	#footer, #content-left, #header, .teaserBox {display:none;}
	#printLogo {display:block;margin-bottom:10pt}

}