﻿/*
	- 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)
		
*/

html {
	/*margin-bottom:1px;*/
}
body, html {
	height:100% !important;
	background-color:#E6E6E6;
	padding:0;
	font-family:/*Segoe UI, */Tahoma, Arial;
	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;
}

form {
	height:0;
	margin:0;
	padding:0;
}

.page_margins {
	background:#FFFFFF url('images/shadows_margin.gif');
	position:relative !important;
	height:auto !important;
	min-height:100%;
	width:1000px;
	/*weil margin:auto im IE ohne Doktype nicht geht und text-align:center
      sich ungewollt vererbt, tun wir folgendes:*/
	left:50%;
	margin-left:-500px;
}

* html .page_margins {
	height:100% !important;
}

.page {
	padding:0 10px 30px 10px;
	zoom:1;
}

#header {
	position:relative;
	background:transparent url('images/header.jpg') no-repeat top left;
	height:180px;
	overflow:hidden;
}

#main {
	clear:both;
}

#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:240px;
	position:relative!important;
	zoom:1;
}
#col2_content {
	border-top:2px solid white;
	padding:30px 20px 10px 20px;
	text-align:left;
	font-family:Tahoma, Arial, Sans-Serif;
	font-size:12px;
	line-height:18px;
}

.error_page #col2_content{
	color:#990000;
}

.user_info {
	position:absolute;
	right:3px;
	top:1px;
	font-family:Arial;
	font-size:11px;
}

#footer {
	background:transparent url('images/footer.gif') no-repeat center top;
	position:relative !important;
	height:30px;
	margin-top:-30px;
	width:1000px;
	clear:both;
	/*weil margin:auto im IE ohne Doktype nicht geht und text-align:center
      sich ungewollt vererbt, tun wir folgendes:*/
	left:50%;
	margin-left:-500px;
}

#footer_content {
	position:relative;
	color:#999999;
	font-size:11px;
	margin:15px 10px;
	text-align:left;
}
#footer_content td {
	font-family:arial;
	font-size:11px;
	text-align:center;
}

.clearfix {
	display:block;
}

/*********************************/

.page_heading {
	font-size:16px;
	font-weight:bold;
	margin-bottom:15px;
	color:#0065B8;
}

/*********************************/
		
.navi_main .tab_wrap {
	float:left;
	position:relative;
	height:50px;
	font-family:Segoe UI, Arial, Sans-Serif;
	font-size:15px;
	font-weight:bold;
	color:red;
	/*padding:10px 15px 0 5px;*/
	margin-right:0px; /*für Überlappung kann man negativen Wert angeben, z.B.: -10px;*/
	overflow:visible;
	cursor:pointer;*/
}
.navi_main .tab_inner_left {
	background:url('images/inactive_tab_left.gif') no-repeat right top;
	height:50px;
	width:32px;
	float:left;
	
	border-top:3px solid white;
}
.navi_main .tab_inner_right {
	background:url('images/inactive_tab_right.gif') repeat right top;
	height:50px;
	float:left;
	padding:15px 32px 0 3px;
	color:#0C3F97;
	
	border-top:3px solid white;
	border-right:3px solid white;
}
.navi_main .tab_inner_right span {
	zoom:1;
/*	filter:alpha(opacity=80);
	-moz-opacity:0.85;
	opacity:0.85;*/
}

.navi_main .active {
	z-index:1000;
	cursor:default;
}
.navi_main .active .tab_inner_left {
	background:url('images/active_tab_left.gif') no-repeat right top;
}
.navi_main .active .tab_inner_right {
	background:url('images/active_tab_right.gif') repeat right top;
	color:#0C3F97;
	/*padding-top:9px;*/
}

.navi_main .disabled {
	cursor:default;
}
.navi_main .disabled .tab_inner_right {
	color:#656565;
}

/********************************************************/
.navi_sub ul {
	list-style:none;
	font-weight:normal;
	margin-top:10px;
	background-color:#F6F5E0;
	padding:0;
}
.navi_sub li {
	/*margin:8px 0 0 15px;*/
	font-weight:normal;
	border-bottom:1px solid #fff;
}
.navi_sub li a, .navi_sub li a:visited {
	color:#0C3F97;
	text-decoration:none;
	background-color:#E6E5D0;
	display:block;
	/*border-bottom:1px solid #fff;*/
	padding-left:30px;
	padding-top:2px;
	padding-bottom:2px;
	height:20px;
	line-height:20px;
}
.navi_sub li a:hover {
	color:#0C3F97;
	background-color:#FFE57F;	
}
.navi_sub li.active a, .navi_sub li.active a:visited {
	color:#0C3F97;
	background-color:#FFE57F;
}
.navi_sub li.disabled a, .navi_sub li.disabled a:visited {
	color:#656565;
	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:Blue; text-decoration:none;
}
a.normal:hover, .normalLinks a:hover { 
	text-decoration:underline;
}

/* normaler Text in Tabellen*/
table.normal td {
	font-family:/*Segoe UI, */Tahoma, Arial;
	font-size:12px;
}

/* Sonstiges */
.info_box {
	margin-top:35px;
	margin-left:5px;
	padding:15px;
	font-size:12px;
	line-height:150%;
	border:1px solid #B5B8C8;
	background:#F6F6F6;
}

/********************************************************/
/*   Ext-JS Anpassungen									*/
/********************************************************/

.x-panel-header {
	background:#014DA1 none;
	color:White;
}

/* Form-Items in 12px und Schwarz, wegen Usability*/
.x-form-item,
.x-form-item .x-form-field,
.x-combo-list-item {
	font-size:12px;
}
.x-form-item {
	color:Black;
}
