/*

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;
    padding: 0 0 1px;
}
.anchors:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.anchors li {
    float: left;
    margin: 0 2px 0 0;
}
.anchors a {
font-family: "Trebuchet MS";
font-size: 1.2em;
    display: block;
    position: relative;
    top: 1px;
    border: 1px solid #ccc;
   
    z-index: 2;
    padding: 4px 15px 8px;
    color: white;
    text-decoration: none;
}
.anchors .tabs-selected a {
    padding-bottom: 8px;
    font-weight: bold;  
border-bottom: none;
}
.anchors .tabs-selected a, .anchors a:hover, .anchors a:focus, .anchors a:active,
.fragment {  padding-bottom: 9px;}

.fragment{margin-top: -0px; }

.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; border-bottom: 0px;
}
.tabs-selected a:link{border-top: 1px solid #ccc; }
.anchors a:focus, .anchors a:active  {
    cursor: pointer; border-bottom: 0px;
}
.anchors a:hover{border-bottom: 1px solid #ccc; padding-bottom: 8px; background-color: #333;}
.tabs-selected a:hover{background-color: black;}

.anchors .tabs-disabled {
    opacity: .4;
}
.anchors .tabs-disabled a:hover, .anchors .tabs-disabled a:focus, .anchors .tabs-disabled a:active {
    background: transparent;
}
.fragment {
    padding: 0 0px;
}
.anchors .tabs-selected .tabs-loading {
    padding-left: 25px;
    background-image: url(http://brasseriesixty6.com/css/loading.gif);
    background-position: 4px 50%;
    background-repeat: no-repeat;
}