/*
 * jQuery UI Tabs 1.8.15
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Tabs#theming
*/
.ui-tabs {
    position: relative;
    padding: .2em;
    zoom: 1;
} /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */

.ui-tabs .ui-tabs-nav {
    margin: 0;
    padding: .4em .4em 0;
    height: 30px;
    background-color: #F8F8F8;
}

    .ui-tabs .ui-tabs-nav li {
        z-index: 5000;
        list-style: none;
        float: left;
        position: relative;
        top: 1px;
        margin: 0 .4em 1px 0;
        padding: 0;
        white-space: nowrap;
        /*        background-color: #668A70;*/
        background-color: #002c63;
    }

.ui-tabs .ui-tabs-nav li a {
    float: left;
    padding: .7em 2em;
    text-decoration: none;
    font-family: Arial;
    font-size: 11px;
    font-weight: bold;
    color: #FFFFFF;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
    border-top: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    border-bottom: 1px solid #FFFFFF;
    background-color: #FFFFFF;
}

    .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 {
        /*    color: #000000;*/
        color: #002c63;
        cursor: text;
    }

.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... */

/* Tem hack para IE */
.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    border: 1px solid #CCCCCC;
    padding: 1em 1.4em;
    background-color: #FFFFFF;
}

.ui-tabs .ui-tabs-panel div {
    display: block
}

.ui-tabs .ui-tabs-hide {
    display: none !important;
}
