/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 13/04/2023, 16:16:06
    Author     : BRUNO
*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}
@page{
    size: A4;
}
body{
    width: 100vw;
    height: 100vh;
}
 .folha{
        width: 210mm;
        height: 297mm;
        padding: 5mm 18mm 20mm;
        margin: auto;
        box-sizing: border-box;
    }
    .folha .margin{
        border: 1px #dcdcdc solid;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
    }
    .folha .margin ul{
       
        width: 100%;
        height: 100%;
        box-sizing: border-box;
    }
    .folha .margin ul .cabeca{
        border-bottom: 1px #dcdcdc solid;
        width: 100%;
        height: 20mm;
        box-sizing: border-box;
    }
    
@media print{
    .no-print{
        display: none;
    }
    .print{
        display: block;
    }
   
}