/* Tabs
----------------------------------*/
.ui-tabs { clear: both; zoom: 1; border: 0 !important; }

.ui-tabs .ui-tabs-nav { clear: both; list-style: none; position: relative; padding: 0; font-size: 12px; line-height: 16px; font-weight: bold; }
.ui-tabs .ui-tabs-nav:after { display: block; clear: both; content: " "; }

.ui-tabs .ui-tabs-nav li { position: relative; float: left; display: inline; border-width: 1px 1px 0 1px; border-style: solid; margin: 0 5px 0 0; padding: 0; }
.ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none; text-align: center; white-space: nowrap; outline: 0; padding: 5px 10px; font-weight: bold; }

.ui-tabs .ui-tabs-nav li.ui-tabs-selected { }
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: default; text-decoration: none; }

.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel { clear: both; display: block; border-style: solid; border-width: 1px 1px 1px 1px; padding: 15px; background: none; /*overflow: hidden; */}
.ui-tabs .ui-tabs-hide { display: none !important; }


/* Additional IE specific bug fixes... */
* html .ui-tabs-nav { /* auto clear, @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html .ui-tabs-nav { /* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}
* html .ui-tabs-panel {
    width: 99.95% !important;
}