/*!
 * jQuery UI Tabs 1.9.2
 * http://jqueryui.com
 *
 * Copyright 2012 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Tabs#theming
 
Colors:
        inactive tab: 49accb


*/
.ui-tabs {
    position: relative; /* padding: .2em; */  zoom: 1; ;
}

some_nowhitespace {
    nowhitespace: afterproperty;
}

/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") _NO__DOTCOMMA__AFTER__*/

.ui-tabs .ui-tabs-nav {
    margin: 0;
    padding: 0.2em 2.2em 1em;
}

.ui-tabs .ui-tabs-nav li {
        left: 50px;
        list-style: none;
        float: left;
        position: relative;
        top: 0;
        margin: 1px .2em 0 0;
        border-bottom: 0;
        padding: 0;
        white-space: nowrap;
        -moz-border-radius-: 5px / 11px;
        -webkit-border-radius: 5px / 11px;
        border-radius: 5px / 11px; /* border radius */
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box; /* prevents bg color from leaking outside the border */
        background-color: #49ACCB; /* layer fill content */
}

.ui-tabs .ui-tabs-nav li a {
    float: left;
    padding: .5em 1em;
    text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    /*margin-right: 25px;*/
    margin-bottom: -1px;
    padding-bottom: 1px;
    background-color: #8ECDE9;
    /*#49ACCB; /* layer fill content */
    
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
    cursor: text
}

.ui-tabs .ui-tabs-nav li a,
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
    cursor: pointer
}

some_nowhitespace {
    nowhitespace: afterproperty
}

/* 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 {
    display: block;
    nowhitespace: afterproperty;
    border-width: 0;
    /* padding: 1em 1.4em; */  background: none; ;
}


.ui-tabs-active a { 
   background-color: #8ECde9; 
   color: #000; 
   font-weight: bold; 
   padding: 2px 8px 1px; 
   /*border-bottom: 1px solid #fff; */
   /*border-top: 3px solid #fabd23; */
   /*border-left: 1px solid #fabd23; */
   /*border-right: 1px solid #fabd23; */
   /*margin-bottom: -1px; */
   overflow: visible;
}

