﻿/* ------------------------------- *\
    $Tabs
\* ------------------------------- */
.tab {
    margin: 20px 0;
    overflow: hidden;
}

.tabs {
    clear: both; /* Disabled clear both to prevent tabs from wrapping below side bar and 2ndary content */
    margin: 20px 0;
}

.ui-tabs .ui-tabs-hide {
    display: none;
}

ul.tab-nav {
    font-family: Interstate, Calibri,Trebuchet MS,Arial,sans-serif;
    height: 26px;
    margin: 0 0 0 10px;
}

    ul.tab-nav li {
        background: none repeat scroll 0 0 transparent;
        float: left;
        list-style: none outside none;
        margin: 0;
        padding: 0;
    }

        ul.tab-nav li a {
            -webkit-border-top-right-radius: 4px;
            -moz-border-radius-topright: 4px;
            border-top-right-radius: 4px;
            background-color: #fff;
            border: 1px solid #aaa;
            border-color: #aaa;
            color: #707070;
            display: block;
            float: left;
            font-size: 11px /* 12px */;
            font-weight: 100 /* bold */;
            height: 24px;
            line-height: 24px;
            margin-right: 3px;
            padding: 0 3px;
            position: relative;
            text-decoration: none;
            top: 1px;
            -webkit-transition: all .3s;
            -moz-transition: all .3s;
            -o-transition: all .3s;
        }

            ul.tab-nav li a:hover {
                background-color: #c75b12;
                color: #fff;
            }

        ul.tab-nav li.ui-tabs-selected a {
            background: none repeat scroll 0 0 #e2e2e2;
            border-color: #bbb #ccc #e2e2e2 #bbb;
            border-bottom-width: 2px;
            /*color: #C75B12; changed for accessibility - 10.15.14 - gmertens*/
            color: #2f2f2f;
            -webkit-box-shadow: inset 0 1px 1px #e0e0e0;
            -moz-box-shadow: inset 0 1px 1px #e0e0e0;
            box-shadow: inset 0 1px 1px #e0e0e0;
        }

.tab-pane {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    /*background: none repeat scroll 0 0 #f1f1f1;  changed for accessibility against burnt orange - 10.14.14 - gmertens*/
    background: none repeat scroll 0 0 #f6f6f6;
    border: 1px solid #aaa;
    border-color: #aaa #ccc #ccc #aaa;
    padding: 10px 20px 20px;
    -webkit-box-shadow: inset 0 0 40px 3px #dadada;
    -moz-box-shadow: inset 0 0 40px 3px #dadada;
    box-shadow: inset 0 0 40px 3px #dadada;
	font-size: 13px;
}

.js .tabs.vanish {
    display: block;
}
