/*
 * Table styles
 */

table.dataTable thead th,

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