/* see: http://datatables.net/blog/Twitter_Bootstrap_2 */
table.dataTable {
    margin-bottom: 6px !important;
    margin: 0 auto;
    clear: both;
    width: 100%;
    
}

table.dataTable-fixed { table-layout: fixed; }

table.dataTable * { vertical-align: middle; }

/* display length dropdown */
div.dataTables_length label { float: left; text-align: left; }
div.dataTables_length select { width: 75px; }

/* search box */ 
div.dataTables_filter label { float: right; }
 
/* info display */
div.dataTables_info { padding-top: 8px; }
 
/* pagination controls */
div.dataTables_paginate { float: right; margin: 0; }
 
/* server side processing text/display */
div.dataTables_processing { position: absolute; left: 48%; }

table.dataTable td.center,
table.dataTable td.dataTables_empty { text-align: center; }

table.dataTable td.right { text-align: right; }

/* sorting */
table.table thead .sorting,
table.table thead .sorting_asc,
table.table thead .sorting_desc,
table.table thead .sorting_asc_disabled,
table.table thead .sorting_desc_disabled {
    cursor: pointer;
    *cursor: hand;
}
 
table.table thead .sorting { background: url('../img/datatables/sort_both.png') no-repeat center right; }
table.table thead .sorting_asc { background: url('../img/datatables/sort_asc.png') no-repeat center right; }
table.table thead .sorting_desc { background: url('../img/datatables/sort_desc.png') no-repeat center right; }
 
table.table thead .sorting_asc_disabled { background: url('../img/datatables/sort_asc_disabled.png') no-repeat center right; }
table.table thead .sorting_desc_disabled { background: url('../img/datatables/sort_desc_disabled.png') no-repeat center right; }




