/* *********************************************************************************************************************
 * Tablesorter
 */
.tablesorter {
	width: 100%;
}

.tablesorter tr.result, .tablesorter tr.resultSpecial {
	height: 2.5em;
	cursor: pointer;
}
	.tablesorter tr.result:hover td, .tablesorter tr.resultSpecial:hover td {
		background-color: #00acdd;
		color: #FFF;
	}

.tablesorter td {
	padding: 0.5em;
	vertical-align: top;
}

.tsHiddenText {
	display: block;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.tsMimeTypeIco {
	width: 18px !important;
}

.paperclipIco {
	position: relative;
}
.paperclipIco:after {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 16px;
	height: 16px;
	background-image: url(img/ico_attach.svg);
	content: "";
}





/* *********************************************************************************************************************
 * headers & sorting arrows
 */
.tablesorter th {
	background: #F9F9F9;
	color: #999;
	line-height: 2.5em;
	height: 2.5em;
	border-top: 1px solid #DDD;
	border-bottom: 1px solid #DDD;
	border-left: 1px solid #DDD;
	padding: 0 5px 0 0.5em;
}
	.tablesorter th:first-child {
		border-left: none;
	}

.tablesorter th.header {
	white-space: nowrap;
	cursor: pointer;
	padding: 0 5px 0 20px;
	background-image: url(img/sorting-arrow-default.svg);
	background-position: 5px center;
	background-repeat: no-repeat;
}
.tablesorter th.headerSortDown {
	background-image: url(img/sorting-arrow-down.svg);
}
.tablesorter th.headerSortUp {
	background-image: url(img/sorting-arrow-up.svg);
}
.tablesorter th.header:hover {
	color: #666;
}





/* *********************************************************************************************************************
 * headers & sorting arrows
 */
.tablesorter tfoot tr td {
	border-top: 1px solid #DDD;
	border-bottom: 1px solid #DDD;
}
 
 
 
 
 
/* *********************************************************************************************************************
 * Zebra stripes
 */
.odd {
	background: #FFF;
}
.even {
	background: #DFE9F3;
}