/* 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 */
.tabs-nav {
    list-style: none;
	margin: 0px;
	padding: 0px;
	padding-top: 20px;
	font-size: 12px;
	width: 310px;
	float: left;
	position: relative;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}


.tabs-nav li {
	line-height: 22px;
	height: 30px;
	width: 220px;
	background: transparent url(../../images/unterseiten_li_bottom.gif) bottom left no-repeat;
}
.tabs-nav a, .tabs-nav a span {
    display: block;
    padding: 0 10px;
    background: url(tab.png) no-repeat;
}
.tabs-nav a {
    white-space: nowrap; /* required in IE 6 */    
}
.tabs-nav .tabs-selected a {
    color: #00407c;
}
.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
    background-position: 100% -150px;
    outline: 0; /* prevent dotted border in Firefox */
}
.tabs-nav a, .tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active {
    background-position: 100% -100px;
}

.tabs-nav .tabs-selected a span {
    padding-top: 7px;
}
.tabs-nav .tabs-selected a span, .tabs-nav a:hover span, .tabs-nav a:focus span, .tabs-nav a:active span {
    background-position: 0 -50px;
}
.tabs-nav a span, .tabs-nav .tabs-disabled a:hover span, .tabs-nav .tabs-disabled a:focus span, .tabs-nav .tabs-disabled a:active span {
    background-position: 0 0;
}

.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}

.tabs-container {
    background: transparent; /* declare background color for container to avoid distorted fonts in IE while fading */
}
.tabs-loading em {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}


/* listen in den tabs */
.tabs-container ul {
	margin-left: 24px;
	list-style-type: square;
	}

	.tabs-nav li a {padding: 2px 0px 2px 2px; height: 24px; display: block; color: #00407c; text-decoration: none;}
	.tabs-nav li a:hover {padding: 2px 0px 2px 2px; height: 24px; display: block; color: #00407c; text-decoration: none; background-color: #f5f6f8;}
	.tabs-nav li.tabs-selected {font-weight: bold; color: #00407c;}
	
div.tabscontent {
	float: left;
	position: relative;
	width: 610px;
	padding-top: 20px;
	}

