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

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

/* Skin */
#container-4 { /* the whole container with all elements of the tabbed section */
        margin: 0px!important;
        height:auto!important; /* defines a static height to the tabed section and avoids "jumping" - part 1 of 2 */
}

.ui-tabs-panel { /* the main content-section of the tabbed area NOT the tabs themselfes */
        width:625px!important;top:-30px;position:relative;
}

/* the "fragments" which are the single tab areas. each tab is defined by a fragment.
you can add as many as you want following the scheme "#fragment-x" */
#fragment-1, #fragment-2, #fragment-3, #fragment-4, #fragment-5, #fragment-6, #fragment-7, #fragment-8, #fragment-9 {
        height:auto!important; /* defines a static height to the tabed section and avoids "jumping" - part 2 of 2 */
}

.ui-tabs-nav { /* the whole area of the tabs navigation above the tabbed-content */
    list-style:none!important;
    margin:0px!important;
    padding:0px!important;
}

.ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block!important;
    clear: both!important;
    content: " "!important;
}
.ui-tabs-nav li {
    float: left!important;
    margin:0px!important;
    min-width: 120px!important; /* be nice to Opera */
    height:35px;
}
.ui-tabs-nav .ui-tabs {
    display:block!important;
    padding-left:5px!important;
    padding-right:5px!important;
    padding-top:9px!important;
    padding-bottom:8px!important;
    margin:0px 0 0 0!important; /* position: relative makes opacity fail for disabled tab in IE */
    position: relative!important;
    top:1px!important;
    color: #000!important;
    font-weight:bold!important;
    line-height:1.2!important;
    text-align:center!important;
    text-decoration:none!important;
    white-space:nowrap!important; /* required in IE 6 */
    outline:0!important; /* prevent dotted border in Firefox */
    font-size:1.2em;
}

.ui-tabs-nav #reiter2:hover, .ui-tabs-nav #reiter3:hover, .ui-tabs-nav #reiter4:hover, .ui-tabs-nav #reiter5:hover{ /* here´s to define the hover effect of the tabs */
    background:#FFBA00!important;
    color:#0066CC!important;
}


.ui-tabs-selected .ui-tabs { /* the effects of the currently selected tab */
    color:#0066CC!important; background:#fff;
}

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

.ui-tabs-nav .ui-tabs a:hover,
.ui-tabs-nav .ui-tabs a:active,
.ui-tabs-nav .ui-tabs-unselect .ui-tabs a:hover,
.ui-tabs-nav .ui-tabs-unselect .ui-tabs a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer!important;
        background-color:#333!important;
        color:#fff!important;
}

.ui-tabs-disabled {
    opacity: .4!important;

}

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

.reiter{top:-47px;position:relative;left:-12px;height:31px;}

.ui-tabs-selected #reiter1{background: url(../images/first.gif) no-repeat 0px -1px #fff;z-index:9999;}
.ui-tabs-nav #reiter1:hover{background: url(../images/first_hover.gif) no-repeat 0px -1px #FFBA00;}
#reiter2, #reiter3, #reiter4{border-left: 2px solid #fff;  }
#reiter5{border-left: 2px solid #fff;  }