Needed to replace
<p>Regulatory Taking:
with
<p><b>Regulatory Taking</b>:
where text between <p> and : were undetermined. The following RegEx find/replace in Notepad++ does the job:
Find: <p>(.+):
Replace: <p><b>$1</b>:
$1 is the ‘Backreference’ to (.+)