Wordpress CSS issue in FF

hey everyone. I am stumped here. Take a look at this in FF and in every other browser:

Grupo Fortuna | We are a company dedicated to helping select businesses create and maximize their marketing and sales efforts to the Spanish speaking consumer market in North America

FF pushes my <div id=“main”> way off to the right. Any ideas??? I have been wrestling with this for a while and cannot get it to render correctly only in FF.

Best thing would be to remove float: left from #slider:

#slider {
  background: url("images/slider-bg.jpg") repeat-x scroll 0 0 transparent;
  clear: both;
  [COLOR="Red"] /* float: left;  hasta la vista, baby! */[/COLOR]
  width: 100%;
}

Or you could ass clear: both to #main_float, but I don’t see the point of float on slider anyway.

Worked amazing…many thanks!