Ajax not loading css.

Ajax not loading css.

I have a div and its id is container and I am trying to load the .html file into it but once it is loaded it does not get the formatting from the css file
 
.html file
<table class="main" cellspacing="0" cellpadding="0">
<tr><td>cell 1</td><td>cell 2</td></tr>
<tr><td>cell 1</td><td>cell 2</td></tr>
</table>
 
$("#container").load("load.html");
 
.css file
table.main td:nth-child(2) {
width: 220px;
}