﻿/*
	- Seitenlayout ist Header, Footer und Inhalt 2 spaltig. Die linke Spalte wird bei Bedarf per BG-Image visuell in voller Höhe dargestellt
	- Das Browserfenster wird immer in der Höhe ausgefüllt und scrollt bei Bedarf, wenn mehr
	  Inhalt da ist, als ins Fenster passt
	- Die Hauptnavi sind Tabs, die sich nach dem sliding-door-Prinzip dynamisch an den Inhalt anpassen,
	  die bei Bedarf leicht überlappen und wo der aktive Tab immer hervorsteht.
	- Unternavi ist eine Auflistung im linken Bereich

	Hinweise zur Layout Breite:
		- aus .page_margins width und .page padding links u.rechts ergibt sich die verfügbare Breite
		  (auch im #footer muss die Breite eingetragen werden)
		- der Inhalt der rechten Spalte muss 740px breit sein, der Inhalt der linken Spalte 200px
			-> um das zu erreichen, kann man mit #col1 width und #col2 margin-left spielen (beide Werte müssen immer gleich sein)
		
*/

@font-face {
	font-family: 'Corpid';
	font-style: normal;
	font-weight: 400;
	src: url("fonts/CorpidC1_500_Regular.eot?#iefix") format("embedded-opentype"),
		 url("fonts/CorpidC1_500_Regular.woff") format("woff"),
		 url("fonts/CorpidC1_500_Regular.ttf") format("truetype"),
		 url("fonts/CorpidC1_500_Regular.svg#CorpidC1_500_Regular") format("svg");
}

@font-face {
	font-family: 'Corpid';
	font-style: normal;
	font-weight: 700;
	src: url("fonts/CorpidC1_700_Bold.ttf") format("truetype");
	src: url("fonts/CorpidC1_700_Bold.eot?#iefix") format("embedded-opentype"),
		 url("fonts/CorpidC1_700_Bold.woff") format("woff"),
		 url("fonts/CorpidC1_700_Bold.ttf") format("truetype"),
		 url("fonts/CorpidC1_700_Bold.svg#CorpidC1_700_Bold") format("svg");
}


html {
	/*margin-bottom:1px;*/
}
body, html {
	height:100% !important;
	background-color:white;
	padding:0;
	font-family:Tahoma, Arial, Sans-Serif;
	font-size:12px;
}

body {
	/* der Scrollbalken kommt jetzt von einem DIV direkt im Body, 
	das alle anderen Elemente einschließt, 
	außer der Ext-Maske, die damit über den Scrollbalken geht */
	overflow:hidden; 
}

body div#scroller {
	zoom:1;
	position:relative !important;
	width:100%;
	height:100%;
	overflow-x:hidden;
	overflow-y:scroll;
	margin-bottom:1px;
}

.bg_body_top {
	position:absolute;
	width:100%;
	height:111px;
	background:#FFFFFF;
}

form {
	height:0;
	margin:0;
	padding:0;
}

.page_margins {
	position:relative !important;
	height:auto !important;
	min-height:100%;
	width:955px;
	margin: auto;
}

.wide-screen .page_margins
{
	min-width: 955px;
	width: 96%;
	max-width: 1860px; /* ist idealerweise abhängig von den Spalten in der Tabelle zu machen */
}

* html .page_margins {
	height:100% !important;
}

.page {
	padding:0 0px 350px 12px; /*350 = 320 für footer + 30px Abstand*/
	zoom:1;
}

#header {
	position:relative;
	height:172px;
	overflow:hidden;
}

.header-fake-top-navi
{
	position: absolute;
	top: 82px;
	height: 42px;
	color: #0069b9;
	font-family: Corpid, Arial;
	font-weight: bold;
	font-size: 18px;
}

.header-fake-top-navi::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -10px;
    border-style: solid;
    border-color: transparent transparent #e6e6e6 transparent;
    border-width: 10px;
}

.header-claim
{
	position: absolute;
	top: 46px;
	right: 0px;
	font-family: Corpid, Arial;
	font-size: 18px;
}

#main {
	clear:both;
}

#col1 {
	float:left;
	width:226px;
	margin-bottom:15px;
}
#col1_content {
	position:relative;
	padding:15px 11px 0px 0px;
	text-align:left;
}

#col2 {
	margin-left:225px;
	position:relative!important;
	zoom:1;
}
#col2_content {
	padding: 40px 10px 10px 30px;
	text-align:left;
	font-family: Arial, Sans-Serif;
	font-size:12px;
	line-height:18px;
}

.error_page #col2_content{
	color:#990000;
}

.user_info {
	position:absolute;
	right:0px;
	top:4px;
	font-family: Arial;
	font-size:12px;
}

#footer {
	position:relative !important;
	height:320px;
	margin-top:-320px;
	clear:both;
	background-color:#E6E6E6;
	border-top:1px solid #EEEEEE;
}

#footer_content {
	position:relative;
	width:955px;
	/*weil margin:auto im IE ohne Doktype nicht geht und text-align:center
      sich ungewollt vererbt, tun wir folgendes:*/
	left:50%;
	margin-left:-478px;
	color:black;
	font-size:11px;
	padding:0px 10px;
	text-align:left;
}
#footer_content td {
	font-family:Corpid, Arial;
	line-height: 20px;
	font-size: 14px;
	text-align:center;
}

#footer a {
	color: #666666;
	font-size: 14px;
}

.footer-leftside {
    margin-top: 35px;
    width: 340px;
}
.footer-leftside p {
    color: #666666;
    font-size: 14px;
}
.footer-leftside p a {
    color: #666666;
    font-size: 12px;
    text-decoration: underline;
}
.footer-headline-service {
    font-family: 'SG', Tahoma, Arial;
    font-size: 14px;
    line-height: 14px;
}
.service-spaceTopFirst {
    margin-top: 39px !important;
}
.service-spaceTopSecond {
    margin-top: 21px !important;
}

.clearfix {
	display:block;
}

/*********************************/

.page_heading {
	font-family: Corpid, Arial, Sans-Serif;
	font-size: 30px;
	line-height: 32px;
	padding-bottom: 25px;
	color: #828282;
}

/*********************************/

.navi_main {
	overflow:hidden;
}
	
.navi_main .tab_wrap {
	float:left;
	position:relative;
	/*height:55px;*/
	/*padding:10px 15px 0 5px;*/
	margin-right: 40px; /*für Überlappung kann man negativen Wert angeben, z.B.: -10px;*/
	overflow:visible;
	cursor:pointer;
}
.navi_main .tab_inner_left {
	/*background:url('images/...') repeat right top;*/
	/*height:55px;*/
	width: 0px;
	float: left;
}
.navi_main .tab_inner_right {
	/*background:url('images/...') repeat right top;*/
	/*height:55px;*/
	float:left;
	padding: 3px 0px 3px 0px;
	font-family: Corpid, Arial, sans-serif;
	font-weight: normal;
	font-size: 18px;
	color: #000;
}
.navi_main .tab_inner_right span {
	zoom:1;
/*	filter:alpha(opacity=80);
	-moz-opacity:0.85;
	opacity:0.85;*/
}

.navi_main .hover .tab_inner_right {
	color:#0069b9;
}

.navi_main .active {
	z-index:1000;
	cursor:default;
}
.navi_main .active .tab_inner_left {
	/*background:url('images/...') repeat right top;*/
}
.navi_main .active .tab_inner_right {
	/*background:url('images/...') repeat right top;*/
	color:#0069b9;
	/*padding-top:9px;*/
}

.navi_main .disabled {
	cursor:default;
}
.navi_main .disabled .tab_inner_right {
	color:#656565;
}

/********************************************************/

.navi_sub li.spacer {
}

.navi_sub ul {
	list-style:none;
	margin-top:20px;
	background-color:none;
	padding:0;
}
.navi_sub li {
	/*margin:8px 0 0 15px;*/
	font-size: 16px;
	font-weight: normal;
	border-bottom: 1px solid #CCCCCC;
}
.navi_sub li a, .navi_sub li a:visited {
	color: #777;
	text-decoration: none;
	background-color: none;
	display: block;
	/*border-bottom:1px solid #fff;*/
	padding-left: 2px;
	padding-top: 8px;
	padding-bottom: 8px;
	height: 20px;
	line-height: 20px;
	font-family: Corpid, Arial, Sans-Serif;
}
.navi_sub li a:hover {
	color:#0069b9;
	/*background-color:#0c4da2;	*/
}
.navi_sub li.active a, .navi_sub li.active a:visited {
	color:#0069b9;
	/*background-color:#0c4da2;*/
}
.navi_sub li.disabled a, .navi_sub li.disabled a:visited {
	color:#444;
	cursor:default;
}
.navi_sub li.disabled a:hover {
	color:#656565;
	text-decoration:none;
}
/********************************************************/

/* normale Listen */
ul.normal {
	list-style:square outside;
}
ul.normal li {
	margin:3px 0 0 15px;
}

/* normale Listen */
ol.normal {
	list-style:decimal outside;
}
ol.normal li {
	margin:3px 0 0 35px;
}

/* normale Links */
a.normal, a.normal:hover, a.normal:visited, a.normal:active,
.normalLinks a, .normalLinks a:hover, .normalLinks a:visited, .normalLinks a:active {
	color:#006CD7;
	text-decoration:none;
}
a.normal:hover, .normalLinks a:hover { 
	text-decoration:underline;
}

/*bullet*/
a.bullet, .user_info a {
	/*background:url('images/...') no-repeat scroll 0 1px transparent;*/
	font-family: Arial;
	margin-right:10px;
	padding-left:14px;
}

/* normaler Text in Tabellen*/
table.normal td {
	font-family: Arial;
	font-size:12px;
}

/* Sonstiges */
.info_box {
	margin-top:15px;
	margin-left:5px;
	margin-bottom:10px;
	padding:15px;
	font-size:12px;
	line-height:150%;
	border:1px solid #B5B8C8;
	background:#F6F6F6;
}

.NaviMenuMain-empty .info_box {
	margin-top: 76px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.NaviMenuMain-empty .logo-swg {
	position: absolute;
	top: -57px;
	width: 125px;
}

/********************************************************/
/* Formular-Wrap
/********************************************************/

.fieldset-wrap .x-fieldset {
	background-color:transparent;
	/*border-width:0px;*/
	border-color: #999;
	margin-bottom: 15px;
}

.fieldset-wrap .x-fieldset-body {
	background-color:transparent;
	border-width:0px;
	margin-top:10px;
}

.fieldset-wrap .x-panel-body {
	background-color:transparent!important;
}

.fieldset-wrap legend {
	/*padding-left:30px;
	padding-top:5px;*/
}

.ext-ie .fieldset-wrap legend {
	/*padding-left:20px;
	padding-top:5px;*/
}

.password-fieldset legend, .ext-ie .password-fieldset legend {
	padding-left:0px!important;
}
.password-fieldset {
	border-width:1px!important;
}

.fieldset-wrap {
	margin-bottom:10px;
}


/********************************************************/
/*   Ext-JS Anpassungen									*/
/********************************************************/

.x-panel-header {
	background: #0069B9;
	color:#fff;
}

/* Form-Items in 12px und Schwarz, wegen Usability*/
.x-form-item,
.x-form-item .x-form-field,
.x-combo-list-item {
	font-size:12px;
	padding-top:0px;
}
.x-form-textarea {
	padding-top:2px!important;
}
.x-form-item {
	color:Black;
}
