Center navigation

Hey there, thanks very much for the theme and all the great support you provide!

I have what should be a simple question but is perplexing me.

I want to center my navigation on this page:
http://0380637.netsolhost.com/site/

If I drop this in:

#main_nav{
display:inline;
}

I get a ‘navigation’ menu item appear.

Is there a way to center the navigation without this happening?

Thanks!

Whoops,

I meant:

main_nav li{
display:inline;
}

It might require a bit more modification but I personally would try to do something like this.
This is not centering bf definition, but we are adding a margin on the left side for the first menu item to get in centered. You might want to tweak percentage to get the results you are looking for.

#main-nav li:first-child {
    margin-left: 12%;
}