/* See license.txt for terms of usage */

.tabView {
    width: 100%;
}

.tabViewCol {
}

.tabViewBody {
}

.tabBar {
    position: relative;
    padding-left: 14px;
}

.tab {
    position: relative;
    top: -3px;
    margin-top: 10px;
    padding: 4px 8px;
    border: 1px solid transparent;
    border-bottom: none;
    color: #565656;
    font-size: 17px;
    font-weight: bold;
    font-family: Lucida Grande, Tahoma, sans-serif;
    white-space: nowrap;
    line-height:normal;
}

.tab:hover {
    cursor: pointer;
    border-color: #D7D7D7;
    -moz-border-radius: 4px 4px 0 0;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    border-radius: 4px 4px 0 0;
    text-decoration: none;
}

.tab[selected="true"],
.tab .selected {
    cursor: default !important;
    border-color: #D7D7D7;
    background-color: #FFFFFF;
    -moz-border-radius: 4px 4px 0 0;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    border-radius: 4px 4px 0 0;
}

.tabBody {
    display: none;
    margin: 0;
    border-top: 1px solid #D7D7D7;
    background-color: #FFFFFF;
    overflow: auto;
    z-index: -1;
    font-size: 13px;
}

.tabBody[selected="true"],
.tabBody .selected {
    display: block;
}

