<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.w15 { vertical-align:top; width:15px; }
.w15:after { content:"-"; }

/* c.f. https://www.w3schools.com/cssref/css3_pr_mediaquery.asp */
/* Si l'Ã©cran est au minimum de ... px,  Ordinateurs */
/*
@media only screen and (min-width:990px) {
  }
*/
/* Si l'Ã©cran est au maximum de ... px Smartphones paysage */
/*
@media only screen and (max-width:990px) and (orientation:landscape) {
  table { font-size:12pt; }
  }
*/
/* Si l'Ã©cran est au maximum de ... px Smartphones portrait */
/*
@media only screen and (max-width:990px) and (orientation:portrait) {
  table { font-size:12pt; }
  }
*/
</pre></body></html>