/* RESET BÁSICO PARA O NAVEGADOR */
body, html {
	height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.conteudo {flex: 1}

div.conteudo {
    width: 95%;
    margin: 0 auto;
    
    cursor: default;
    caret-color: transparent;
    outline: none;    
}

.texto_centralizado {
	text-align: center;
}