/* tables */
/* THEAD */
table.tablesorter thead tr .header {
	background-image: url(bg.gif);
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
}
table.tablesorter thead tr .headerSortUp {
	background-image: url(asc.gif);
}
table.tablesorter thead tr .headerSortDown {
	background-image: url(desc.gif);
}
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
background-color: #B98D62;
}

/* TBODY */
/* for zebra striping - added of Feb 18, 2010 */
/* EDIT: style applied to tr, not td */
table.tablesorter tbody tr.odd {
	background: #FCFCEC;
}
table.tablesorter tbody tr.even {
	background: #EFECE0;
}
table.tablesorter tbody tr:hover , .tbl_highlightrow tbody tr:hover{
    background-color: #f0f0af;
}
tr.highlighted{
	background: #EFEFE0;
}
