since mr.browne's code uses stylesheet file, you can embed them to the code.
just put it before the </head> portion of the code:
'I embedded it here
Print #1, "<style>"
Print #1, "BODY { font-family:Trebuchet MS, Helvetica; color:#000000; font-size:10pt }"
Print #1, "TABLE { font-family:Trebuchet MS, Helvetica; color:#000000; font-size: 10pt; }"
Print #1, "th { color:#FFFFFF; background-color:#000066 }"
Print #1, "td { vertical-align:top; background-color:#CCCCCC }"
Print #1, "H1 { font-family: Trebuchet MS, Helvetica, sans-serif; font-weight:normal; color: #000066; font-size:18pt }"
Print #1, "H2 { font-family: Trebuchet MS, Helvetica, sans-serif; font-weight:normal; color: #000066; font-size:16pt }"
Print #1, "H3 { font-family: Trebuchet MS, Helvetica, sans-serif; font-weight:normal; color: #000066; font-size:12pt }"
Print #1, "H4 { font-family: Trebuchet MS, Helvetica, sans-serif; font-weight:normal; color: #000066; font-size:10pt }"
Print #1, "</style>"
Print #1, "</head>"