@charset "utf-8";
/* CSS Document */

/* 1 - ELEMENTS */

/* 1.1 - Grundelemente */

* {
   margin:0;
   padding:0;
   border:none;
}

body {
	background-color:#CCCCCC;
	font-family: Arial, Sans-Serif;
	font-size:1em;
}

/* 1.2 - Textelemente */

h1 {
	font-size:1.4em;
	color:#CC0000;
	}

h2 {
	font-size:1.1em;
	color:#CC0000;
	}

h3 {
	margin:0.2em 0;
	font-size:1em;
	font-weight:bold;
	}

h4 {
	margin:0.2em 0;
	font-size:0.9em;
	font-weight:bold;
	}

p {
	font-size:1em;
	}

/* 1.3 - Menüs */

ul {
	list-style:none;
	}

ul li {
	text-indent:none;
	}

/* 1.3.1 - Menü horizontal */

#menue_header ul li {
	float:right;
	}

#menue_header ul li a {
	display:block;
	font-size:0.8em;
	font-weight:normal;
	color:#000;
	text-decoration:none;
}

#menue_hor ul {
	margin:0 0 0 196px;
	}

#menue_hor ul li {
	float:left;
	}

#menue_hor ul li a {
	display:block;
	margin:0 16px 0 0;
	font-size:1em;
	font-weight:bold;
	color:#fff;
	text-decoration:none;
}

/* 1.3.2 - Menü vertikal */

#menue_vert ul li {
	width:164px;
	}

#menue_vert ul li a {
	display:block;
	margin:0 0 0.3em 0;
	font-size:1em;
	font-weight:normal;
	color:#000;
	text-decoration:none;
	border-bottom:1px solid #CCCCCC;
}

/* 1.4 - Formulare */

form fieldset {
	border:2px solid #888;
	padding:6px;
	font-size:0.9em;
	}

fieldset + fieldset {
	border:2px solid #888;
	margin:6px 0 0 0;
	padding:6px;
	font-size:0.9em;
	}

form fieldset legend {
	font-size:1em;
	font-weight:bold;
	}

form fieldset p{
	margin:0.5em 6px;
	}

form fieldset input[type="submit"] {
	height:2em;
	width:100px;
	background-color:#bbb;
	border:2px solid #666;
	margin:12px;
	font-weight:bold;
	cursor:pointer;
	}

form input[type="hidden"] {
	display:none;
	}

/* 1.4.1 - Formular Login */

form.login{
	width:300px;
	background-color:#9CF;
	margin:auto;
	padding:6px 12px 12px 12px;
	text-align:right;
	}
	
form.login fieldset label {
	height:1.5em;
	width:100px;
	margin:1em 12px;
	text-align:right;
	}

form.login fieldset input[type="text"], form.login fieldset input[type="password"] {
	height:1.5em;
	width:94px;
	background-color:#fff;
	border:1px solid #666;
	padding:0 3px;
	margin:1em 12px;
	}

/* 1.4.2 - Formular Abfrage */

form.abfrage{
	width:762px;
	background-color:#9CF;
	padding:6px 12px 12px 12px;
	}
	
form.abfrage fieldset ul {
	height:6em;
	}

form.abfrage fieldset div {
	display:block;
	float:none;
	width:750px;
	}

form.abfrage fieldset ul li {
	display:block;
	float:left;
	margin:0.5em 6px;
	}

form.abfrage fieldset li label {
	display:block;
	height:2.5em;
	width:150px;
	font-weight:bold;
	text-align:left;
	}

form.abfrage fieldset li h4 {
	font-weight:bold;
	text-align:left;
	}

form.abfrage fieldset li p{
	margin:0;
	}

form.abfrage fieldset li select {
	height:1.5em;
	width:150px;
	background-color:#fff;
	border:1px solid #666;
	}

/*
form.abfrage fieldset li input[type="text"] {
	height:1.5em;
	width:240px;
	background-color:#fff;
	border:1px solid #666;
	padding:0 3px;
	}
*/

form.abfrage fieldset li input[type="text"], form.abfrage fieldset li input[type="password"] {
	height:1.3em;
	background-color:#fff;
	border:1px solid #666;
	padding:0 3px;
	}
	
/* 1.5 - Tabellen */

form.abfrage fieldset table {
	margin:6px 0;
	width:744px;
	font-size:0.9em;
	border-spacing:6px;
	caption-side:top;
	}

form.abfrage fieldset table + table {
	margin:0 0 6px;
	width:744px;
	font-size:0.9em;
	border-spacing:6px;
	caption-side:top;
	}

form.abfrage fieldset table caption {
	margin:0 0 0 6px;
	text-align:left;
	font-weight:bold;
	}

form.abfrage fieldset table tr td label {
	display:block;
	float:left;
	height:1.5em;
	width:150px;
	margin:0 12px 0 0;
	font-weight:bold;
	text-align:left;
	}

form.abfrage fieldset table tr td input[type="text"] {
	height:1.5em;
	background-color:#fff;
	border:1px solid #666;
	padding:0 0 0 3px;
	}

form.abfrage fieldset table tr td select {
	height:1.5em;
	background-color:#fff;
	border:1px solid #666;
	padding:0;
	}

/* 2 - CLASSES */

/* 2.2 - Textelemente */

.Testmodus {
	display:block;
	background-color:#FF0;
	text-align:center;
	font-style:oblique;
	font-weight:bold;
	color:#F00;
	}
	
.error {
	color:#f00;
	font-weight:bold;
	}

.unsichtbar {
	display:none;
	}

/* 2.4 - Formulare */

form.abfrage input.button {
	height:2em;
	width:100px;
	background-color:#bbb;
	border:2px solid #666;
	margin:12px;
	font-weight:bold;
	cursor:pointer;
	}

form.abfrage input.OK {
	height:2.5em;
	width:2.5em;
	background-color:#bbb;
	border:1px solid #666;
	border-width:1px 2px 2px 1px; /* Licht links oben */
	border-color:#CCCCCC #666 #666 #CCCCCC; /* erhaben */
	font-size:0.9em;
	text-align:center;
	cursor:pointer;
	}

form.abfrage input.Btn {
	height:2.5em;
	width:5em;
	border:1px solid #666;
	border-width:1px 2px 2px 1px; /* Licht links oben */
	border-color:#CCCCCC #666 #666 #CCCCCC; /* erhaben */
	font-size:0.9em;
	text-align:center;
	cursor:pointer;
	}

form.abfrage input.UPD {
	background-color:#0A0;
	}

form.abfrage input.DEL {
	background-color:#C33;
	}

form.abfrage input.OK:active {
	border-color:#666 #CCCCCC #CCCCCC #666; /* gedrückt */
	}

form.abfrage fieldset li .Beschreibung {
	height:1.5em;
	width:240px;
	}

form.abfrage fieldset li .w_tight {width:15px;}
form.abfrage fieldset li .w_tiny {width:35px;}
form.abfrage fieldset li .w_narrow {width:70px;}
form.abfrage fieldset li .w_middle {width:100px;}
form.abfrage fieldset li .w_normal {width:135px;}
form.abfrage fieldset li .w_standard {width:150px;}
form.abfrage fieldset li .w_extra {width:175px;}
form.abfrage fieldset li .w_broad {width:238px;}

/* Datumsfelder allgemein */

form.abfrage fieldset select.Monat, form.abfrage fieldset select.Tag {
	width:3em;
	text-align:right;
	}
form.abfrage fieldset select.Jahr {
	width:4em;
	text-align:right;
	}

/* 2.3 - Menüs */

/* 2.3.0 - Menü Header */

#menue_header ul li a:hover {
	color:#CC0000;
	}

/* 2.3.1 - Menü horizontal */

#menue_hor ul li a:hover {
	color:#000;
}

#menue_hor ul li a.active {
	text-decoration:underline;
}

/* 2.3.2 - Menü vertikal */

#menue_vert ul li a:hover {
	color:#CC0000;
}

#menue_vert ul li a.active {
	font-weight:bold;
}

/* 2.5 - Tabellen */

/* Textausrichtung in Tabellenzelle */

.left {text-align:left;}
.right {text-align:right;}
.center {text-align:center;}

/* Höhe der Tabellenzelle */

.h_10 {min-height:1em}
.h_15 {min-height:1.5em}
.h_20 {min-height:2em}
.h_25 {min-height:2.5em}
.h_30 {min-height:3em}
.h_35 {min-height:3.5em}
.h_40 {min-height:4em}
.h_45 {min-height:4.5em}
.h_50 {min-height:5em}

/* Breite der Tabellenzelle */
/* Vielfaches der für Tabellen benutzten Textgröße (aktuell 0.9em) */
.w01 {width:0.9em;}
.w02 {width:1.8em;}
.w03 {width:2.7em;}
.w04 {width:3.6em;}
.w05 {width:4.5em;}
.w06 {width:5.4em;}
.w07 {width:6.3em;}
.w08 {width:7.2em;}
.w09 {width:8.1em;}
.w10 {width:9em;}
.w11 {width:9.9em;}
.w12 {width:10.8em;}
.w13 {width:11.7em;}
.w14 {width:12.6em;}
.w15 {width:13.5em;}
.w16 {width:14.4em;}
.w17 {width:15.3em;}
.w18 {width:16.2em;}
.w19 {width:17.1em;}
.w20 {width:18em;}

/* Fontgröße optional */

.txt09 {font-size:0.9em;}

form.abfrage fieldset table.small {
	margin:6px 0;
	width:744px;
	font-size:0.8em;
	border-spacing:6px;
	caption-side:top;
	}

form.abfrage fieldset table.user {
	margin:6px 0;
	width:744px;
	font-size:0.8em;
	border-spacing:6px;
	caption-side:top;
	}

form.abfrage fieldset table .label {font-weight:bold;}

form.abfrage fieldset table tr td input[type="text"].versteckt {
	display:block;
	height:1.5em;
	width:468px;
	background-color:#fff;
	border:1px solid #666;
	padding:0 3px;
	}

form.abfrage fieldset table.small tr td.Paraphe {
	font-size:0.7em;
	}

form.abfrage fieldset table.small tr td.linie {
	border-top:1px solid #666;
	}

/* experimentell
tr.zebra:nth-child(4n+1) {
	background-color:#03C;
	}
	
form.abfrage fieldset table.small tr td {
	border:1px solid #666;
	}
   experimentell */


/* Datumsfelder Tabelle */

form.abfrage fieldset table.small select.Monat, form.abfrage fieldset table.small select.Tag {
	height:2em;
	width:3.4em;
	font-size:0.9em;
	text-align:right;
	}
form.abfrage fieldset table.small select.Jahr {
	height:2em;
	width:4.4em;
	font-size:0.9em;
	text-align:right;
	}
form.abfrage fieldset table.small tr td.Datum {
	width:11.3em;
	white-space:nowrap;
	}

/*
.grdstk {
	margin: 24px 20px 0 20px;
	}

.obj {
	margin: 18px 20px 0 30px;
	}

.sth {
	margin: 14px 20px 0 40px;
	}

.me {
	margin: 12px 20px 0 50px;
	}
*/

/* 3 - ID'S */

#wrapper_all {
	background-color:#fff;
	width:1006px;
	margin:17px auto;
	overflow:hidden;
	}

#wrapper_main {
	width:1006px;
	overflow:hidden;
	}

#header {
	width:974px;
	height:72px;
	margin:8px 16px;
	background-image:url(../images/OBB+IM_60.jpg);
	background-position:right;
	background-repeat:no-repeat;
	}
	
#title_header {
	float:left;
	width:360px;
	}

#menue_header {
	float:right;
	width:180px;
	height:18px;
	margin:54px 180px 0 0;
	}
	
#menue_hor {
	width:974px;
	height:1em;
	padding:0.5em 16px;
	background-color:#999999;
	}


#menue_vert {
	float:left;
	width:164px;
	padding:8px 16px;
	}

#main {
	width:786px;
	padding:12px;
	overflow:hidden;
	}

#footer {
	width:974px;
	margin:8px 16px;
	}
	
#error_box {
	text-align:center;
	}

