/* tablesort.js */

th {
	color: #a0a0a0;
	border-bottom: 1px solid #e5e5e5;
	}
	
.sortcol {
	cursor: pointer;
	}
	
.nosort {
	cursor: default;
	}
	
.sortasc, .sortdesc {
	color: #333;
	border-bottom: 1px solid #8f8f8f;
    background-repeat: no-repeat;
    background-position: center right;
	}

.sortasc {
    background-image: url(../images/asc.gif);
}
.sortdesc {
    background-image: url(../images/desc.gif);
}
