/*------------------------------------------------------------------ */
table {
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    background:#eaebec;
    margin:1%;
    border:#ccc 1px solid;
    border-radius:3px;
    border-top-left-radius:3px;
    border-top-right-radius:3px;
    box-shadow: 0 1px 2px #d1d1d1;
    width:98%;
}
table th {
    padding:1px 5px 2px 5px;
    border-bottom:1px solid #e0e0e0;
    background: #DA9391;
    color:white;
    padding:0.5%;
}
table th:first-child{
    text-align: left;
}
table tr:first-child th:first-child{
}
table tr:first-child th:last-child{
}
table tr td:first-child{
    text-align: left;
    border-left: 0;
}
table tr td {
    padding:0.5%;
    border-top: 1px solid #ffffff;
    border-bottom:1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0; 
    background: #fafafa;
}

table tr td input[type='text'], table tr td textarea, table tr td input[type='password'] { width:100%; }
table tr.even td{
    background: #f6f6f6;
}
table tr:last-child td{
    border-bottom:0;
}
table tr:last-child td:first-child{
    border-bottom-left-radius:3px;
}
table tr:last-child td:last-child{
    border-bottom-right-radius:3px;
}
table tr:hover td {
    background: #f2f2f2;
}

table tr td.label { width:25%; }
table tr td.input input[type='text'], table tr td.input input[type='password'] { width:90%; }
table tr td.submit_row { text-align:center;}

