

@media print {
	
	head {
        display: none !important;
	}
	
	link {
	display: print !important;
	} 
	meta, script, style {
    display: none !important;
	}
	
    body {
        font-family: Arial, sans-serif;
        font-size: 12pt;
        color: #000;
        background-color: #f4f7f6;
		margin: 0;
        padding: 0;
    }

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

    a {
        color: black;
        text-decoration: none;
    }

    .container {
        width: 100%;
        padding: 0; 
		margin: 0;
    }


    .page-break {
        page-break-before: always;
    }

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

    table {
        width: 100%;
        border-collapse: collapse;
		margin-bottom: 20px;
    }
    th, td {
        padding: 8px;
        border: 1px solid #ccc;
        text-align: left;
    }
    th {
        background-color: #f4f4f4;
    }

    p {
        margin-bottom: 12px;
    }
    ul, ol {
        margin-left: 20px;
        margin-bottom: 10px;
    }

    h1 {
        font-size: 18pt;
		margin-top: 0;
    }
    h2 {
        font-size: 16pt;
    }

    @page {
        margin: 2cm;
    }
}