The following CSS is being used to add IE specific styles. But GoogleChrome is downloading them in the network console as well. Why?
<html>
<head>
<!--[if IE]>
<link href="/Style-ie.css" rel="stylesheet" type="text/css" />
<![endif]-->
<style type="text/css">
/* if IE 10 */
@import url('/Style-ie.css') screen and (-ms-high-contrast: active), (-ms-high-contrast: none);
</style>
</head>
</html>