﻿table.table
{
    background-color: #f2f1f1;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

    table.table.auto-width
    {
        width: auto;
    }

    table.table caption
    {
        padding: 7px;
        background-color: #e5e5e5;
        font-size: 15px;
        color: #525252;
        text-align: left;
    }

    table.table > thead > tr > th,
    table.table > tbody > tr > th
    {
        background-color: #e5e5e5;
        color: #525252;
        font-size: 14px;
        padding: 8px 20px 8px 10px;
        border-top: solid 1px #d9d9d9;
        text-align: left;
        vertical-align: middle;
        font-weight: bold;
        border-left: solid 1px #b8b8b8;
    }

        table.table > thead > tr > th:first-child,
        table.table > tbody > tr > th:first-child
        {
            border-left: none;
        }

    table.table > tbody > tr > td
    {
        vertical-align: middle;
        padding: 10px;
        font-size: 14px;
        text-align: left;
        color: #525252;
        border-top: solid 1px #d9d9d9;
    }

    table.table.valign-top > tbody > tr > td
    {
        vertical-align: top;
    }

    table.table > tbody > tr.joint-row > td
    {
    }

    table.table > tbody > tr.joint-row + tr > td
    {
        padding-top: 0px;
        border-top: none;
        font-size: 12px;
        color: #777;
    }

    table.table > tbody > tr > td.text-right
    {
        text-align: right;
    }

    table.table > tbody > tr:nth-of-type(2n + 1) > td, table.table > tbody > tr.odd-row > td
    {
        background-color: #eeeded;
    }

    table.table > tbody > tr.even-row > td
    {
        background-color: transparent;
    }

    table.table > tbody:last-child > tr:last-child > td
    {
        border-bottom: solid 1px #d9d9d9;
    }

.dataTables_wrapper
{
    position: relative;
}

    .dataTables_wrapper.no-positioning
    {
        position: static;
        margin-bottom: 0;
    }

    .dataTables_wrapper .dataTables_filter
    {
        text-align: right;
        font-size: 12px;
        color: #777;
        padding-bottom: 19px;
    }

        .dataTables_wrapper .dataTables_filter input
        {
            width: 7em;
            background-color: #fafafa;
            border-radius: 500px;
            padding: 4px 15px 4px 10px;
            border: solid 1px #aaa;
            outline: none;
            background-image: url(images/search_datatables.png);
            background-repeat: no-repeat;
            background-position: right center;
        }


.dataTable > thead > tr > th
{
    width: auto !important;
}

    .dataTable > thead > tr > th.sorting_asc, .dataTable > thead > tr > th.sorting_desc, .dataTable > thead > tr > th.sorting
    {
        cursor: pointer;
    }

    .dataTable > thead > tr > th.sorting
    {
        background-image: url(images/sort_none.png);
        background-position: right center;
        background-repeat: no-repeat;
    }

    .dataTable > thead > tr > th.sorting_asc
    {
        background-image: url(images/sort_down.png);
        background-position: right center;
        background-repeat: no-repeat;
    }

    .dataTable > thead > tr > th.sorting_desc
    {
        background-image: url(images/sort_up.png);
        background-position: right center;
        background-repeat: no-repeat;
    }

.dataTables_info
{
    padding: 5px 0;
    color: #777;
    font-size: 12px;
    display: inline-block;
}

.dataTables_paginate
{
    display: inline-block;
    float: right;
    font-size: 12px;
    padding: 4px 0;
}

    .dataTables_paginate .first, .dataTables_paginate .last
    {
        display: none;
    }

    .dataTables_paginate .next
    {
        display: inline-block;
        width: 8px;
        height: 13px;
        background: url('images/arrow_right.png');
        background-position: center top;
        background-repeat: no-repeat;
        position: relative;
        top: 3px;
        margin-left: 4px;
    }

    .dataTables_paginate .previous
    {
        display: inline-block;
        width: 8px;
        height: 13px;
        background: url('images/arrow_left.png');
        background-position: center top;
        background-repeat: no-repeat;
        position: relative;
        top: 3px;
        margin-right: 4px;
    }

    .dataTables_paginate .paginate_button
    {
        color: #515151;
        padding: 0 3px;
        cursor: pointer;
    }

    .dataTables_paginate .paginate_active
    {
        color: #fff;
        background-color: #515151;
        padding: 0 3px;
        cursor: pointer;
    }

    .dataTables_paginate .paginate_button_disabled
    {
        display: none;
    }

table.form-table
{
    background: #e5e5e5;
    border-collapse: collapse;
    border-spacing: 0;
}

    table.form-table > tbody > tr > th
    {
        text-align: right;
        color: #525252;
        padding: 10px;
    }

        table.form-table > tbody > tr > th.top-header
        {
            text-align: center;
        }

    table.form-table > tbody > tr > td
    {
        background-color: #fff;
        padding: 10px;
    }

        table.form-table > tbody > tr > td.form-table-container
        {
            background-color: transparent;
            padding: 0;
        }

    table.form-table.sub-form-table
    {
        background: transparent;
    }

table > tbody > tr.spacer-row > td
{
    font-size: 0px;
}


ul.table-commands
{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    ul.table-commands > li
    {
        display: inline-block;
        border-right: solid 1px #aaa;
        padding-right: 5px;
    }

        ul.table-commands > li:last-child
        {
            border-right: none;
        }
