/* Copy this section below to your client's tabpane.css to tweak styles */
/* be sure to grab the import line below and un-comment it for your client */
@import url(/style/shared/tabpane.css); 

.tabs a span {
                float: none;
                display: block;
                background: transparent url(/static/img/color_tabs_right.gif) no-repeat right top;
                padding: 4px 9px 2px 6px;
                color: white;
                    
        }

.tabs a, .tabs a:visited  { /* regular tabs */
        background-color: #333333;
        text-decoration: none;
        color: white;
}

.tabs a.tab-active, .tabs a.tab-active:visited { /* currently selected tab */
        background-color: #333399;
        text-decoration: none;
        color: white;
}

.tabs a#confex { /* Confex-only tab */
        background-color: red;
        text-decoration: none;
        color: white;
}

.tabs a#confex:hover #DF8B8B { /* Confex tab on mouse-over */ color: black;}


.tabs a:hover, .tabs a#confex:hover { /* tabs on mouse-over */
        background-color: #0001CC;
        text-decoration: none;
        color: white;
}

.tabsline { /* bar below tabs */
        background-color: #333399;
        
}



/* end tabpanes */