@CHARSET "UTF-8";

/* --------------------------------------------------- *
 * --- Styles für dynamische Tabs (HTMLTabbedForm) --- *
 * --------------------------------------------------- */

.tabbedForm {
    width: 100%;
    
}

.tabbedFormHeader {
    width: 100%;
    height: 21px;
    background-image: url(../images/tabs/tabdiv_bg.png);
}

/* aktive Tabs */
div.tabActive {
    height: 21px;
    float: left;
    background-image: url(../images/tabs/tab_bg_active.png);
    cursor: pointer;
    text-align: center;
}
div.tabActiveLeft {
    width: 3px;
    height: 21px;
    float: left;
    background-image: url(../images/tabs/tab_bg_active_left.png);
    cursor: pointer;
    text-align: center;
}
div.tabActiveRight {
    margin-right: 1px;
    width: 3px;
    height: 21px;
    float: left;
    background-image: url(../images/tabs/tab_bg_active_right.png);
    cursor: pointer;
    text-align: center;
}
div.tabActive:hover, div.tabActiveLeft, div.tabActiveRight {
    background-position: 0px -21px;
}
div.tabActive div {
    margin: 4px 6px 0px 6px;
    cursor: pointer;
}
div.tabActive div img {
    margin: 0px 4px 0px 0px;
    height: 16px;
    vertical-align: bottom;
}

/* inaktive Tabs */
div.tabInactive {
    height: 21px;
    float: left;
    background-image: url(../images/tabs/tab_bg.png);
    cursor: pointer;
    text-align: center;
}
div.tabInactiveLeft {
    width: 3px;
    height: 21px;
    float: left;
    background-image: url(../images/tabs/tab_bg_left.png);
    cursor: pointer;
    text-align: center;
}
div.tabInactiveRight {
    margin-right: 1px;
    width: 3px;
    height: 21px;
    float: left;
    background-image: url(../images/tabs/tab_bg_right.png);
    cursor: pointer;
    text-align: center;
}
div.tabInactive:hover, div.tabInactiveLeft, div.tabInactiveRight {
    background-position: 0px -42px;
}
div.tabInactive div {
    margin: 5px 6px 0px 6px;
    font-size: 11px;
    cursor: pointer;
}
div.tabInactive div img {
    margin: 0px 4px 0px 0px;
    height: 13px;
    vertical-align: bottom;
}

/* disabled Tabs */
div.tabDisabled {
    height: 21px;
    float: left;
    background-image: url(../images/tabs/tab_bg.png);
    cursor: default;
    text-align: center;
    opacity: .5;
    filter:progid:DXImageTransform.Microsoft.Alpha(style=0, opacity=50);
}
div.tabDisabledLeft {
    width: 3px;
    height: 21px;
    float: left;
    background-image: url(../images/tabs/tab_bg_left.png);
    cursor: default;
    text-align: center;
    opacity: .5;
    filter:progid:DXImageTransform.Microsoft.Alpha(style=0, opacity=50);
}
div.tabDisabledRight {
    margin-right: 1px;
    width: 3px;
    height: 21px;
    float: left;
    background-image: url(../images/tabs/tab_bg_right.png);
    cursor: default;
    text-align: center;
    opacity: .5;
    filter:progid:DXImageTransform.Microsoft.Alpha(style=0, opacity=50);
}
div.tabDisabled div {
    margin: 5px 6px 0px 6px;
    cursor: default;
    font-size: 11px;
    color: #666666;
}
div.tabDisabled div img {
    margin: 0px 4px 0px 0px;
    height: 13px;
    vertical-align: bottom;
}

/* Contentbereich von Tabs */
.tabContent {
    display: none;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 30px;
	padding-bottom: 30px;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: #999999;
}

/* IE-Hack für die Tab-Breite */

* html .tabContent {
	width: 100%;
}

/* -------------------------------------------- *
 * --- Styles für statische Tabs (HTMLTabs) --- *
 * -------------------------------------------- */

div.staticTabContentContainer {
    padding: 20px 0px 0px 0px;
    display:block;
    width: 100%;
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: #999999;
}

div.staticTabContent {
    margin: 0px 20px 20px 20px;
}
 
.staticTabs {
	background: url(../images/dynamictabs/tab_background.png) repeat-x;
    height: 29px;
    margin: 10px 15px 10px 0;
}

/* aktive Tabs (enabled) */
a.staticTabActive {
    padding: 0px 2px 0px 2px;
    height: 21px;
    float: left;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}
/*
a.staticTabActive:hover {
    background-position: 0px -21px;
}
*/
a.staticTabActive span {
    cursor: default;
    line-height: 35px;
    float: left;
    height: 29px;
    cursor: pointer;
}
a.staticTabActive span.left {
    width: 6px;
    background: url(../images/dynamictabs/tab_active_left.png) no-repeat;
}
a.staticTabActive span.middle {
    padding: 0 5px 0 5px;
    background: url(../images/dynamictabs/tab_active_middle.png) repeat-x;
    line-height: 25px;
    color: #393d43;
    font-weight: bold;
}
a.staticTabActive span.right {
    width: 6px;
    background: url(../images/dynamictabs/tab_active_right.png) no-repeat;
}

/* aktive Tabs (disabled) */
div.staticTabActive {
    padding: 0px 2px 2px 0px;
    height: 29px;
    float: left;
    text-align: center;
}
div.staticTabActive span {
    cursor: default;
    line-height: 35px;
    float: left;
    height: 29px;
}
div.staticTabActive span.left {
    width: 6px;
    background: url(../images/dynamictabs/tab_active_left.png) no-repeat;
}
div.staticTabActive span.middle {
    padding: 0 5px 0 5px;
    background: url(../images/dynamictabs/tab_active_middle.png) repeat-x;
    line-height: 25px;
    color: #393d43;
    font-weight: bold;
}
div.staticTabActive span.right {
    width: 6px;
    background: url(../images/dynamictabs/tab_active_right.png) no-repeat;
}
/*
div.staticTabActive div img {
    margin: 0px 4px 0px 0px;
    height: 16px;
    vertical-align: bottom;
}
*/

/* inaktive Tabs (enabled)*/
.staticTabInactive {
    padding: 0px 2px 2px 0px;
    height: 31px;
    float: left;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
/*
a.staticTabInactive:hover {
	background-position: 0px -21px;
}
*/
.staticTabInactive span {
    font-size: 12px;
    line-height: 23px;
    float: left;
    display: block;
    height: 31px;
    font-weight: normal;
    color: #393d43;
}
.staticTabInactive span.left {
    width: 6px;
    background: url(../images/dynamictabs/tab_inactive_left.png) no-repeat;
}
.staticTabInactive span.middle {
	text-decoration: none;
    padding: 0 5px 0 5px;
    background: url(../images/dynamictabs/tab_inactive_middle.png) repeat-x;
}
.staticTabInactive span.right {
    width: 6px;
    background: url(../images/dynamictabs/tab_inactive_right.png) no-repeat;
}
a.staticTabInactive:hover span.left {
    background: url(../images/dynamictabs/tab_inactive_left_hover.png) no-repeat;
}
a.staticTabInactive:hover span.middle {
    background: url(../images/dynamictabs/tab_inactive_middle_hover.png) repeat-x;
}
a.staticTabInactive:hover span.right {
    background: url(../images/dynamictabs/tab_inactive_right_hover.png) no-repeat;
    width: 6px;
}
/*
a.staticTabInactive div img {
    margin: 0px 4px 0px 0px;
    height: 13px;
    vertical-align: bottom;
}
*/
