I see this on occasion. It's the problem with using images for links and trying to confine them... The fix is simple.
In your CSS you have the image selector (img { ..})... Just add display: block;
Code:
img {
border-left: 0px dotted #FFFFFF;
border-right: 0px dotted #FFFFFF;
border-top: 0px dotted #FFFFFF;
border-bottom: 0px dotted #FFFFFF;
text-decoration: none;
background-color: #FFFFFF;
display: block;
}
That should resolve it.