Fix found first the table not closing from page break
Found if I changed the CSS files
border-collapse: collapse;
to
border-spacing: -1px;
Then to fix the missing top on following page:
From my .product {
Moved
border-top: 1px solid #DDDDDD;
To new
thead {
border-top: 1px solid #DDDDDD;
}
So looks like border-collapse: collapse; is not working for tables or there is some other bug.