/* tables */
table.tablesorter {
	font-family:arial;
	background-color: #fff;
	font-size: 12px;
	width: 100%;
	text-align: left;
}
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
	background-color: #e6EEEE;
    color:#333;
    height:25px;
	font-size: 12px;
	padding: 6px;
    text-align: left;
}
table.tablesorter thead tr th:hover, table.tablesorter tfoot tr th:hover {
	background-color: #C5DAE4;
    color:#333;
}

table.tablesorter thead tr {
border-bottom: 1px solid #ccc;
}

table.tablesorter thead tr .header {
	background-image: url(bg.gif);
    border: 1px #ccc solid;
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
}
table.tablesorter thead tr .final{
    border-right: 1px solid #ccc;
}

table.tablesorter tbody td {
	color: #3D3D3D;
    border-bottom: 1px #ddd solid;
	padding:6px;
	background-color:#FFF;
	vertical-align: top;
    overflow:hidden;
    -webkit-transition: background-color 0.2s linear;
    -moz-transition: background-color 0.2s linear;
    -o-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
}
table.tablesorter tbody td .win {
color:#008000;
}

table.tablesorter tbody td .neutral {
color:#02395B;
}
    
table.tablesorter tbody td .lose {
color:#D00;
}

table.tablesorter tbody tr.odd td {
	background-color:#F0F0F6;
}
table.tablesorter tbody tr:hover td,
table.tablesorter tbody tr.even:hover td.active,
table.tablesorter tbody tr.odd:hover td.active {
    background: #D7E8EC;
}
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: #C5DAE4;    
}
