/* CSS Document */

.show_display_menu {
	display: block !important;
}

.table-counter {
	counter-reset: rowNumber;
}

.table-counter tr {
	counter-increment: rowNumber;
}

.table-counter tr td:first-child::before {
	content: counter(rowNumber) ") ";
	min-width: 1em;
	margin-right: 0.5em;
}