/*
* css for printer  
*/
@MEDIA print {

/* page */
@page {
      size: A4 landscape;
     margin-left: 0.5cm;
    margin-right: 0.5cm;
    margin-top: 0.5cm;
    margin-bottom: 0.5cm;
    padding-top: 0cm;
    }

/* boutons filtre */    
.form-group > .btn {display:none}
.btn-group {display:none}

/* pagineur */
select#page-range  {display:none}
.col-sm-4{width:50%}

/* taille caracteres */
body{font-size:11px} 

/* tableau et pages */
tr {page-break-inside: avoid;}
td { padding: 11px }
       
}/* fin @MEDIA print */

