@charset "UTF-8";
/**
 * @file        tablesorter.css
 */

@media all
{
  table.tablesorter {
  	font-family: Tahoma, sans-serif;

  	margin: 0 0 5px 0;
  	font-size: 1em;
  	width: 100%;
  	text-align: left;
  }
  table.tablesorter thead tr th, table.tablesorter tfoot tr th {
  	background-color: #ccc;
  	border-top: 2px solid #ccc;
  	border-left: 1px solid #fff;
  	font-size: 0.9em;
  	padding: 2px;
  }
  table.tablesorter thead tr .header {
  	/*background-image: url(/layout/images/tablesorter/bg.gif);
  	background-repeat: no-repeat;
  	background-position: center right;*/
  	cursor: pointer;
  }
  table.tablesorter tbody td {
  	color: #3D3D3D;
    padding: 6px 4px;
  	border: 1px solid rgb(230, 230, 230);
  	background-color: #FFF;
  	vertical-align: top;
  	font-size: 0.9em;
  }
  table.tablesorter tbody tr.odd td {
  	background-color: #F0F0F6;
  }
  table.tablesorter thead tr .headerSortUp {
  	background: url(/layout/images/tablesorter/asc.gif) no-repeat 6px top;
  }
  table.tablesorter thead tr .headerSortDown {
  	background: url(/layout/images/tablesorter/desc.gif) no-repeat 6px bottom;
  }
  table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
  	background-color: #666;
  	border-top: 2px solid #ccc;
  	color: #fff;
  }
}
