Try To use conditional stylesheets
The tool of choice for fighting IE problems is the conditional stylesheet. IE provides comment tags, supported all the way up to the current IE 8 to target specific versions, as well as greater-than/less-than stuff for targeting multiple versions at once.
here is a example of conditional stylesheets
<!--[if IE]>
<link rel='stylesheet' type='text/css' href='ie.css' />
<![endif]-->
Insert This before the </head> tag