Give this a try;
Code:
sed '{N;/n\/a/d}' infile
N (blue part) reads in the next line (both lines are now "one" in the buffer),
the grey part looks for lines containing
n/a and if that is true the complete line is deleted (red d).
Test run on the input you provided:
Code:
$ sed '{N;/n\/a/d}' infile
<b>Earnings Releases - Confirmed</b></td>
<td align="right"><a target="_blank" href="earning.asp?date=20120629&client=cb&print=1"><img src="/format/cb/images/btn_print.gif" alt="Printer Friendly Version" width="62" height="16" hspace="10" border="0"></a></td>
<td align="left" width="*">Q1 2013 Constellation Brands, Inc. Earnings Release</td>
<td align="center">$ 0.39 </td>
<td align="left" width="*">Q1 2013 Finish Line Earnings Release</td>
<td align="center">$ 0.23 </td>
<td align="left" width="*">Q2 2012 KB Home Earnings Release</td>
<td align="center">-$ 0.34 </td>
<td align="left" width="*">Q4 2012 Motorcar Parts of America, Inc. Earnings Release</td>
<td align="center">-$ 0.40 </td>
\n
Constellation Brands Inc