/* Caution! Ensure accessibility in print and other media types... */
@media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .tabs-hide {
        display: none;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .tabs-nav {
        display: none;
    }
}

/* Skin */
.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0 0 0 4px;
    left: 0px !important;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tabs-nav li {
    float: left;
    margin: 0 0 0 3px;
    background: #FFFFFF url(../images/tabBack2.gif) no-repeat left top;
    position: relative;
    height: 40px;
  list-style-type:none !important;
  margin: 0px !important;
}


.tabs-nav a {
    display: block;
    position: relative;
    z-index: 2;
    padding: 15px 15px 11px 15px;
    color: #27537a !important;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background: url(../images/tabBack2.gif) no-repeat right -200px;
}

.tabs-nav li.tabs-selected {
  background-position: left -100px;
}

.tabs-nav .tabs-selected a:link,
.tabs-nav .tabs-selected a:visited {
    cursor: text;
  background-position: right -300px
}

.tabs-nav .tabs-selected a,
.tabs-nav a:hover,
.tabs-nav a:focus,
.tabs-nav a:active {
    outline: 0; /* @ Firefox, switch off dotted border */
    padding-top: 15px;
    color: #000;
    cursor: pointer;
}

.tabs-nav a:hover {
  text-decoration: underline
}



.tabs-container {
    border: 10px solid #DCDCDC;
    padding: 1em 8px;
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
}
