/* CSS Document */

 .div-table {
    display: table;
    }

  .div-row  {
    display: table-row;
    }

  .div-cell {
    display: table-cell;
    }

table.nicetable {
	padding: 0;
	border-spacing: 0;
	border-collapse:collapse;
	border: 1px solid black;
}

table.nicetable th, table.nicetable td {
    border: 1px solid black;
	font: normal Arial, sans-serif;
}	

table.nicetable th{
	font-weight: bold;
}