/* 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 */
#tab_container .tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0 0 0 4px;
}
#tab_container ul.tabs-nav {
	margin: 0;
    padding: 0;
}
#tab_container ul.tabs-nav li {
	background: none;
    padding-left: 0;
    margin-bottom: 0;
}
#tab_container .tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
#tab_container .tabs-nav li {
    float: left;
    margin: 0 0 0 1px;
    min-width: 50x; /* be nice to Opera */
    font-size: 1.1em;
    font-family: "Trebuchet MS", Verdana, Tahoma, sans-serif;
}
#tab_container .tabs-nav a, #tab_container .tabs-nav a span {
    display: block;
    padding: 0 10px;
    background: url(/images/site/tab.png) no-repeat;
    height: 30px;
    width: auto;
}
#tab_container .tabs-nav a {
    margin: 1px 0 0; /* position: relative makes opacity fail for disabled tab in IE */
    padding-left: 0;
    color: #27537a;
    font-weight: bold;
    line-height: 1.2em;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */
    outline: 0;  /*prevent dotted border in Firefox */
}
#tab_container .tabs-nav a {
    color: #a0a0a0;
}
#tab_container .tabs-nav .tabs-selected a {
    position: relative;
    top: 1px;
    z-index: 2;
    color: #595959;
}
#tab_container .tabs-nav a span {
    _width: 50px; /* IE 6 treats width as min-width */
    min-width: 50px;
    height: 22px; /* IE 6 treats height as min-height */
    min-height: 22px;
    padding-top: 8px;
    padding-right: 0;
}
*>.tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
#tab_container .tabs-nav .tabs-selected a span { padding-bottom: 1px; }
#tab_container .tabs-nav .tabs-selected a, 
#tab_container .tabs-nav a:hover, 
#tab_container .tabs-nav a:focus, 
#tab_container .tabs-nav a:active { background-position: 100% -150px !important; }

#tab_container .tabs-nav a, 
#tab_container .tabs-nav .tabs-disabled a:hover, 
#tab_container .tabs-nav .tabs-disabled a:focus, 
#tab_container .tabs-nav .tabs-disabled a:active { background-position: 100% -100px; }

#tab_container .tabs-nav .tabs-selected a span, 
#tab_container .tabs-nav a:hover span, 
#tab_container .tabs-nav a:focus span, 
#tab_container .tabs-nav a:active span { background-position: 0 -50px; }

#tab_container .tabs-nav a span, 
#tab_container .tabs-nav .tabs-disabled a:hover span, 
#tab_container .tabs-nav .tabs-disabled a:focus span, 
#tab_container .tabs-nav .tabs-disabled a:active span { background-position: 0 0; }

#tab_container .tabs-nav .tabs-selected a:link, 
#tab_container .tabs-nav .tabs-selected a:visited, 
#tab_container .tabs-nav .tabs-disabled a:link, 
#tab_container .tabs-nav .tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */ cursor: text; }
#tab_container .tabs-nav a:hover, 
#tab_container .tabs-nav a:focus, 
#tab_container .tabs-nav a:active, 
#tab_container .tabs-nav .tabs-unselect a:hover, 
#tab_container .tabs-nav .tabs-unselect a:focus, 
#tab_container .tabs-nav .tabs-unselect a:active { /* @ Opera, we need to be explicit again here now... */ cursor: pointer; }
#tab_container .tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}
#tab_container .tabs-nav {
    border-bottom: 1px solid #97a5b0;
    padding: 15px 10px;
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
}
#tab_container .tabs-loading em {
    padding: 0 0 0 20px;
    background: url(/images/site/loading.gif) no-repeat 0 50%;
}
/* Additional IE specific bug fixes... */
* html #tab_container .tabs-nav { /* auto clear, @ IE 6 & IE 7 Quirks Mode */ display: inline-block; }
*:first-child+html #tab_container .tabs-nav { /* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */ display: inline-block; }
div.tabs-container { padding: 0 15px; }
