﻿/* Sorting */
th.table-sortable > span
{
    cursor: pointer;
    background-image: url("../images/sortable.gif");
    background-position: center right;
    background-repeat: no-repeat;
    padding-right: 15px;
}
th.table-sorted-asc > span
{
    background-image: url("../images/sorted_up.gif");
    background-position: center right;
    background-repeat: no-repeat;
}
th.table-sorted-desc > span
{
    background-image: url("../images/sorted_down.gif");
    background-position: center right;
    background-repeat: no-repeat;
}
th.table-filtered
{
    background-image: url("../images/filter.gif");
    background-position: center right;
    background-repeat: no-repeat;
}
td.table-sortable
{
    cursor: pointer;
    background-image: url("../images/sortable.gif");
    background-position: center right;
    background-repeat: no-repeat;
    padding-right: 15px;
}
td.table-sorted-asc
{
    background-image: url("../images/sorted_up.gif");
    background-position: center right;
    background-repeat: no-repeat;
}
td.table-sorted-desc
{
    background-image: url("../images/sorted_down.gif");
    background-position: center right;
    background-repeat: no-repeat;
}
td.table-filtered
{
    background-image: url("../images/filter.gif");
    background-position: center right;
    background-repeat: no-repeat;
}
tr.alternate
{
    background-color: #ffffcc;
}
