/**
 * Override some css rules for users selection element
 */
table.dataTable.stripe tbody tr.row_selected.odd,
table.dataTable tbody tr.row_selected.odd {
   background-color: #f9f9f9 !important;
}
table.dataTable.stripe tbody tr.row_selected.even,
table.dataTable tbody tr.row_selected.even {
   background-color: #fff !important;
}
table.dataTable.stripe tbody tr.row_selected.bg-success,
table.dataTable tbody tr.bg-success {
   background-color: #dff0d8 !important;
}
table.dataTable.stripe tbody tr:hover.row_selected.bg-success,
table.dataTable tbody tr:hover.bg-success {
   background-color: #00a65a !important;
   color: #fff;
}
table.dataTable.stripe tbody tr:hover.row_selected.bg-success td.mark,
table.dataTable tbody tr:hover.bg-success td.mark {
   color: #333;
}
