﻿/*
	- 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)
		
*/

@import "fonts/fontFaces.css";

html 
{
	/*margin-bottom:1px;*/
}

body, html 
{
	height: 100% !important;
	padding: 0;
	font-family: 'Barlow Condensed',Helvetica,Arial,Lucida,sans-serif;
	font-size: 15px;
}

/* Die Barlow Condensed Schriftart ist schlecht lesbar. Innerhalb von wichtigen Sachen verwenden wir daher unseren Standard */
.x-panel-body
{
	font-family: Tahoma, 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: auto;
	overflow-y: auto;
	/*margin-bottom:1px;*/
}

form
{
	height: 0;
	margin: 0;
	padding: 0;
}

.page_margins
{
	position: relative !important;
	height: auto !important;
	min-height: 100%;
	width: 1006px;
	margin: auto;

	box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}

.wide-screen .page_margins
{
	min-width: 955px;
	width: 96%;
	max-width: 2010px; /* ist idealerweise abhängig von den Spalten in der Tabelle zu machen */
}

* html .page_margins
{
	height:100% !important;
}

.page
{
	padding: 0 0px 80px 0px; /* 80 = 60 für footer + 20px Abstand */
}

#header 
{
	position: relative;
	height: 270px;
	overflow:hidden;
}

.header-top
{
	height: 120px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 40px;
}

.header-top-claim
{
	font-size: 34px;
	color: #757575;
}

.header-middle
{
	height: 90px;
	background: #004b78;
	font-size: 30px;
	color: white;
	padding-left: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#main 
{
	clear: both;
	padding: 0 10px;
}

#col1
{
	float: left;
	width: 226px;
}

#col1_content
{
	position: relative;
	border-top: 2px solid white;
	padding: 0px 0px 0px 0px;
	
	text-align: left;
}

#col2
{
	margin-left: 226px;
	position: relative!important;
	zoom: 1;
}

#col2_content
{
	padding: 35px 20px 10px 35px;
	text-align: left;
	/*font-family: "", Tahoma, Arial, Sans-Serif;*/
	line-height: 18px;
}

.error_page #col2_content{
	color:#990000;
}

.user_info
{
	position: absolute;
	right: 3px;
	top: 6px;
	font-family: Arial;
	font-size: 11px;
}

#footer
{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;

	font-size: 18px;

	width: 1006px;
	margin: auto;

	position: relative !important;
	height: 60px;
	margin-top: -60px;
	box-sizing: border-box;
	padding-left: 20px;

	clear: both;
	
	background: #FBBE00;
}

.wide-screen #footer
{
	width: 1006px;
	width: 96%;
	max-width: 2010px; /* ist idealerweise abhängig von den Spalten in der Tabelle zu machen */
}

#footer a
{
	color: black;
	text-decoration: none;
}

#footer a:hover
{
	text-decoration: underline;
}

.clearfix {
	display:block;
}

/*********************************/

.page_heading
{
	font-size: 26px;
	margin-bottom: 20px;
	color: #757575;
}

/*********************************/

.navi_main
{
	display: flex;
	align-items: stretch;
	justify-content: center;
	height: 60px;
	background:#FFE07F; 
	font-size: 22px;
	color: #505050;
}
		
.navi_main .tab_wrap 
{
	cursor: pointer;
	border-right: 3px solid white;
	min-width: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.navi_main .tab_wrap:first-child
{
	border-left: 3px solid white;
}

.navi_main .tab_inner_left
{
	display: none;
}

.navi_main .tab_inner_right
{
}

.navi_main .tab_inner_right span 
{
}

.navi_main .active
{
	cursor: default;
}

.navi_main .active
{
	background: #fbbe00;
	font-weight: 600;
}

.navi_main .hover
{
	background: #fbbe00;
}

.navi_main .disabled
{
	cursor:default;
}

.navi_main .disabled
{
	color: #999;
}

/********************************************************/
.navi_sub li.spacer
{
}

.navi_sub ul
{
	list-style: none;
	margin-top: 20px;
	background-color: none;
	padding:0;
}

.navi_sub li
{
	font-size: 18px;
	font-weight: normal;
	border-bottom: 1px solid #CCCCCC;
}

.navi_sub li a, .navi_sub li a:visited
{
	color: #505050;
	text-decoration: none;
	background-color: none;
	display: block;
	padding-left: 2px;
	padding-top: 8px;
	padding-bottom: 8px;
	height: 20px;
	line-height: 20px;
}

.navi_sub li a:hover
{
	color: #005C93;
}

.navi_sub li.active a, .navi_sub li.active a:visited
{
	color: #005C93;
	font-weight: 500;
}

.navi_sub li.disabled a, .navi_sub li.disabled a:visited
{
	color:#444;
	cursor:default;
}

.navi_sub li.disabled a:hover
{
	color: #999;
	text-decoration:none;
}

/********************************************************/

/* normale Listen */
ul.normal
{
	list-style: square outside;
}
ul.normal li
{
	margin: 3px 0 0 15px;
}

/* normale Listen */
ol.normal
{
	margin-top: 10px;
	list-style: decimal outside;
}
ol.normal li
{
	margin: 10px 0 5px 15px;
}

/* 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: #005C93;
	text-decoration:none;
}
a.normal:hover, .normalLinks a:hover
{ 
	text-decoration: underline;
}

/* normaler Text in Tabellen*/
table.normal td {
	font-size:12px;
}

/* Sonstiges */
.info_box {
	margin-top:35px;
	padding:15px;
	font-size:12px;
	line-height:150%;
	border:1px solid #B5B8C8;
	background:#F6F6F6;
}

/********************************************************/
/*   Ext-JS Anpassungen									*/
/********************************************************/

.x-panel-header
{
	background: #7b7b7b none;
	color: white;
}

.x-form-item .x-form-field
{
	font-size: 12px;
}