@charset "UTF-8";

* { font-family: Arial; }

/* texto */
.tx_preto   { color: #000000; }
.tx_branco  { color: #FFFFFF; }
.tx_cinza   { color: #CCCCCC; }

/* fundo */
.bg_preto   { background: #000000; }
.bg_branco  { background: #FFFFFF; }
.bg_cinza   { background: #CCCCCC; }
.bg_azul    { background: #0080FF; }
.bg_verde   { background: #9CE584; }
.bg_marrom  { background: #3C1900; }

/* fundo transparente */
.bg_trcinza { background: rgba(255,255,255,.6); }

/* sombra */
.sh { text-shadow: 3px 3px 3px #333333; }

/* alinhamento */
.left   { text-align: left; }
.center { text-align: center; }
.right  { text-align: right; }
.just   { text-align: justify; }

/* alinhamento */
.table { display: table; }

/* imagem */
.imgleft  { margin-right: 10px; float: left; }

.tipo1 {
    width: 15%;
}
.tipo2 {
    width: 25%;
}
.tipo3 {
    width: 35%;
}
.tipo4 {
    width: 100%;
}

/* caracteristicas */
.bt {
    padding: 10px;
    font-size: 14px;
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    display: table;
    float: right;
}
.bt:hover {
    color: #9CE584;
}
.margin { margin: 10px; }