I've been having the "CSS hacks" vs "Conditional Comments" argument enough times lately that I thought I'd throw this question out to the Stack Overflow community.
<!--[if IE]>
<link type="text/css" rel="stylesheet" href="ie-specific.css" />
<![endif]-->
The main argument against using IE Conditional Comments seems to be that you're adding additional HTTP requests on each pageload, thus slowing down the display of your page. What I haven't been able to find are any real-world metrics either proving or disproving this statement.
Leaving aside the argument of maintenance of multiple stylesheets vs. one stylesheet (though that's a valid discussion in and of itself), has anyone here done any testing to determine just how much of a slowdown using Conditional Comments gives you, or be able to point me in the direction of any stats anyone else has collected?