#Show {display:table}
#Hide {display:none}
.clTbHd2 {font-family:verdana; font-size:8pt; font-weight:800; background:rgb(168,0,24); text-align:center; vertical-align:middle; color:white}
.clFoot {text-align:center; vertical-align:middle; height:20px; width:590px; border-bottom: 1px solid #e1e1e1; border-top: 1px solid #e1e1e1}
.clLink {text-decoration:none; font-weight:800}
a.clLink:link {color:navy}
a.clLink:visited {color:navy}
a.clLink:active {color:navy}
td {height:18px; vertical-align: middle}
.clTbOdd2 {font-family:verdana;font-size:7pt;background:#e1e1e1}
function changeVisibility()
{
var tbl = document.getElementsByTagName("table");
for (i = 0; i < tbl.length; i++)
if (tbl[i].id == "Show") tbl[i].id="Hide"; else if (tbl[i].id == "Hide") tbl[i].id="Show";
}