Grid doesn't display as part of layout in IE9

I have a html page created using Designer (mostly). When displayed in FF, it is fine. In IE9, the grids are displayed as vertical bars. What have I done wrong?

I have attached a zip file with the page source and 2 screen captures. The names in the 2nd tabbar are intentionally blurred. When viewing the page, select “Carrier Rates” on the upper tabbar.
DHTMLX example.zip (46.2 KB)

In your code you have a typo in setting the style to grid’s container:

For example, try to replace

<div id='carr1_inbound' style="width:200px";height:200px"></div>

with

<div id='carr1_inbound' style="width:200px; height:200px"></div>