﻿/* this stylesheet is for the tabstrip */

.tabStrip {
    width: 100%;
    min-width: 750px;
    padding: 3px 0;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 5px;
    border-bottom: 1px solid gray;
    list-style-type: none;
    text-align: left;
    cursor: pointer;
}

.tabStrip li {
    display: inline;
    margin: 0;
}

.tabStrip li a {
    text-decoration: none;
    padding: 3px 7px;
    margin-right: 0px;
    margin-left: 5px;
    border: 1px solid gray;
    border-bottom: none;
    background-color: #ffffff;
    color: #56514D;
}

.tabStrip li a:visited { color: #000000; }

.tabStrip li a:hover {
    background-color: #eeeeee;
    color: black;
}

.tabStrip li a:active { color: black; }

.tabStripSelected a {
    /*selected tab effect*/
    position: relative;
    top: 1px;
    padding-top: 4px;
    background-color: #ffffff;
}


.tabStrip .tabDisabled {
    color: Gray;
    background-color: #ffffff;
    cursor: pointer;
}

.tabStrip .tabDisabled a {
    color: Gray;
    background-color: #ffffff;
    cursor: pointer;
}

.tabStrip .tabDisabled a:hover {
    color: Gray;
    background-color: #ffffff;
    cursor: pointer;
}

.tabStrip .tabDisabled a:active {
    color: Gray;
    background-color: #ffffff;
    cursor: pointer;
}

.tabStrip .tabDisabled a:visited {
    color: Gray;
    background-color: #ffffff;
    cursor: pointer;
}