/*

Tabs - important styles to ensure accessibility in print

*/
@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;
    }
}
@media print {
    .anchors {
        display: none;
    }
}

/*

Tabs - not important for accessibility, just for the look of it...

*/
.anchors {
    list-style: none;
    margin: 0 0 0 0;
    padding: 0 0 1px;
    font-size: 12px;
    border-bottom: 1px #aaa solid;
 
}
.anchors:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.anchors li {
    float: left;
    margin: 0 1px 0 0;
   padding-right: 4px;
  background: transparent url(/images/sub_tab_off.gif) top left no-repeat;
  width: 65px;
      text-align: center;

}
.anchors a {
    display: block;
    position: relative;
    border-bottom: 0;
    z-index: 2;
    padding: 4px;
    color: #fff;
    text-decoration: none;
      padding-bottom: 8px;
      
   width: 59px;
      text-align: center;
}
.anchors .tabs-selected a {
    padding-bottom: 20px;
    font-weight: normal;
    color: #000;
    background: transparent url(/images/sub_tab_on.gif) top left no-repeat;
}
.anchors .tabs-selected a, .anchors a:hover, .anchors a:focus, .anchors a:active 
{      
    padding-bottom: 8px;
}

.anchors .tabs-selected a:link, .anchors .tabs-selected a:visited,
.anchors .tabs-disabled a:link, .anchors .tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;    
}
.anchors a:hover, .anchors a:focus, .anchors a:active {
    cursor: pointer;
}
.anchors .tabs-disabled {
    opacity: .4;
}
.anchors .tabs-disabled a:hover, .anchors .tabs-disabled a:focus, .anchors .tabs-disabled a:active {
    background: transparent;
    padding-bottom: 10px;
   
}
.fragment {
    padding: 20px 20px 20px 5px;
}

.fragment h3 {
    margin-bottom: 14px;
}


.anchors .tabs-selected .tabs-loading {
    padding-left: 20px;
    background-image: url(loading.gif);
    background-position: 4px 50%;
    background-repeat: no-repeat;
    
}




