/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 17-apr-2020, 22:31:32
    Author     : GTST01
*/

	.table_rownumber
	{
		counter-reset: rowNumber;
	}

	.table_rownumber tr > td:first-child
	{
		counter-increment: rowNumber;
	}

	.table_rownumber tr td:not([class*="norowNumber"]):first-child::before
	{
		content: counter(rowNumber)".";
		min-width: 1em;
		margin-right: 0.5em;
	}	
