I think you've a typo/syntax error in the logo code:
<h2 style="width:155px; margin: 0 auto; margin-top: 20px; margin-bottom: 20px; border:none;" class="logo" logoimg"><a href="http://www.deaorganics.com/wp/"><img class="ie6fix" src="http://www.deaorganics.com/wp/wp-content/uploads/2011/07/dea_logo_web1.png" alt="http://www.deaorganics.com/wp" /></a></h2>
Try following code instead:
<h2 style="width:155px; margin: 0 auto; margin-top: 20px; margin-bottom: 20px; border:none;" class="logo logoimg"><a href="http://www.deaorganics.com/wp/"><img class="ie6fix" src="http://www.deaorganics.com/wp/wp-content/uploads/2011/07/dea_logo_web1.png" alt="http://www.deaorganics.com/wp" /></a></h2>
and in style.css change:
#top .logo a, #top .logo a:hover{
top:0;
left:0;
text-indent:-9999px;
outline:none;
border: none;
}
to:
#top .logo a, #top .logo a:hover{
top:0;
left:0;
/*text-indent:-9999px;*/
outline:none;
border: none;
}