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

/*#container h2  { display: none; }*/

}

/* Hide useless elements in print layouts... */
@media print {
#container .tabs-container {
		border: 1px solid #fff; }
	
/*#container h2  { display: block; }*/

.tabs-nav {	display: none; }
}

/* Skin */
.tabs-nav { /* Karteireiter-Streifen mit allen Reitern */
    list-style: none;
    margin: 0;
    padding: 0;
		background: none;
}

.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tabs-nav li { /* einzelne Karteireiter */
    float: left;
    margin: 0 2px 0 0;
		padding: 0;
    list-style: none;
		background: none;
}
.tabs-nav a { /* Links der einzelnen Karteireiter */
    color: #666;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    padding: 5px 1px;
    width: 10em;
    display: block;
    position: relative;
    top: 1px;
    z-index: 2;
		background: #f4f4f4;
		border: 1px solid #ccc;
		border-bottom: none;
}
.tabs-nav .tabs-selected a { /* der jeweils aktive Karteireiter */
    color: #333;
		padding-top: 6px;				/* ??? */
    border: 1px solid #999;
		border-bottom: none;
		background: #fff;
}
.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active { /* Aktiver Karteireiter und Hover über inaktive */
	color: #333;
  outline: 0; /* @ Firefox, switch off dotted border */
}
.tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active {
	background: #ccc;
}
.tabs-nav .tabs-selected a:link, .tabs-nav .tabs-selected a:visited,
.tabs-nav .tabs-disabled a:link, .tabs-nav .tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}
.tabs-nav .tabs-disabled {
    opacity: .4;
}
.tabs-container { /* Rahmen um den Container */
		border: 1px solid #999 ;
    padding: 5px;
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
}
/* Uncomment this if you want a little spinner to be shown next to the tab title while an Ajax tab gets loaded*/
.tabs-loading span {
    padding: 0 0 0 20px;
    background: url(loading_micro.gif) no-repeat 0 50%;
}