Nav shifted right

I have my nav centered using

margin:0 auto;

However, for some reason it is shifted to the right? What’s going on??

http://devb.bambl.clients.blinkss.com/

It’s the default browser padding on the UL. Fix it thus:

.menu {
  padding-left: 0;
}

Thx! Fixed it.