﻿
* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

* html #tudo {
    height: 100%;
}

body {
    background-color: black;
}

#tudo {
    width: 100%;
    margin: 0 auto;
    text-align: left;
    position: relative;
    min-height: 100%;
    background-color: black;
}

#cabecalho {
    background-color: black;
    min-height: 80px;
}

.imagelogo {
    width: 250px;
    height: 120px;
}

#conteudo {
    background-color: black;
    font-size: large;
    padding-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
}

#rodape {
    /*position: absolute;*/
    bottom: 0;
    width: 100%;
    padding-left: 35px;
    padding-right: 35px;
    color: white;
    min-height: 40px;
    background-color: black;
}

    #rodape .Copyright {
        text-align: center;
        font-size: 10pt;
    }

    #rodape .Links {
        text-decoration: none;
        color: #FFFFFF;
    }

    #rodape .LogoIS {
        display: flex;
        justify-content: center;
        align-items: center;
    }



a:link {
    text-decoration: none;
    color: #f00;
}

a:visited {
    text-decoration: none;
    color: #f00;
}

a:hover {
    text-decoration: underline;
    color: #f00
}

a:active {
    text-decoration: none
}