/* CSS */
@charset "UTF-8";

/* Ordenar */
th[data-sort] {
	position: relative;
	cursor: pointer;
}
th[data-sort]:after {
	top: 50%;
	position: absolute;
	margin-top: -5px;
	margin-left: 5px;
	font-family: 'Glyphicons Halflings';
	font-size: 7px;
}
.sorting-asc:after {
	content: '\e113';
}
.sorting-desc:after {
	content: '\e114';
}
