/* Color code the rows */
tr.oddrow,td.oddrow {
	/* background-color: #ffd8d8; */
	/* Link color is #991a26 */
	/* #ffd8d8 is only 6.35:1 contrast */
	/* (see https://webaim.org/resources/contrastchecker) */
	/* That is WCAG 2.0 AA compliant for normal text, but not WCAG 2.0 AAA */
	/* Try making AAA */
	/* #ffe6e6 is 7.0:1 contrast (with #991a26) */
	background-color: #ffe6e6;
}

tr.evenrow,td.evenrow {
	/* background-color: #ffecec; */
	/* #FFECEC (with #991a26) is 7.3:1 contrast, WCAG 2.0 AAA compliant*/
	/* But adjusting to make more contrast with oddrow */
	/* #fff4f4 is 7.7:1 contrast (with #991a26) */
	background-color: #fff4f4;
}


/* For main software listing table */
table.swtable {
	border: 1px solid black;
	border-collapse: collapse;
	width: 100%;
	text-align: center;
	vertical-align: middle;
}

td.swtable {
	border: 1px solid black;
	border-collapse: collapse;
}

table.swtable  td {
	border: 1px solid black;
	border-collapse: collapse;
}

th.swtable {
	background-color: #d8d8d8;
	border: 1px solid black;
}

table.swtable  th {
	background-color: #d8d8d8;
	border: 1px solid black;
}

td.swtable {
	border: 1px solid black;
	border-collapse: collapse;
}

td.pkgname {
	font-weight: bold;
}

/* The following will get rid of horizontal borders between versions of
   same application.  Decided I like better with them in, at least if
   color code the rows.
*/
/*
tr.toprow {
	border-top: 1px solid black;
}

tr.bottomrow {
	border-bottom: 1px solid black;
}

td.version, td.tap, td.module, td.vnotes {
	border-bottom-style: none;
	border-top-style: none;
}
*/

/* For software summary table in software/foo.html */
table.swsummary {
	border: 1px solid black;
	border-collapse: collapse;
	width: 100%;
	text-align: center;
	vertical-align: middle;
}

tr.swsummary {
	border: 1px solid black;
	border-collapse: collapse;
}
	
th.swsummary {
	background-color: #d8d8d8;
	border: 1px solid black;
}

td.swsummary {
	border: 1px solid black;
	border-collapse: collapse;
}

td.value {
	text-align: center;
}

/* For version table in software/foo.html */
table.swversions {
	border: 1px solid black;
	border-collapse: collapse;
	width: 100%;
	text-align: center;
	vertical-align: middle;
}

tr.swversions {
	border: 1px solid black;
	border-collapse: collapse;
}
	
th.swversions {
	background-color: #d8d8d8;
	border: 1px solid black;
}

td.swversions {
	border: 1px solid black;
	border-collapse: collapse;
}
