/* 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... */
    .ui-tabs-hide {
        display: none;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .ui-tabs-nav, .ui-tabs-paging {
        display: none;
    }
}

/* Skin */
ul.ui-tabs-nav {    margin: 0;    padding: 0 0 0 6px;    white-space: nowrap;   }.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */	display: block;	clear: both;	content: " ";}.ui-tabs-nav li {	display: inline;    list-style: none;
}.ui-tabs-nav a {	position: relative;	display: inline-block;    float:left;
    
	font-weight: bold;
    text-decoration: none;	outline: 0;
	color: #999;
		border-top: 2px solid white;	border-left: 2px solid white;	border-right: 2px solid white;		padding-top: 4px;    padding-left: 6px;    padding-right: 6px;	padding-bottom: 2px;	background-color: white;}

ul.small.ui-tabs-nav {
	margin-top: 3px;
}
ul.small.ui-tabs-nav a {
	padding-left: 3px;
	padding-right: 3px;
}.ui-tabs-nav a span {	color: #999;}.ui-tabs-selected a, .ui-tabs-nav a:hover {
	border-color: green !important;
	top: 2px;
	padding-top: 2px;
	padding-bottom: 4px;
}

.ui-tabs-selected a span {
	color: #333;
}.ui-tabs-panel {    border-top: 2px solid #00683D; /* Linie */    padding-top: 8px; /* Abstand unter der Linie */    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
}/* paging */
.ui-tabs-paging {
	width:100%;
	text-align: right;
	margin-top:8px;
	margin-bottom:8px;
	padding-bottom:8px;
	padding-top:4px;
	border-top: 2px solid #00683D;
	font-weight: bold;
	color: #999;
}

.ui-tabs-paging img {
	border: 0px;
	margin: 0px;
	padding:0px;
	vertical-align:text-bottom;
	padding-bottom: 2px;
	}

.ui-tabs-paging a {
	text-decoration: none;
}

.ui-tabs-paging a:hover {
	color: #00683D;
}

#tabs .ui-tabs-nav span.regerror {
	font-weight: bold;
	color: red;
}

/* Additional IE specific bug fixes... */
* html .ui-tabs-nav { /* auto clear, @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html .ui-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;
}

