/* print.css : styles pour l'impression */
@media print {
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }

  a::after {
    content: " (" attr(href) ")";
  }

  nav, footer, .sidebar, .no-print {
    display: none !important;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  * {
    background: none !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
}