.table {
    display: table;
    border-collapse: collapse;
}
.row {
    display: table-row;
}
.cell, .cellhead {
    display: table-cell;
    border-bottom: 1px solid #eee;
    font-family: "Lucida Grande",Verdana,Arial,sans-serif;
    font-size: 11px;
    line-height: 13px;
    padding: 5px;
    vertical-align: top;
}

.row:hover {
    background-color: #cccccc;
}
.cell:hover {
    background-color: #e5e5e5;
}

.cellhead {
    font-size: 12px;
    font-weight: bold;
    text-align: left;
}

.button {
    background: #fff url("../img/nav-bg.gif") repeat-x scroll center bottom;
    border-color: #ddd #aaa #aaa #ddd;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    color: black;
    padding: 3px 5px;
    font-family: "Lucida Grande",Verdana,Arial,sans-serif;
    font-size: 11px;
    font-weight: normal;
    margin: 2px 0;
    vertical-align: middle
}

/* tooltips'/
[tooltip]:before {
    /* needed - do not touch */
    content: attr(tooltip);
    position: absolute;
    opacity: 0;

    /* customizable */
    /*transition: all 0.15s ease;*/
    padding: 10px;
    color: #333;
    border-radius: 10px;
    box-shadow: 2px 2px 1px silver;
}

[tooltip]:hover:before {
    /* needed - do not touch */
    opacity: 1;

    /* customizable */
    background: lightblue;
    margin-top: -30px;
    margin-left: -20px;
}

[tooltip]:not([tooltip-persistent]):before {
    pointer-events: none;
}

/* progress-bar in cell background */
td.progress-new,
td.progress-sbm,
td.progress-pay,
td.progress-prt,
td.progress-pck,
td.progress-ccc,
td.progress-xxx,
td.progress-hhh {
    position: relative;
}
td.progress-new::before,
td.progress-sbm::before,
td.progress-pay::before,
td.progress-prt::before,
td.progress-pck::before,
td.progress-ccc::before,
td.progress-xxx::before,
td.progress-hhh::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: lightgrey;
    z-index: -1;
}

td.progress-new::before {
    width: 5%;
    background-color: Orange;
}
td.progress-sbm::before {
    width: 25%;
    background-color: Orange;
}
td.progress-pay::before {
    width: 50%;
    background-color: LightGreen ;
}
td.progress-prt::before {
    width: 95%;
    background-color: LightSkyBlue ;
}
td.progress-pck::before {
    width: 100%;
}

td.progress-ccc::before {
    width: 100%;
    background-color: LightGrey ;
}
td.progress-xxx::before {
    width: 50%;
    background-color: OrangeRed ;
}
td.progress-hhh::before {
    width: 50%;
    background-color: BlueViolet  ;
}