/*

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

/*

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

*/

#tabContainer{
	background:#F1F1EB;
   border:0px white solid;
   width:100%;
   white-space:nowrap;
}

.tabAnchors {
   background:url(../pics/tab_bg.gif) repeat-x right #F1F1EB;
   border:0px red solid;
   list-style: none;
   margin: 0;
   padding: 0;
}

.tabAnchors:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}

.tabAnchors li {
   border:0px red solid;
   height:20px;
   text-align:center;
   float: left;
}

.tabAnchors li.tabs{
   width:18.6%;
}

.tabAnchors li a {
   font-weight:bold;
   display: block;
   position: relative;
   top: 0px;
   border-top: 1px solid white;
   border-bottom: 0;
   z-index: 2;
   padding: 2px 9px 1px;
   color: #000;
   text-decoration: none;
}

.tabAnchors .tabs-selected a, .tabAnchors a:hover, .tabAnchors a:focus, .tabAnchors a:active {
   color:#9b0000;
}

.tabAnchors .tabs-selected a{
   margin-top:1px!important;
   border-top:0;
}


.tabAnchors .tabs-selected a:link, .tabAnchors .tabs-selected a:visited,
.tabAnchors .tabs-disabled a:link, .tabAnchors .tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}

.tabAnchors a:hover, .tabAnchors a:focus, .tabAnchors a:active {
    cursor: pointer;
}

.tabAnchors .tabs-disabled {
    opacity: .4;
    color:silver;
}

.tabAnchors .tabs-disabled a:hover, .tabAnchors .tabs-disabled a:focus, .tabAnchors .tabs-disabled a:active {
    background: transparent;
}

/*
.tabAnchors .tabs-selected .tabs-loading {
    background: #e6e6dd;
    background-position: 4px 50%;
    background-repeat: no-repeat;
}*/


/* bildmaterial: */

.tabAnchors li .leftTabImg{
   padding:0;
   margin:0;
   float:left;
}

.tabAnchors .tabs{
   background:url(../pics/tab_right.gif) right no-repeat #F1F1EB;
}

.tabAnchors .tabs-selected{
   background:url(../pics/tab_active_right.gif) no-repeat right #e6e6dd!important;
}

.rightTabImg{
   float:right;
}