/* ==========================================================================
 *
 *  General Styles for Print Media
 *
 *  Author:  Philipp Mueller <philipp.mueller@xeiro.ch>
 *  Company: xeiro ag, www.xeiro.ch
 *  Version: 02.09.2015
 *
 * ========================================================================== */

/* Page size / margin */
@page {
  size: auto;
  margin: 15mm 15mm 15mm 20mm;  
} 

/* Print-Styles */
@media print {

/* dont show screen-elements on print */
.screen, #xrauthor {
  display: none;
}

body {
  background: #fff!important;
  color: #000!important;
  font-size: 11pt;
  width: 100% !important;
  padding: 0;
  margin: 0;
  overflow: visible;
}

/* links */
a.external-link:after,
a.external-link-new-window:after {
  content: ' (' attr(href) ')';
}

/* acronyms, etc. */
abbr[title]:after, acronym[title]:after {
  content: ' (' attr(title) ')';
}

/* quotes */
*[cite]:after {
  content: close-quote ' (' attr(cite) ')';
}

body {
  quotes: "\201E" "\201C" "\201A" "\2018";
}

q:before,
blockquote:before {
  content: open-quote;
}

q:after, blockquote:after {
  content: close-quote;
}


}


