In adittion to Sirko's answer , if you want to affect only
<a>
within Yours
<div id="NAHC-topText"> <h2>
Your stylesheet should look like this , in order to exclude any other anchors and headers.
#NAHC-topText h2 a {text-decoration:none;}
#NAHC-topText h2 a:hover {color:red;}
But of course there is nothing wrong with Sirko's answer , only it would affect all Your Anchors within the particular document.
Also if You want the underline only to display upon hover , you simply define
a {text-decoration:none;}
a:hover {text-decoration:underline;color:red;}
with the particular selector of Your choice
now that i red Your question again , this applies vice versa for the opposite situation
when You want it first underlined , and upon hover without underline , you simply swap the condition for each situation.