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