.RedText {
    color: #bd2130;
    padding: 50px;
}
.title {
    font-size: larger;
    color: red;
    padding: 30px;
}

table {
    border-collapse: collapse;
    width: 100%;
    border-style: solid;

}

th, td {
    text-align: left;
    padding: 8px;
    border-style: dashed;
    border: 1px;
}

tr:nth-child(even){background-color: #f2f2f2}

th {
    background-color: #4CAF50;
    color: white;
    text-align: center;
}
tr:hover {
    background-color: dodgerblue;
    color: white;
}

.bottom {
    padding: 30px;
}

.CenteredTD {
    text-align: center;
}
@page {
    size:A4 landscape;
    margin: 1.5cm;
    padding-top: 200px;

}
img{
    display: none;
}

@media print{
    #sis{
        top: 0px;
        left: 0px;
    }
    .title{
        font-size: large;
        font-weight: bolder;
    }
    #iwcf{
        top: 0px;
        right: 0px;

    }
    img{
        padding: 0px;
        display: block;
        width:150px; /* you can use % */
        height: auto;
        position: absolute;
        page-break-inside: avoid;
    }
    .noprint{
        display:none;
    }

    table td, table th {
        border: blue;
        border-style: dashed;
    }
    th {
        color: red;
        text-align: center;
    }

    body {
        font-family: serif;
        font-size: small;
    }

}

html, body {
    height:100%;
}
html {
    display:table;
    width:100%;
}
body {
    display:table-cell;
    text-align:center;
    vertical-align:middle;
    padding: 20px;
    font-size: 20px;
}
input+button{
    border-radius: 5px;
    font-size: 20px;
}