@CHARSET "UTF-8";

/* main styles */
html {
  scroll-behavior: smooth;
}
body {
	margin:0;
	padding:0;
	font-family: 'PT Sans Caption', sans-serif;
	color:#000000;
	background-color:#ffffff;
	font-size:14px;
	-webkit-print-color-adjust: exact;
}
h1, h2, h3, h4, h5, h6 {
	margin:2px;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
	padding:4px;
}
button {
	position:absolute;
	top:0;
	right:0;
	margin-top:20px;
	z-index:1;
}
button:focus { 
	outline: 0; 
}
@media print {
    .make-grid(print-A4);
}

.make-print-A4-column(@columns) {
    @media print {
        float: left;
        width: percentage((@columns / @grid-columns));
    }
}
@media print {
	body {
		color:#000000 !important;
		background-color:#ffffff !important;
		font-size:120%;
		-webkit-print-color-adjust: exact !important;
	}
	h1, h2, h3, h4, h5, h6 {
		margin:2px;
		font-size:90%;
	}
	.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
	padding:4px;
}
	button {
		display:none !important;
	}
}