/*table.fixed {table-layout:fixed;}Setting the table width is important!
table.fixed td {overflow:hidden;}/*Hide text outside the cell.*/

table td {border: 1.5px solid #ccc7c7}

table.fixed td:nth-of-type(1) {width:65%;}/*setting the width of column 1.
table.fixed td:nth-of-type(2) {width:35%;}/*setting the width of column 2.

table.rowtable tr:nth-of-type(odd)  {background-color: #ffffff;}/*alternative shading for rowtable, white*/
table.rowtable tr:nth-of-type(even) {background-color: #f2f2f2;}/*alternative shading for rowtable, gray */

table.fixed65rowtable td:nth-of-type(1) {width:65%;} tr:nth-of-type(odd)  {background-color: #ffffff;} /*setting the width of column 1.*/
table.fixed65rowtable td:nth-of-type(2) {width:35%;} tr:nth-of-type(even) {background-color: #f2f2f2;} /*setting the width of column 2.*/
