/*
CSS pour impression d'articles 
/* 
    Created on : 2019-01-07, 10:04:36
    Author     : davana
*/
/* Chrome, et + */
@media print and (-webkit-min-device-pixel-ratio: 0) {
  p {
    /*color: blueviolet!important;*/
  }
}
@media print {
  /* tout navigateurs */
  * {
    transition: none!important;
  }
  body,
  article {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  @page {
    margin: 2cm;
  }
  html {
    font-size: 12pt;
  }
  p {
    widows: 4;
    orphans: 3;
  }
  a[href]:after,
  abbr[title]:after {
    content: "";
  }
  abbr[title] {
    border: none;
  }
  h2,
  h3,
  h4 {
    page-break-after: avoid;
  }
  .citation > footer {
    margin: initial;
  }
  .citation > footer small {
    bottom: -15px;
  }
  .citation.citation-droite {
    text-align: right;
  }
  .citation.citation-droite > footer {
    right: 10%;
  }
  .citation.citation-gauche {
    text-align: left;
  }
  .citation.citation-gauche > footer {
    left: initial;
  }
  .citation img {
    min-width: initial;
    max-width: 27%!important;
  }
  .citation figcaption {
    max-width: 70%;
  }
  .citation figcaption:after,
  .citation figcaption:before,
  .citation fb-twit {
    display: none;
  }
  .image-legende.image-droite {
    float: right;
    margin-left: 15px;
  }
  .image-legende.image-gauche {
    float: left;
    margin-right: 15px;
  }
  /* specifiques pour Firefox*/
  @-moz-document url-prefix() {
    p {
   /*   color: red!important;*/
    }
  }
}
