/* 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;
    }
}

div#content #tab-container { margin-top: 20px; }

div#content h2 { margin: 0; }

/* Skin */
div#content .tabs-nav,
div#content .tabs-nav-glossar {
    list-style: none;
    margin: 0 0 30px 10px;
    padding: 0;
}
div#content .tabs-nav:after,
div#content .tabs-nav-glossar:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
div#content .tabs-nav li {
    float: left;
    margin: 1px 2px 0 0;
    min-width: 84px; /* be nice to Opera */
	background: none;
	padding: 0;
}
div#content .tabs-nav-glossar li {
    float: left;
    margin: 1px 1px 0 0;
    min-width: 20px; /* be nice to Opera */
	background: none;
	padding: 0;
}
div#content .tabs-nav a, div#content .tabs-nav a span {
    display: block;
    padding: 0 48px; /*  bei 3 Tabs */
}
div#content .tabs-nav-glossar a, div#content .tabs-nav-glossar a span {
    display: block;
    padding: 0 4px;
    line-height: 20px;
}
div#content .tabs-nav a,
div#content .tabs-nav-glossar a {
    position: relative;
    z-index: 2;
    padding-left: 0;
    color: #900;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */
    border: 1px solid #FFE6BF;
}
div#content .tabs-nav .tabs-selected a,
div#content .tabs-nav-glossar .tabs-selected a {
    color: #900;
    background: #FFE6BF;
}
div#content .tabs-nav .tabs-selected a, div#content .tabs-nav a:hover, div#content .tabs-nav a:focus, div#content .tabs-nav a:active,
div#content .tabs-nav-glossar .tabs-selected a, div#content .tabs-nav-glossar a:hover, div#content .tabs-nav-glossar a:focus, div#content .tabs-nav-glossar a:active {
    color: #900;
    background: #FFE6BF;
    outline: 0; /* prevent dotted border in Firefox */
}
div#content .tabs-nav a,
div#content .tabs-nav-glossar a {
}
div#content .tabs-nav a span {
    width: 64px; /* IE 6 treats width as min-width */
    min-width: 64px;
    height: 18px; /* IE 6 treats height as min-height */
    min-height: 18px;
    padding-right: 0;
    text-decoration: none;
}
div#content .tabs-nav-glossar a span {
    width: 10px; /* IE 6 treats width as min-width */
    min-width: 10px;
    height: 18px; /* IE 6 treats height as min-height */
    min-height: 18px;
    padding-right: 0;
    text-decoration: none;
}
*>div#content .tabs-nav a span,
div#content .tabs-nav-glossar a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
div#content .tabs-nav .tabs-selected a:link, div#content .tabs-nav .tabs-selected a:visited,
div#content .tabs-nav-glossar .tabs-selected a:link, div#content .tabs-nav-glossar .tabs-selected a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
div#content .tabs-nav a:hover, div#content .tabs-nav a:focus, div#content .tabs-nav a:active,
div#content .tabs-nav-glossar a:hover, div#content .tabs-nav-glossar a:focus, div#content .tabs-nav-glossar a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}
div#content .tabs-container {
    padding: 0;
    /* background: #fff; declare background color for container to avoid distorted fonts in IE while fading */
}
div#content .tabs-loading em {
    padding: 0 0 0 20px;
    background: url(../img/loading-tabs.gif) no-repeat 0 50%;
}