The problem is that your frames have a width of more than 200 pixels (the fixed width that you defined for their centered, containing div). This will cause their excess width to spill over the right border of the div.
Depending on the full structure of your site, try placing automatic margins directly on frames.
div.center iframe{ display: block; margin-left: auto; margin-right: auto; }
Demo: http://jsfiddle.net/NvfKu/
source share