As described here, conditional_styles does not work with Omega for Drupal. Here's what to add in your template.php file for this to work:
<?php
function YOUR_THEME_NAME_preprocess_html(&$variables) {
// Add conditional stylesheets for IE
drupal_add_css(path_to_theme() . '/css/ie.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 8', '!IE' => FALSE), 'preprocess' => FALSE));
?>