﻿* {
	font-family:Arial;
	font-variant:normal;
	font-size:12px;
}

body { overflow:scroll; }

*[onclick] {
	cursor: pointer;
}

/* Scrollbar */
::-webkit-scrollbar { /* width */
    width: 1em;
}
::-webkit-scrollbar-track { /* Track */
    background: #D0D0D0; 
}
::-webkit-scrollbar-thumb { /* Handle */
    background: #494949; 
	border-radius: 5px;
	opacity: 0.50;
}
::-webkit-scrollbar-thumb:hover { /* Handle on hover */
	opacity: 1.00;
}

.popup-menu ::-webkit-scrollbar-thumb {
	border-radius: 0px 4px 4px 0px;
}
.popup-menu[anchor=right] ::-webkit-scrollbar-thumb {
	border-radius: 4px 0px 0px 4px;
}

h1 {
	font-size:16px;
	color:black;
	margin-left:3px;
	margin-right:3px;
	background-color: #F0F0F0;
	padding: 2px 4px 2px 4px;
	border-top: double 4px #F5753A;
	border-bottom: double 4px #F5753A;
	font-weight:bold;
}

#big {
	font-size:16px;
}

.big {
	font-size:16px;
}

button:disabled,
.button:disabled,
input.button:disabled {
    opacity: 0.33;
    cursor: no-drop;
}

select,
input[type="button"],
input[type="submit"]
{
	height: 2em;
	padding-left:5px;
	padding-right:5px;
}

input[type="password"],
input[type="text"]
{
	height: 1.5em;
    vertical-align: middle;
}

input[type='checkbox']
{
	width: 15px;
    height:15px;
	margin-right:3px;
	vertical-align:middle;
}

input[type=text]:disabled,
textarea:disabled,
select:disabled {
	background-color: RGBA(235,235,235,1.00);
	cursor: no-drop;
}

*[contenteditable=true] {
	border: solid 1px transparent;
	border-radius: 5px;
}
*[contenteditable=true]:focus ,
*[contenteditable=true]:hover {
	background-color: RGBA(255,255,255,0.75);
	border-color: black;
}

.popup-menu { 
	display: none;
	position: absolute;
	color: black;
	padding: 2px;
	list-style-type: none;
	/* right: 1em; */
	margin-top: -0.5em;
	/* border: 1px solid black; */
	border-radius: 3px;
	box-shadow: rgba(0, 0, 0, 0.25) 5px 5px 10px;
	background-color: white;
	z-index: 50;
}
.popup-menu[anchor=left] {
	border-top-left-radius: 0px;
}
.popup-menu[anchor=right] {
	border-top-right-radius: 0px;
}
.popup-menu li {
	cursor: pointer;
	white-space: nowrap;
	padding: 0.25em 0.75em 0.25em 3.2em;
	text-align:left;
	direction: ltr;
	font-weight: lighter;	
}
.popup-menu[anchor=right] li img {
	margin-right: 0.5em;
	height: 2.0em;
    margin-left: -2.5em;
}

.popup-menu > li.selected,
.popup-menu > li:hover {
	background-color: RGBA(224,224,224,0.50);
}
.popup-menu > li[disabled]:hover,
.popup-menu > li[disabled] {
	cursor: pointer;
	opacity: 0.5;
	background-color: transparent;
	cursor: auto;
}
.popup-menu li.divider:hover, 
.popup-menu li.divider {
	color: transparent;
	display: block;
    border-bottom: solid black 1px;
    margin-bottom: 0.25em;
    margin-top: -0.75em;
	border-radius: 0px;
	padding: 0px;
	background-color: transparent;
	cursor: auto;
}
.popup-menu .popup-menu {
	display: none;
	left: 99%;
	border-radius: 5px;
}
.popup-menu[anchor=right] .popup-menu {
	left: auto;
	right: 99%;
}
.popup-menu li:hover .popup-menu {
	display: block;
	margin-top:-2em;
}
.popup-menu img {
	height: 1.5em;
}
.popup-menu input[type=checkbox] {
    margin-left: -2em;
}  
.withsub .popup-menu{
	max-height: 200px;
	overflow-y: auto;
}
.popup-menu[anchor=right] .withsub .popup-menu{
	direction: rtl;
}
.popup-menu[anchor=right] .withsub{
	padding-left: 1.75em;
}
.popup-menu .withsub:after {
	content: '►';
	margin-left: 0.5em;
	line-height: 1em;
	right: 0em;
	position: absolute;
}
.popup-menu[anchor=right] .withsub:after{
	display: none;
}
.popup-menu[anchor=right] .withsub:before{
	content: '◄';
	margin-right: 0.5em;
	line-height: 1em;
}

.ui-autocomplete {
	max-height: 400px;
	overflow-y: auto;
	/* prevent horizontal scrollbar */
	overflow-x: hidden;
	max-width: 500px;
}

*[disabled] *{
	opacity: 0.75;
}

@media screen { 
	/*
	input[type=radio]:after ,
	input[type=checkbox]:after {
		content: 'x';
		display: inline-block;
		width: 20px;
		color: transparent;
		height: 20px;
		background-size: contain;
		margin-top: -2px;
		margin-left: -4px;
	}
	input[type=radio]:after,
	input[type=checkbox]:after{ 
		background-image: url(../img/left.png); 
	}
	input[type=checkbox]:checked:after { background-image: url(../img/check.png); }
	input[type=radio]:checked:after { background-image: url(../img/radio.png); }

	input.toggle[type=radio],
	input.toggle[type=radio] + *,
	input.toggle[type=radio]:checked + * + * ,
	input.toggle[type=checkbox],
	input.toggle[type=checkbox] + *,
	input.toggle[type=checkbox]:checked + * + * {
		display: none;
	}
	
	input.toggle[type=radio] + * + *,
	input.toggle[type=radio]:checked + * ,
	input.toggle[type=checkbox] + * + *,
	input.toggle[type=checkbox]:checked + * {
		display: inline-block;
	}
	*/
}

navnumber, .navnumber {
	padding: 6px;
	margin:2px;
	text-align:center;
	background-color: #E9E9E9;
	cursor: pointer;
}

navnumber.active {
	background-color: #CECECE;
	cursor: default;
}

b {
	font-size:12px;
}

#unicode{
	font-family:Arial Unicode MS;
	line-height: 1em;
}

body {
	border:0px;
	padding:0px;
    margin: 0px;
	width: 100%;
	overflow-x: hidden;
	behavior: url("../css/ie-hack.htc");
}

body.exportWindow {
	border:0px;
	padding-right:5px;
	white-space: normal;
	behavior: url("../css/ie-hack.htc");
	width:100%;
}

label {
	white-space: nowrap;
}

span.logo {
	z-index:-3;
	position:absolute;
	top: 60px;
	left: 0px;
	width:100%;
	min-width:1240px;
	height:65px;
	background-repeat: no-repeat;
	float:left;
	z-index: 10;
}
span.online.logo{
	background: #494949;
}
span.intranet.logo{
	background: #3db05b;
}
span.local.logo {
	/* width:1240px; */
	background: #FF4040;
}

span.pageheader {
	position:absolute;
	top:5px;
	width:100%;
	min-width:1240px;
	text-align:right;
	line-height: 60px;
	color: white;
	font-weight:bold;
	font-size:20px;
	margin-left: -55px;
	position:fixed;
}

span.page_title {
	font-size: 20px;
	float: right;
	color: white;
	margin-top: 23px;
	font-weight: bold;
	padding-right: 50px;
}

span.local.logo span.page_title:after, span.intranet.logo span.page_title:after {
    transform: rotate(20deg);
    border: solid 2px RGBA(255,255,255,0.75);
    border-radius: 10px;
    border-top-width: 0px;
    border-bottom-width: 0px;
    padding: 5px;
    text-shadow: 0px 0px 10px RGBA(255,255,255,0.75);
    color: RGBA(255,255,255,0.75);
    box-shadow: 0px 0px 10px RGBA(255,255,255,0.75);
    position: absolute;
    margin-left: -2.75em;
    margin-top: -0.75em;
    background: RGBA(0,0,0,0.05);
    font-size: smaller;
}
span.online.logo span.page_title:before {
	content: 'Web-based ';
}
span.local.logo span.page_title:before {
	content: 'Local ';
}
span.local.logo span.page_title:after {
    content: 'DEVELOP';
}
span.intranet.logo span.page_title:before {
	content: 'Intranet ';
}
span.intranet.logo span.page_title:after {
    content: 'INTERNAL';
}

span.version_note {
    float: left;
    color: white;
    margin: 10px 0px 0px 60px;
    font-weight: bold;
}

span.version_note td:first-child {
	padding-right: 0.5em;
}

span.leftframe {
	z-index:50;
	position:fixed;
	top: 130px;
	left: 0px;
	width: 165px;
	height: 100%;
	background: #FFFFFF;
}
span.leftframe span.frame {
	position:fixed;
	top: 0px;
	left: 0px;
	width:55px;
	height:100%;
	background-repeat: no-repeat;
	float:left;
	margin-bottom: 5px;
	border: none;
}
span.online.frame{
	background: #FF0000;
}
span.intranet.frame{
	background: #3db05b;
}
span.local.frame {
	background: #E31210;
}

span.meggerlogo {
	position:fixed;
	top: 690px;
	left: 7px;
	width:200px;
	height:50px;
	float:left;
	margin-bottom: 5px;
}

#messages {
	position: fixed;
	top: 12em;
	right: 1em;
	width: 350px;
	z-index: 1000;
	background-color: transparent;
}

#messages .message {
	border: none;
	border-left: solid 5px;
	border-right: solid 2.5em;
	display: block;
	padding: 1.5em 0em 1.5em 3em;
	background-repeat: no-repeat;
	background-position: 0.5em center;
	background-size: 2em;
	border-radius: 3px;
	box-shadow: 2px 2px 2px RGBA(0,0,0,0.5);
	margin-bottom: 0.5em;
}
#messages .message .text {
	display: inline-block;
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 3em;
	width: 95%;
}
#messages .message[onclick] .text {
	background-image: url(../img/cross.png);
}

#messages  .info	{ color: #228cc4; border-color: #9DD6F6; background-color: #D8EFFDF0; background-image: url(../img/info.png); }
#messages  .success	{ color: #2BAB5C; border-color: #9ED0AF; background-color: #C6E3D1F0; background-image: url(../img/check2.png); }
#messages  .warning	{ color: #606000; border-color: #F6F49D; background-color: #FDFCD8F0; background-image: url(../img/error.png); }
#messages  .debug	{ color: #606060; border-color: #808080; background-color: #A0A0A0F0; background-image: url(../img/administrate.png); }
#messages  .error	{ color: #FF4757; border-color: #FF99A3; background-color: #FFE0E3F0; background-image: url(../img/notice.png); }

span.info{
	background-image: url('../img/viewcomment.png');
	width:35px;
	height:30px;
	background-repeat: no-repeat;
	float:left;
}

span#wait{
	position:absolute;
	z-index:1000;
	top: 320px;
	left: 622px;
	width:100px;
	height:100px;
	border: 1px solid #000000;
	background-image: url('../img/wait.gif');
	background-position:50% 50%;
	background-repeat: no-repeat;
	background-color: #FFFFFF;
}

span.content {
	text-align: left;
	clear: both;
	max-width: 100em;
	margin: 0px auto;
	display: block;
	padding-top: 180px;
}

.breadcrumb{
	position:absolute;
	top: 150px;
	left: calc(50% - 590px);
	font-size: 14px;
}

.breadcrumb a{
	font-size: 14px;
	font-weight: normal !important;
}

.breadcrumb b{
	font-size: 14px !important;	
}

.sidebar {
	position:fixed;
	width:48px;
	height:420px;
	top: 180px;
	left: calc(50% - 660px);
	border: 1px solid #aaaaaa;
	background-color: #F0F0F0;
	transition: width 1s;
	overflow: hidden;
	z-index: 15;	
}

.menuicon{
	height:24px;
	margin-top:-2px;
}

.sidebar:hover {
	width:210px;
}

.menulink span {
	position:absolute;
	width:160px;
    left:60px;
	top:18px;
	transition: color 1s;
	color: rgba(0,0,0,0);
	font-size: 14px;
}

.sidebar:hover .menulink span{
	color: rgba(0,0,0,1);	
}

.menulink, .emptylink {
	height: 4%;
	line-height:14px;
	position:relative;
	padding: 15px 15px 15px 12px;
	margin-bottom: 5px;
}

.menulink:hover {
	background-color: white;
}

.currentmenu {
	background-color: #cc0000;
	height:45px;
	float:left;
	width:8px;
	margin:-14px 0px 0px -15px;
}
	
	/* Menu */
	span#menu {
		position:fixed;
		left: 7px;
		top: 140px;
		width: 141px;
		padding:10px 2px 7px 10px;
		background-color: rgba(255, 255, 255, 0.92);
		border-style:solid;
		border-width:1px;
		float:left;
		display:block;
	}
	ul#menu{
		list-style-type:square;
		margin: 0px;
		padding-left: 20px;
		background-color: #D0D0D0;
		width: 121px;
	}
	/* Reiter */
	.tabmenue {
		position:relative;
		top: -4px;
		padding: 10px;
		display: inline;
	}
	
	.tabmenue li , .tabmenue li.yellow{
		display: inline;
		padding-left: 3px;
	}
			
	.tabmenue li a {
		font-weight: normal;
		font-size: 14px;
		padding: 6px 2em 4px;
		border: 1px solid #000000;
		border-bottom: 0;
		background-color: #D0D0D0;
		box-sizing: border-box;
		border-radius: 5px 5px 0px 0px;
	}
	
	.tabmenue li a:hover {
		padding: 6px 2em 4px;
		border: 1px solid #000000;
		border-bottom: 0;
		background-color: #eeeeee;
	}
	.tabmenue li a.selected  {
		font-weight: bold;
		padding: 6px 2em 4px;
		border: 1px solid #000000;
		border-bottom: 2px solid #FFFFFF;
		background-color: #FFFFFF;
	}
	
	.tabmenue li.yellow a {
		background-color: RGBA(249,209,172,1.00);
		margin-left: 3px;
	}
	.tabmenue li.yellow a:hover {
		background-color: #eeeeee;
	}
	
	.tabmenue li.yellow a.selected, .tabmenue li.yellow a.selected:hover {
		background-color: #FFFFFF;
	}
		
	.tabmenueBody{
		margin: 0px;
        display: block;
		border: 1px solid #aaaaaa;
		min-height: 100px;
	}
	.sidebar + .tabmenueBody{
		padding: 5px;
        width: 99em;
		border: 1px solid #aaaaaa;
    }
	
	.nosidebar + .tabmenueBody{
		padding: 5px;
        width: 99em;
		border: 1px solid #aaaaaa;
    }
	
	/* Fussnoten */
	span#footnote{
		font-size:10px;
		text-align:right;
		padding: 5px 5px 5px 0px;
	}


	/* Allgemeine vereinbareungen für Links */
	a, a:link , a:visited, a:active {
		font-weight:bold;
		color: #000000;
		text-decoration:none;
		border:none;
		margin-top: 2px;
		cursor:pointer;
		padding: 0px;
	}
	
	button,
	.button {
		font-weight:bold;
		color: #000000;
		overflow: visible;
		width: auto;
		text-decoration:none;
		border: 1px solid #808080;
		background-color: #dddddd;
		margin: 2px;
		cursor:pointer;
		padding: 3px;
	}
	button:hover,
	.button:hover{
		font-weight:bold;
		color: #000000;
		text-decoration:none;
		border: 1px solid #808080;
		background-color: #eeeeee;
		cursor:pointer;
	}
	
	div.input > * {
		z-index: 0;
		position: relative;
	}
	
	div.input > .token {
		color: blue;
		background-color: lightblue;
		cursor: pointer;
		font-weight: bold;
		border-radius: 1em;
	}
	div.input > .token:before, div.input > .token:after {
		content: 'x';
		color: transparent;
		cursor: text;
	}
	div.input > .token:hover {
		text-decoration: line-through;
	}
	div.input > .token.selected {
		background-color: RGBA(249,209,172,1.00);
	}
	
	div.input > .letter {
		z-index: 20;
	}
	div.input > .separator { 
		color: red;   
	}
	div.input > .space {     
		font-size: 0px;
		border-style: solid;
		border-color: transparent;
		border-top-width: 12px;
		border-left-width: 5px;
	}
	div.input > .beam {
		opacity: 0;
		text-align: left;
		margin: 0px -1px 0px -3px;
		width: 1px;
		max-width: 1px;
		background-color: transparent;
		z-index: 30;
		color: transparent;
		overflow: hidden;
		border-right: solid 1px black;
	}
	div.input:focus > .beam {
		opacity: 100;
	}
	div.input:focus > .beam {
		animation: beamBlink 1s infinite;
		-webkit-animation: beamBlink 1s infinite;
		-khtml-animation: beamBlink 1s infinite;
		-moz-animation: beamBlink 1s infinite;
	}
	@-webkit-keyframes beamBlink { 0%  {opacity: 0.0;} 30%  {opacity: 0.0;} 40%  {opacity: 1.0;} 60%  {opacity: 1.0;} 70%  {opacity: 0.0;} 100% {opacity: 0.0;} }
	@-khtml-keyframes beamBlink { 0%  {opacity: 0.0;} 30%  {opacity: 0.0;} 40%  {opacity: 1.0;} 60%  {opacity: 1.0;} 70%  {opacity: 0.0;} 100% {opacity: 0.0;} }
	@-moz-keyframes beamBlink { 0%  {opacity: 0.0;} 30%  {opacity: 0.0;} 40%  {opacity: 1.0;} 60%  {opacity: 1.0;} 70%  {opacity: 0.0;} 100% {opacity: 0.0;} }
	@keyframes beamBlink { 0%  {opacity: 0.0;} 30%  {opacity: 0.0;} 40%  {opacity: 1.0;} 60%  {opacity: 1.0;} 70%  {opacity: 0.0;} 100% {opacity: 0.0;} }
	
	div.input > input {
		margin-right: -1em;
		border: none;
		width: 1em;
	}
	div.input > input:focus {
		outline: none;
	}
	#jumpbutton {
		padding-left:25px;
		background-image:url(../img/searchb.png);
		background-position:5px center;		
		background-repeat:no-repeat;
	}
	
	a:hover, .selected  {
		font-weight:bold;
		color: #000000;
		text-decoration:none;
		border-style: none;
		cursor:pointer;
		font-weight:bold;
	}
	
	th a:hover {
		color: lightgray;
	}
	
	a.nohover:hover {
		font-weight:bold;
		color: #000000;
		text-decoration:none;
		border-style: none;
		cursor:pointer;
		font-weight:bold;
		background-color: transparent;
	}	
	
	hr, hr.black, hr.gray, hr.white{
		width: 100%;
		height: 1px;
		border: none;
		clear: both;
	}
	hr,
	hr.black{
		color: #000000;
		background-color: #000000;
	}
	hr.gray{
		color: #D0D0D0;
		background-color: #d2d2d2;
	}
	hr.white{
		color: #FFFFFF;
		background-color: #FFFFFF;
	}
	
	/* Fortschritsbalken */
	span.progressbar, span.progressbarmini {
		float:right;
		height: 18px;
		background-color:#f5f5f5;
    }
	span.progress, span.progressmini {
		background-repeat: repeat-y;
		width:99%;
		float:left;
		height: 18px;
		background-color:#f5f5f5;
		border: 1px solid #000000;
        background-image: linear-gradient(to right, red, yellow, lime);
    }
    span.progressmini {
		width:170px;
    }

	#frame, .frame{
		margin-bottom:5px;
		width:400px;
		float:left;
		border-style:solid;
		border-width:1px;
		border-color:#808080;
		white-space:normal;
		padding: 2px;
		border-bottom-width:1px;
		border-right-width:1px;
	}
			
	span.block{
		margin:2px;
		float:left;
		display:inline;
		border-style:none;
		white-space:nowrap;
		padding: 5px;
		clear:left;
	}
	
	div.innercontent{
		padding:5px;
		margin-top:3px;
		background-color:RGBA(0,0,0,0.05)
	}
	
	div.conflictNotice, div.conflictInfo{
		background-repeat:no-repeat; 
		background-position:0px top;
		padding-left:26px;
		padding-bottom:10px;
		margin-top:10px;
	}
	div.conflictNotice{
		background-image:url(../img/notice_small.png); 
	}
	div.conflictInfo{
		background-image:url(../img/info_small.png); 
	}
	
	.hinweis, .warnung, .erfolg, .quellcode{
		margin: 5px;
		padding: 5px;
		clear:both;
		text-align:center;
		border-style:double;
		border-width:3px;
		font-family:"Arial Unicode MS", Arial,sans-serif;
		font-weight:bold;
		white-space:normal;
	}

	.quellcode {
		clear:left;
		float:left;
		background-color:#d2d2d2;
		border-style:solid;
		border-width:1px;
		border-color:#909090;
		font-family:"Arial Unicode MS", Arial,sans-serif;
	}
	
	.hinweis{
		clear:both;
		text-align:center;
		background-color:#e6e6fd;
		border-color:#0000ff;
	}
	
	.warnung{
		clear:both;
		text-align:center;
		background-color:#f6c2c2;
		border-color:#bc0d3a;
	}
	
	.erfolg{

		background-color:#e2ffc1;
		border-color:#9b8876;
	}
	
	
	form{
		display:inline;
	}
	
	.left{
		clear:both;
		text-align:left;
		float:left;
		margin-top:5px;
	}
	.right{
		text-align:right;
		clear:both;
		float:right;
		margin-top:5px;
	}
	

/* Tabellen */
	
	table.buttons {
		margin: 5px 0px 0px 0px;
		border-collapse: collapse;
		width:100%;
	}
		
	table.buttons, table.buttons tr, table.buttons tr th, table.buttons tr td {
		background-color: transparent;
	}
	table.buttons tr td {
		border: 1px solid #bbbbbb;
		padding: 2px 3px 0px 3px;
		text-align:center;
		vertical-align:middle;
	}
	
	/* Ergebniss Tabellen */
	table.result, table.nohoverresult {
		margin-left: 0px;
		border-spacing: 2px;
		width:100%;
		border-style: none;
		border-collapse: separate;
		background-color: #ffffff;
		vertical-align: top;
		text-align:left;
		white-space:normal;
		
	}
	table.result th, table.nohoverresult th{
		padding: 6px;
		border-style: none;
		background-color: #494949;
		color:white;
		vertical-align: top;
	}
	table.result th.category, table.nohoverresult th.category {
		font-size: 14px;
		text-align: center;
		padding-top: 4px;
		color:white;
		background-color: #494949;
	}
	
	th { text-align: left; }
	td { text-align: left; }

	.lastColLeft th:last-child  { text-align: right;  }
	.lastColLeft td:last-child  { text-align: right;  }

	
	th a { color:white; }
	
	table.result td, table.nohoverresult td {
		padding: 6px 4px;
		border-style: none;
		vertical-align:middle;
	}
	table.result tr, table.nohoverresult tr {
		padding: 4px;
		border-style: none;
		background-color: #F0F0F0;
		vertical-align: top;
	}
	table.result tr.odd, table.nohoverresult tr.odd {
		background-color: #E8E8E8;
	}
	table.result tr.even, table.nohoverresult tr.even {
		background-color: #EEEEEE;
	}
	table.result tr.no_selection, table.nohoverresult tr.no_selection {
		background-color: #F0F0F0;
		vertical-align: top;
	}
	table.result tr.dontTrans, table.nohoverresult tr.dontTrans {
		background-color: #FFA0A0;
		vertical-align: top;
	}
	table.result tr.DeEn, table.nohoverresult tr.DeEn{
		background-color: #FFFFA0;
		vertical-align: top;
	}
	table.result tr:hover{
		padding: 4px;
		border-style: none;
		background-color: #ccffcc;
		overflow:visible;
		vertical-align: top;
	}

	/* Tabellen zur eingabe von Daten*/
	table.input {
		border-spacing: 2px;
		border-style: none;
		border-collapse: separate;
		background-color: #ffffff;
		white-space:normal;
	}
	table.input th {
		padding: 7px;
		border-style: none;
		text-align:right;
		vertical-align: top;
		background-color: #494949;
		color:white;
	}
	table.input td {
		padding: 7px;
		border-style: none;
		text-align:left;
		vertical-align: top;
		background-color: #F0F0F0;
	}
	.vEllipsis {
		outline: none;
		padding-top: 0;
		padding-bottom: 0;
		font-size: 24px;
		padding-right:8px;
		padding-left:4px;
		vertical-align: bottom;
	}
		
	/* Versteckte Tabelle zum anordnen von Inhalten */
	.hidden {
		border-spacing: 1px;
		border-style: none;
		border-collapse: separate;
	}
	.hidden tr {
		background-color: transparent !important;
	}
	.hidden td {
		padding: 1px;
		margin: 3px;
		border-style: none;
		text-align:left;
		vertical-align: top;
	}
	/* Eingabefeld ohne dekoration */
	input.noDecoration {
		border-width: 0px;
		background-color: transparent;
	}
	/* div'S die wie eingabefelder aussehen sollen */
	div.input {
		-moz-appearance: textfield;
		-khtml-appearance: textfield;
		-webkit-appearance: textfield;
		background-color: white;
		background-color: -moz-field;
		border: 1px solid darkgray;
		box-shadow: 1px 1px 1px 0 lightgray inset;  
		font: -moz-field;
		font: -khtml-small-control;
		font: -webkit-small-control;
		margin-top: 5px;
		padding: 2px 3px;
		cursor: text;
		display: flex;
		min-height: 1em;
		overflow: hidden;
		display: block;
		/* white-space: nowrap;	*/
	}
	
	/* Select-Feld mit farbigem Hintergrund */
	input.background ,
	select.background {
		background-color: RGBA(249,209,172,1.00);
		border: solid 1px gray;
	}
		
	/* Vertikale Linie mit hilfe einer Tabellenzelle */
	td#vr, th#vr {
		width:1px;
		max-width:1px;
		min-width:1px;
		background-color: #000000;
		padding:0px;
		margin:0px;
	}
		
	/* Textboxen und Textarea */
	.normal {
		resize:none;
		border-style: solid;
		border-width: 1px;
		border-color: #000000;
	}
	.error {
		border-style: solid;
		border-width: 1px;
		border-color: #000000;
		background-color: #FFB0B0;
	}
	.ok {
		border-style: solid;
		border-width: 1px;
		border-color: #000000;
		background-color: #B0FFB0;
	}
	.warning {
		border-style: solid;
		border-width: 1px;
		border-color: #000000;
		background-color: #FFFFB0;
	}

/* Farbliche hervorherbungen */
	strong, .strong {
		font-weight:bold;
	}
	i.red,
	div.red,
	span.red,
	strong.red {
		color: #C00000;
	}
	i.green,
	div.green,
	span.green,
	strong.green {
		color: #00C000;
	}
	i.yellow,
	div.yellow,
	span.yellow,
	strong.yellow {
		background: #ffff00;
		color: #000000;
	}
	i.blue,
	div.blue,
	span.blue,
	strong.blue {
		color: #0000FF;
	}
	i.black,
	div.black,
	span.black,
	strong.black {
		color: #000000;
	}
	i.orange,
	div.orange,
	span.orange,
	strong.orange {
		color: #ff4500;
	}
	i.darkyellow,
	div.darkyellow,
	span.darkyellow,
	strong.darkyellow {
		color: #ffa500;
	}
	i.gray,
	div.gray,
	span.gray,
	strong.gray {
		color: #808080;
	}
	i.purple,
	div.purple,
	span.purple,
	strong.purple {
		color: #800080;
	}
	
	input.red {
		background: #FF8080;
	}
	textarea.red {
		background: #FF8080;
	}
	input.green, .input.green {
		background: #80FF80;
	}
	input.yellow, .input.yellow {
		background: RGBA(249,209,172,1.00);
	}
	input.blue, .input.blue {
		background: #C0C0FF;
	}
	input.white, .input.white {
		background: white;
	}
	td.green {
		background-color: #80FF80;
	}

/* Flaggen */
	img.flag {
		height:32px;
		margin-bottom:-10px;
		padding-top:0px;
	}
	
/* Bild im Textfluss */	
	img.middle {
		vertical-align: middle;
	}
	
	img {
		border: none;
	}
/* ToolTips */
	.tooltip, .dialog-box{
		z-index:1980;
		font-weight: normal;
		padding: 0.5em;
		border: 1px solid #F5753A; 
		box-shadow:4px 4px 8px #808080;
		-moz-box-shadow:4px 4px 8px #808080;
		-khtml-box-shadow:4px 4px 8px #808080;
		-webkit-box-shadow:4px 4px 8px #808080;
		-border-radius: 5px;
		-moz-border-radius: 5px;
		-khtml-border-radius: 5px;
		-webkit-border-radius: 5px;
	}
	
	.tooltip {
		display:none;
		background-color:RGBA(249,209,172,0.94);
		position:absolute;
		z-index:199;
		color: #000000;
		opacity: 0.94;
        margin-top: -25%;
        margin-left: 75%;
        min-width: 15em;
	}
	.tooltip.right {
        right: 2em;
	}
	.tooltip.top {
       	bottom:80%;		
    }
    .tooltip:hover,
    .tooltipContainer .tooltip:focus,
    .tooltipContainer:hover .tooltip {
        display: block;
    }
		
	.tooltipHint {
		background-color: RGBA(128,128,128,0.25);
		font-size: xx-small;
		margin-top: 1em;
		text-align: center;
	}
	
	.tooltip .tooltipHint.hidden {
		opacity: 0.0001;
	}
	.tooltipContainer {
		display: inline-block;
        position: relative;
	}

#overlay {
   position: fixed;
   z-index:99;
   top: 0px;
   left: 0px;
   height:100%;
   width:100%;
}
	
/* Dialog */
* html #overlay { /* ie6 hack */
    position: absolute;
    height: expression(
		document.body.scrollHeight > document.body.offsetHeight 
			? document.body.scrollHeight 
			: document.body.offsetHeight + 'px'
	);
}

.overlayBG {
   background-image: url('../img/dialog.png');
}

#lightBox, .centerBox, .notice{
	position:absolute; 
	top:320px;
	left:50%;
		
	padding:10px;
	overflow:auto;
	z-index:200;
	text-align:center;
}

#lightBoxClose {
	display: inline-block;
	width: 28px;
	height: 28px;
	border-radius: 100%;
	background-color: #494949;
	color: white;
	border: solid 2px white;
	font-size: 22px;
	text-align: center;
	font-weight: bold;
	position: absolute;
	z-index: 300;	
}

* html #lightBox, .centerBox, .notice { /* ie6 hack */
   /*position: absolute;*/
   margin-top: expression(0 - parseInt(this.offsetHeight / 2) + 
     (TBWindowMargin = document.documentElement && 
     document.documentElement.scrollTop || 
     document.body.scrollTop) + 'px');
}

#lightBox {
	position: fixed;
	background-color:#f3f5e6;
	border-width:4px;
	border-style:solid;
	border-color:#bbbbbb;
}


.loadingframe {
	display: block;
	text-align: center;
	width:100px;
}

.loadingbar {
	background-color: #B0B0B0;
	border: solid 1px #808080;
	color: #B0B0B0;
	min-height: 10px;
	min-width: 2px;
	max-height: 10px;
	max-width: 2px;
	margin-left: 2px;
}
.notice {
	background-image:url(../img/notice.png); 
	background-repeat:no-repeat; 
	background-position:5px center;
	white-space:normal;
	padding-left: 50px;
	text-align:left;
}

#navlist
{
	padding:0;
	margin:0;
	list-style-type:none;
	line-height: 16px;
}

#navlist li
{
	padding-bottom: 0px;
	padding-left: 0px;
	background-repeat: no-repeat;
}

#navlist a
{
	font-weight: bold;
	display:block;
}

#navlist a:link, #navlist a:visited
{
	padding-left:20px;
	background: url('../img/arrow.png');
	background-position: 0px -0px;
	background-repeat: no-repeat;
}

#navlist a:hover
{
	padding-left:20px;
	background: url('../img/arrowh.png');
	background-repeat: no-repeat;
	background-position: 0 0px;
} 

.filter {
  position: relative;  
  background: RGBA(249,209,172,1.00);
  border-style: solid;
  border-width: 1px;
  border-color: #000000;
  padding: 2px 4px 2px 4px;
}

.topLeftBG {
	min-height:20px;
	padding-left:28px;
	background-repeat:no-repeat;
	background-size:auto 18px
}

.hervorhebung {
  position: relative;  
  background: RGBA(249,209,172,1.00);
  border-style: solid;
  border-width: 1px;
  border-color: #F5753A;
  margin: 4px 0px 4px 0px;
  padding: 4px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.sprechblase {  
  position: relative;  
  padding: 5px 4px 5px 40px;
  height: auto;
  border: 1px solid #F5753A;
  margin:0 auto;
  margin-bottom: 20px;
  text-align: left;  
  background: RGBA(249,209,172,1.00);
  background-image: url('../img/info.png');
  background-repeat: no-repeat;
  background-position:5px center;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.sprechblase:before {  
  content: ' ';  
  position: absolute;  
  width: 0;  
  height: 0;  
  left: 218px;  
  top: 100%;  
  border: 10px solid;  
  border-color: #F5753A #F5753A transparent transparent;  
}

.sprechblase:after {  
  content: ' ';  
  position: absolute;  
  width: 0;  
  height: 0;  
  left: 220px;  
  top: 100%;  
  border: 8px solid;  
  border-color: RGBA(249,209,172,1.00) RGBA(249,209,172,1.00) transparent transparent;  
}

.forbiddenChars span.char, 
#forbiddenChars span.char{
	border-radius: 2px;
	text-align: center;
	width: 10px;
	display: inline-block;
	margin: 2px;
	padding: 3px;
	background-color: RGBA(255,0,0,0.66);
	color: white;
}

#console {
	background-color: black;
	color: lightgreen;
	display:none;
	z-index: 1000;
	font-family:'Courier New', Arial;
	float: right;
	padding: 1em;
}

#heartbeat {
    margin: 0.5em 0.5em;
    font-size: 1.0em;
    color: black;
    position: fixed;
    right: 0em;
    top: 0em;
    line-height: 1em;
}

/* Unchecked, Checked */

label.switch::before, 
label.switch::after {
    display: inline-block;
    width: 1.5em;
    text-align: center;
    color: black;
    overflow: hidden;
    vertical-align: middle;    
}
label.switch {
    border-radius: 13px;
	padding: 4px;
    background-color: #e5e5e5;
    cursor: pointer;
	box-shadow: inset 0 3px 4px 4px rgba(0,0,0,.25);
	display: inline-block;
	width:36px;
	height:14px;
}
label.switch::before { 
    content: attr(off);
}
label.switch::after {
    content: attr(on);
}
label.switch > input {
    display: none;
}
label.switch input + .slider {
	display: inline-block;
	height: 18px;
	width: 18px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
	position: absolute;
	margin-top: -2px;
	margin-left: 2px;
    transition: 0.25s;
    opacity: 1.5;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/red.png);
	box-shadow: 0 3px 2px -2px rgba(0,0,0,.25)
}
.Edge label.switch input + .slider { height: 1.9em; }

label.switch input:checked + .slider {
    margin-left: -20px;
    background-color: #ffffff;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    background-image: url(../img/green.png);
}

div.top.functions {
	background-color: #333333;
	position: fixed;
	z-index: 50;
	width: 100%;
}
div.top.menu {
	background-color: #FFFFFF;
	position: fixed;
	z-index: 40;
	width: 100%;
    margin-top: 1.8em;
    padding: 1.3em 0em;
    box-shadow: 0 -2px 6px 3px #999;
}
div.top.menu:after {
    content: attr(location);
    position: absolute;
    right: 1em;
    font-size: 300%;
    margin-top: -2em;
    opacity: 0.25;
}
div.top.menu[location="online"]:after {
    content: '';
}

div.top.menu > div {
    background-image: url(../img/megger.gif);
    background-position: left 1em;
    background-repeat: no-repeat;
    margin: 0 auto;
    min-height: 5em;
    max-height: 40em;
    width: 100em;
    overflow-y: hidden;
}
div.top.menu > div > .item {
	padding: 1.5em 0.5em 0.4em 0.5em;
	display: inline-block;
	color: #333;
    margin-left: 1em;
    border-bottom: solid transparent 0.3em;
    font-size: 14px;
    font-weight: bolder;
}

div.top.menu > div > .item:first-child {
    margin-left: 250px;
}

div.top.menu .submenu a:hover,
div.top.menu .submenu a.selected,
div.top.menu > div > .item.selected,
div.top.menu > div > .item:hover {
    border-color: #cc0000;
}
div.top.menu:hover .submenu .selected:not(:hover),
div.top.menu:hover > div > .item.selected:not(:hover) {
    border-color: #ffffff;
}

div.top.menu .item + .dropdown {
	display: none;
	padding-top: 3em;
	position: fixed;
    margin-left: 250px;
    padding-left: 0.5em; 
    z-index: 10;    
}
div.top.menu .dropdown:hover,
div.top.menu .item:hover + .dropdown {
    display: block;
}
div.top.menu .item + .dropdown::before {
	content: 'x';
	background-color: white;
	position: fixed;
	left: 0px;
	color: transparent;
	width: 100%;
	z-index: -1;
	top: 7.8em;
	height: 30em;
    border-bottom: solid 1px #999;    
}

div.top.menu .item + .dropdown .navlist {
    line-height: 3em;
}
div.top.menu .item + .dropdown .navlist a{
    display: block;
}
div.top.menu .item + .dropdown .navlist a:hover,
div.top.menu .item + .dropdown .navlist a.selected {
    color: #c00;
}
div.top.menu .item + .dropdown .navlist .column {
	display: inline-block;
	vertical-align: top;
	padding-right: 6em;
}
div.top.menu .item + .dropdown .navlist .column .scrollbox:before {
    content: attr(caption);
    display: block;
    font-weight: bold;
    position: absolute;
    margin-top: -3.5em;
}
div.top.menu .item + .dropdown .navlist .column .scrollbox {
    height: 22em;
    overflow-y: scroll;
    display: block;
    width: 18em; 
    margin-top: 3.5em;
}
div.top.menu .item + .dropdown .navlist .column .scrollbox a{
    font-weight: normal;
}

div.top.menu .submenu {
	position: absolute;
	top: 6.8em;
	margin-left: 250px;
	width: 70em;
}

div.top.menu .submenu a {
    font-weight: normal;
	padding-right: 0.5em;
    padding-left: 0.5em;
	padding-bottom: 0.4em;
	margin-right: 1em;
	border-bottom: solid 0.3em transparent;
	font-size: 14px;
	color: #333;
}

div.top.functions > div {
    width: 100em;
    margin: 0 auto;
    padding: 5px 3em;
}
div.top.functions > div > span:last-child,
div.top.functions > div > span:first-child {
    width: 60%;
    display: inline-block;
}
div.top.functions > div > span:last-child {
    width: 39.5%;
    text-align: right;
}

div.top.functions .title,
div.top.functions .version {
    margin-right: 1em;
}
div.top.functions .version {
	font-size: 10px;
}
div.top.functions .title {
	font-weight: bold;
	font-size: 16px;
}

div.top.functions .version img {
    height: 1em;
    vertical-align: middle;
}
div.top.functions .item {
    padding-right: 1em;
    padding-left: 2em;
}
div.top.functions a {
    color: #bbbbbb;
    font-weight: normal;
    vertical-align: middle;
}
div.top.functions .item + .dropdown {
	display: none;
	position: fixed;
	background-color: #333333;
	margin-left: 22em;
	width: 16em;
	padding: 1em;
	text-align: left;
}

div.top.functions .item + .dropdown:hover,
div.top.functions .item:hover + .dropdown {
    display: block;
}
div.top.functions .item + .dropdown > * {
    display: block;
    padding-top: 1em;
}
div.top.functions .item:hover,
div.top.functions .item + .dropdown a:hover,
div.top.functions .item + .dropdown a.selected {
    color: white;
    text-decoration: underline;
}

div.top.menu .search {
	float: right;
    margin-top: 0.5em;
    padding: 0.75em;
	background-color: #eee;
    position: relative;
}

div.top.menu .search input {
    border: none;
	background-color: transparent;
	width: 20em;
	transition: width 1s;
	overflow-x: hidden;
    color: black;
}

div.top.menu .search button {
	border: none;
	background-color: transparent;
	cursor: pointer;
    vertical-align: middle;
}

label.devLabel > input[type=checkbox] {
	display: none;
}
label.devLabel > input[type=checkbox] + span {
	display: none;
}
label.devLabel > input[type=checkbox]:checked + span {
	display: inline-block;
	padding: 6px 8px;
	border-radius: 6px  6px  6px  6px;
	background: linear-gradient(white, #f5f5f5);
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	margin:3px 2px;
}
label.devLabel > input[type=checkbox]:checked + span:hover {
	background-color: RGBA(255,0,0,0.33);
}
label.devLabel > input[type=checkbox]:checked + span:before {
	content: " ";
	background-position: left ;
    background-repeat: no-repeat;
	padding: 2px 0px 2px 0px;
}

label.Removable > input[type=checkbox]:checked + span:before {
	background-image: url(../img/cross_b.png);
	padding: 2px 20px 2px 0px;
	cursor: pointer;
}

label.devLabel > input[type=checkbox]:checked + span:hover:before {
	opacity: 0.75;
}


    