/*---------------------------------------------------------------------------------------------------------------------
                                                    TABLE STYLE
---------------------------------------------------------------------------------------------------------------------*/
.th
{
    width: 100%;
    background: rgb(59,59,59);
    background: -moz-linear-gradient(top, rgba(59,59,59,1) 0%, rgba(48,48,48,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(59,59,59,1)), color-stop(100%,rgba(48,48,48,1)));
    /******************** gradient ********************/
    background: -webkit-linear-gradient(top, rgba(59,59,59,1) 0%,rgba(48,48,48,1) 100%);
    background: -o-linear-gradient(top, rgba(59,59,59,1) 0%,rgba(48,48,48,1) 100%);
    background: -ms-linear-gradient(top, rgba(59,59,59,1) 0%,rgba(48,48,48,1) 100%);
    background: linear-gradient(to bottom, rgba(59,59,59,1) 0%,rgba(48,48,48,1) 100%);
    -webkit-box-shadow: 0px -2px 5px 0px #222, 0px 2px 5px 0px #222;
    -moz-box-shadow: 0px -2px 5px 0px #222, 0px 2px 5px 0px #222;
    box-shadow: 0px -2px 5px 0px #222, 0px 2px 5px 0px #222;
    color: #fff;
    /******************** box shadow ********************/
    text-align: center;
    font-size: 1.5em;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b3b3b', endColorstr='#303030',GradientType=0 );
    -o-box-shadow: 0px -2px 5px 0px #222, 0px 2px 5px 0px #222;
}

.table.th .cell{
    padding: .6em;
}

.table.th .cell + .cell{
    position: relative;
    color: #fff;
}

.table.th .cell + .cell:before{
    position: absolute;
    top: 20%;
    left: 0;
    display: block;
    width: 1px;
    height: 60%;
    background-color: #4c4c4c;
    content:'';
}

.table.th .cell.cell1{
    padding: 0;
}

.table{
    display: table;
    width: 100%;
    background-color: #252525;
}

.row{
    display: table-row;
}

.cell{
    display: table-cell;
    padding: 1em;
    width: 20%;
    border-top:1px dotted #3e3e3e;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
}

.cell + .cell{
    width: 80%;
    color:#aaa;
    text-align: center;
    font-weight: inherit;
    font-size: 1.2em;
}

.cell + .cell .container{
    line-height: 1.1em;
}

/*---------------------------------------------------------------------------------------------------------------------
                                                    TABLE CELL SIZE
---------------------------------------------------------------------------------------------------------------------*/
.cell.cell1{
    width: 2%;
}
/* 4 cell */
.cell.cell2{
    width: 11%;
}
/* 4 cell */
.cell.cell3{
    width: 13.5%;
}

.container .bold{
     font-weight: bold;
 }

.container .white{
    color:#fff;
}


/*---------------------------------------------------------------------------------------------------------------------
                                                    TABLE CELL COLOR
---------------------------------------------------------------------------------------------------------------------*/
.table .row .cell.even{
    background-color: #272727;
}

.table .row .cell.odd{
    background-color: #252525;
}

.table .row .cell{
    position: relative;
}

.table .cell.cell1 .container{
    height: 88%;
    width: 88%;
    position: absolute;
    top: 6%;
    left: 6%;
    background-color: #fff;
    color:#b3009d;
}
    .table .cell.cell1 .container span{
        top: 33%;
        display: block;
        position: absolute;
        width: 100%;
        text-align: center;
        font-size: 1.4em;
    }

.table .row.num-1 .cell.cell1 .container,
.table .row.num-2 .cell.cell1 .container,
.table .row.num-3 .cell.cell1 .container{
    background-color: #b3009d;
    color:#fff;
}