/* TABLE EMULATION WITH DIVS */

/* TABLE */

div.table {
    background-color: #FFF;
}

div.table div.thead div.tr {
    border-bottom: 1px solid #DDDDDD;
    font-weight: bold;
}

div.table div.tbody div.tr {
    border-bottom: 1px solid #E7EAEC; 
}

div.table div.tr div.th, div.table div.tr div.td {
    line-height: 1.42857;
    padding: 8px;
    vertical-align: top;
    height: 100%;
}

div.table div.tr, div.table div.tr div.th, div.table div.tr div.td  {
    margin: 0 !important;
}

/* TABLE-HOVER */

div.table-hover div.tr:hover div.td {
    background-color: #f5f5f5;
}

/* TABLE-BORDERED */

div.table-bordered {
    border-right: 0;
}

div.table-bordered div.tr {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
}

div.table div.thead div.tr {
    border-bottom: 1px solid #E7EAEC;
}

div.table-bordered div.tr div.th {
    background-color: #F5F5F6 !important;
    border-right: 1px solid #E7EAEC;
    display: table-cell;
    float: none;
    height: 100%;
}

div.table-bordered div.tr div.td {
    border-right: 1px solid #E7EAEC;
    display: table-cell;
    float: none;
    height: 100%;
}

/* TABLE-STRIPED - NOT SUPPORTED*/
