/* _cc_table sorting table styles */
._cc_table{
    width: 100%;
    border: 1px solid #CCCCCC;
}

._cc_table th{
    background-color: #E6E7E8;
    border-bottom: 1px solid #A7A9AC;
    border-top: 1px solid #A7A9AC;
    font-weight: normal;
    text-transform: uppercase;
    text-align: left;
    font-size: 12px;
    line-height: 20px;
    padding-right: 6px;
    padding-left: 4px;
}

._cc_table th.money{
    padding-right: 0px;
    padding-left: 10px;
}

._cc_table th[ng-click]{
    cursor: pointer;
}

._cc_table th:after{
    content: "\25B2";
    color: transparent;
    font-size: 9px;
    position: relative;
    top: -2px;
}

._cc_table th.sortby:after{
    color: #777;
}

._cc_table th.sortby.rev:after{
    content: "\25BC";
}

._cc_table td{
    line-height: 22px;
    padding-left: 4px;
}

._cc_table .money{
    text-align: right;
    padding-right: 6px;
}

._cc_table tr.even{
    background-color: #f8f8f8;
}

._cc_table tr.selected{
    background-color: #eeeef8;
}

._cc_table tfoot{
    border-top: 1px solid #A7A9AC;
    border-bottom: 1px solid #A7A9AC;
    background-color: #E6E7E8;
}

/* this should get moved to the receivables page module as it's specific to that (whenever we refactor receivables page)
._cc_table .type a{
    background-color: #F89406;
    color: white;
    border-radius: 3px;
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
    height: 14px;
    width: 14px;
    text-align: center;
    display: inline-block;
}

._cc_table .type.payment a{
    background-color: #468847;
}

._cc_table .type a:hover{
    text-decoration: none;
}
*/