/* CSS Document */
.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 */
}

.divTable {
    display: table;
    width: 95%;
    padding-bottom: 10px;
}

.divTableRow {
    display: table-row;
}

.divTableRow {
    display: table-row;
}

.divTableRow2 {
    display: table-row;
    background-color: #eaeaea;
}

.divTableHeading {
    display: table-header-group;
    border-bottom: 1px solid #eaeaea;
}

.divTableCell,
.divTableHead {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    display: table-cell;
    padding: 5px 10px 5px 10px;
    vertical-align: middle;
}

.divTableHeading {
    display: table-cell;
    font-weight: bold;
    padding: 3px 10px;
}

.divTableFoot {
    background-color: #EEE;
    display: table-footer-group;
    font-weight: bold;
}

.divTableBody {
    display: table-row-group;
}

hr {
    margin-bottom: 10px;
}

li.align-left {
                line-height: 1.35em;
                padding-bottom: 3px;
				text-indent: -15px;
            }