﻿/* PROJETO WEB - ESTRUTURA DA MASTER PAGE */


/* CABEÇALHO  */
.cabecalho {
    height: 81px;
    width: 100%;
    border-bottom:1px solid #c0c0c0;
}

.logomarca {
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    width: 80px;
    padding-top: 8px;
}

.barra-titulo {
    position: absolute;
    top: 0;
    left: 81px;
    bottom: 40px;
    height: 40px;
    padding:8px;
}

.barra-menu {
    position: absolute;
    top:40px;
    left: 81px;
    right: 0;
    height: 40px;
    text-align: right;
}

    .barra-menu a {
        color: #333333;
        font-size: 14px;
        margin-left: 4px;
        margin-right: 4px;
        padding-bottom: 2px;
        text-decoration: none;
        border-bottom: 3px solid transparent;
    }

        .barra-menu a:hover {
            color: black;
            border-bottom: 3px solid black;
        }

.fundo {
    background-image: url('../images/teste2.jpg');
    width: 5000px;
    height: 5000px;
}


.conteudo {
    min-height: 800px;
}

.rodape {
    height: 400px;
    background-color: #dbdbdb;
}
