/* tables */
table.tablesorter {
	width: 100%;
	text-align: left;
	 -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
          border-radius: 6px;
  -webkit-box-shadow: 0 4px 4px rgba(0,0,0,.065);
     -moz-box-shadow: 0 4px 4px rgba(0,0,0,.065);
          box-shadow: 0 4px 4px rgba(0,0,0,.065);
          background-color: lightgrey;
}
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
	background-color: #ED1556;
	color: white;
	border: 1px solid #FFF;
	font-size: 10pt;
	padding: 4px;
}
table.tablesorter thead tr .tablesorter-header {
	background-image: url(../images/bg.gif);
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
}
table.tablesorter tbody td {
	color: #3D3D3D;
	padding: 2px 2px 2px 2px;
	background-color: #FFF;
	vertical-align: top;
	border-bottom: 1px solid lightgrey;

}
table.tablesorter tbody tr.odd td {
	background-color:#F0F0F6;
}
table.tablesorter thead tr .tablesorter-headerAsc {
	background-image: url(../images/asc.gif);
}
table.tablesorter thead tr .tablesorter-headerDesc {
	background-image: url(../images/desc.gif);
}
table.tablesorter thead tr .tablesorter-headerAsc, table.tablesorter thead tr .tablesorter-hheaderDesc {
	background-color:  #e95d27;
	
	color: white;
}

table.tablesorter tr:hover .row {
	background-color: lightgrey;
	cursor: pointer;
}
