
/* 
Formatação para os campos select e textarea. Está utilizando sobrecarga, logo não precisa adicionar estilo.
<select name=options><option value="1">Opção</option></select>
*/
select, textarea
    {
    font-family: verdana;
    font-size: 11px;
    color: #444444;
    text-decoration: none;
    background-color: #ffffff;
    text-transform: none;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #444444;
    border-right-color: #444444;
    border-bottom-color: #444444;
    border-left-color: #444444;
    }

/*
Formatação para os inputs text.
<input type="text" class="InputText">
*/
.InputText
    {
    font-family: verdana;
    font-size: 11px;
    color: #444444;
    text-decoration: none;
    background-color: #ffffff;
    text-transform: none;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #444444;
    border-right-color: #444444;
    border-bottom-color: #444444;
    border-left-color: #444444;
    }

/* 
Formatação para os inputs button.
<input type="button" class="InputButton">
*/
.InputButton
    {
    font-family: arial;
    font-size: 11px;
    color: #ffffff;
    text-decoration: none;
    background-color: #bc1e32;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #72121e;
    border-right-color: #72121e;
    border-bottom-color: #72121e;
    border-left-color: #72121e;
    height: 16px;
    }

/*
Formatação para os inputs submit.
<input type="submit" class="InputSubmit">
*/
.InputSubmit
    {
    font-family: arial;
    font-size: 11px;
    color: #ffffff;
    text-decoration: none;
    background-color: #bc1e32;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #72121e;
    border-right-color: #72121e;
    border-bottom-color: #72121e;
    border-left-color: #72121e;
    height: 16px;     
    }
