To fix this, you can remove the position: relative
from #top-menu > li
From this code:
#top-menu > li {
position: relative; /* remove this line */
padding: 10px;
cursor: pointer;
}
To this code:
#top-menu > li {
padding: 10px;
cursor: pointer;
}