try this;
#mainlink ul{
list-style-type: none;
margin: 0px;
padding:0px;
}
#mainlink ul li{
float:left;
margin: 0px;
padding:0px;
}
I've not looked at the layout more, you look like you're absolute positioning so change your x and y. this tidies the menu anyway.
You're also using way too many divs, give classes and i'ds to HTML elements, you don't HAVE to use divs, eg. the UL for the menu, why not give the id="mainlink" to that and lose the div?