h1, h2, h3 {padding-bottom: 6px;}

table td {
    padding: 2px 2px 3px 2px;
}

.style1 {
    font-weight: bold
}

.button {
    padding-left: 2px;
}

.button a {
    display: block;
    height: 50px;
    width: 200px;
    background: #3a5298;
    /*TYPE*/
    color: white;
    font: 15px/50px Helvetica, Verdana, sans-serif;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    /*ROUNDED CORNERS*/
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    /*SHADOW*/
    -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    /*GRADIENT*/
    background: -moz-linear-gradient(top, #3a5298 0%, #009ec3 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3a5298), color-stop(100%, #009ec3));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #3a5298 0%, #009ec3 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #3a5298 0%, #009ec3 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #3a5298 0%, #009ec3 100%);
    /* IE10+ */
    background: linear-gradient(top, #3a5298 0%, #009ec3 100%);
    /* W3C */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#3a5298', endColorstr='#009ec3', GradientType=0);
    /* IE6-9 */
}
/* table divs */

.rTable {
    display: table;
    width: 100%;
}

.rTableRow {
    display: table-row;
}

.rTableHeading {
    display: table-header-group;
    background-color: #ddd;
}

.rTableCell,
.rTableHead {
    display: table-cell;
    padding: 10px;
    border: 0px solid #999999;
}

.rTableHeading {
    display: table-header-group;
    background-color: #ddd;
    font-weight: bold;
}

.rTableFoot {
    display: table-footer-group;
    font-weight: bold;
    background-color: #ddd;
}

.rTableBody {
    display: table-row-group;
}
