﻿/* Allgemein */
html {
	width: 100%;
	overflow-y: scroll;
}

body {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
	color: #808184;
	min-width: 1090px;
	margin: 0;
	background: url(../Images/Background/main-bg.jpg) center top;
}

input, textarea, select {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	outline: none; /* Chrome Textbox-Highlighting deaktivieren */
}

textarea {
	padding: 3px;
	resize: vertical;
}

table {
	border-spacing: 0;
	border-style: none;
}

a {
	color: #333333;
	text-decoration: none;
	outline: none;
}

	a:hover, a:focus {
		color: #FFCC00;
		text-decoration: none;
	}

	a:active {
		color: #333333;
	}

p {
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
}

.Padding > tr > td, .Padding > tbody > tr > td, td.Padding {
	padding: 5px 10px 10px 0;
}

.SmallPadding > tr > td, .SmallPadding > tbody > tr > td, td.SmallPadding {
	padding: 3px 5px 0 0;
}

/* Seitenlayout (Master-Seite) */
#frmMain {
	height: 100%;
	width: 100%;
}

.AjaxPostbackPanel {
	background-color: #0002;
	cursor: progress;
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

	.AjaxPostbackPanel .Spinner {
		position: absolute;
		left: 50%;
		top: 50%;
		margin-top: -80px;
		margin-left: -80px;
		width: 160px;
		height: 160px;
	}

		.AjaxPostbackPanel .Spinner div {
			position: absolute;
			top: 6px;
			left: 74px;
			width: 12px;
			height: 36px;
			border-radius: 20%;
			background: #e1ba1c;
			border: 1px solid #ae9033;
			box-shadow: 0 0 3px 1px #0004;
			transform-origin: 50% 200%;
			animation: PostbackBusySpinner 1.2s linear infinite;
		}

			.AjaxPostbackPanel .Spinner div:nth-child(1) {
				transform: rotate(0deg);
				animation-delay: -1.05s;
			}

			.AjaxPostbackPanel .Spinner div:nth-child(2) {
				transform: rotate(45deg);
				animation-delay: -0.90s;
			}

			.AjaxPostbackPanel .Spinner div:nth-child(3) {
				transform: rotate(90deg);
				animation-delay: -0.75s;
			}

			.AjaxPostbackPanel .Spinner div:nth-child(4) {
				transform: rotate(135deg);
				animation-delay: -0.60s;
			}

			.AjaxPostbackPanel .Spinner div:nth-child(5) {
				transform: rotate(180deg);
				animation-delay: -0.45s;
			}

			.AjaxPostbackPanel .Spinner div:nth-child(6) {
				transform: rotate(225deg);
				animation-delay: -0.30s;
			}

			.AjaxPostbackPanel .Spinner div:nth-child(7) {
				transform: rotate(270deg);
				animation-delay: -0.15s;
			}

			.AjaxPostbackPanel .Spinner div:nth-child(8) {
				transform: rotate(315deg);
				animation-delay: -0.00s;
			}

@keyframes PostbackBusySpinner {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}


/* Tabellen für Eingabe Formulare */
.InputFormTable {
	border-spacing: 0;
	border-style: none;
	width: 100%;
}

.InputFormColumn {
	padding: 0;
	vertical-align: top;
}

.InputFormImageColumn {
	padding: 0;
	vertical-align: bottom;
	text-align: right;
}
/* Label Spalte */
.InputFormLabelColumn {
	padding: 5px 0 10px 0;
	white-space: nowrap;
	width: 150px;
}
/* Eingabe Control Spalte */
.InputFormControlColumn {
	padding: 5px 0 10px 0;
	white-space: nowrap;
	width: 310px;
}

.InputFormNoWidthColumn {
	padding: 5px 0 10px 0;
	white-space: nowrap;
}

/* Seiten-Inhalt */
.MainBorderContainer {
	padding: 16px 55px 0 0;
}
/* Context Menue */
.ContextMenu {
	background-color: #FFFFFF;
	border-color: #000000;
	border-style: solid;
	border-width: 1px;
	margin-left: -6px;
	margin-top: 5px;
	white-space: nowrap;
}

.ContextMenuItem {
	background-color: #FFFFFF;
	border-color: #808080;
	border-top-style: dotted;
	border-width: 1px;
	margin-top: -1px;
	padding: 5px;
}

	.ContextMenuItem:hover, .ContextMenuItem:focus {
		background-color: #FFFFE0;
	}

	.ContextMenuItem > a {
		position: relative;
	}

		.ContextMenuItem > a > span:first-child {
			float: left;
			height: 18px;
			margin-right: 5px;
			overflow: hidden;
			text-align: center;
			width: 22px;
		}

			.ContextMenuItem > a > span:first-child > img {
				border-color: #E0E0E0;
				border-style: solid;
				border-width: 1px;
			}

		.ContextMenuItem > a > span:last-child {
			clear: right;
			color: #000000;
			vertical-align: middle;
		}

/* Controls */
.Button {
	background-color: #C0C0C0;
	border-color: #808080;
	border-style: solid;
	border-width: 1px;
	border-radius: 5px;
	color: #FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
	height: 20px;
	line-height: 20px;
	text-align: center;
	min-width: 100px;
	padding: 0 5px;
}

	.Button:hover, .Button:focus {
		background-color: #A0A0A0;
		border-color: #808080;
		color: #F0F0F0;
	}

	.Button[disabled] {
		background-color: #E0E0E0;
		color: #A0A0A0;
		cursor: default;
	}

.Textbox, .DateEdit {
	border-radius: 5px;
	border-color: #808080;
	border-width: 1px;
	border-style: solid;
	padding-left: 2px;
	padding-right: 2px;
}

.Textbox {
	height: 18px; /* entspricht 22px, Textbox wird immer um 4 Pixel größer gezeichnet */
	width: 169px; /* entspricht 175px, mit Padding und Vergrößerung der Textbox */
}

.DateEdit {
	height: 22px;
	width: 110px;
	display: inline-table;
}

.InputFormControlColumn .Textbox {
	width: 294px; /* entspricht 300px, mit Padding und Vergrößerung der Textbox */
}

.Textbox:focus, .DateEditFocused {
	border-color: #808080;
	box-shadow: 0 0 8px #E0BF50;
}

.Textbox[disabled="disabled"], .DateEditDisabled {
	background-color: #E0E0E0;
	color: #808080;
}

.Textbox[readonly="readonly"] {
	background-color: #FFFFDF;
	border-color: #A0A000;
	color: #606000;
}

.Textbox[itemprop="reset"] {
	transition: background-color 500ms, border-color 500ms;
}

.Textbox:focus[readonly="readonly"] {
	box-shadow: 0 0 8px #B0A000;
}

.Textbox[itemprop="error"], .DateEditError {
	background-color: #FFDFDF;
	border-color: #FF0000;
}

	.Textbox:focus[itemprop="error"], .DateEditError.DateEditFocused {
		box-shadow: 0 0 8px #FF0000;
	}

.Textbox[type="file"] {
	height: 22px;
	width: 360px;
}

.DateEditButton {
	background-color: transparent;
	background-image: none;
	border-color: #808080;
	border-width: 1px;
	border-style: none none none solid;
	padding: 1px 1px 1px 2px;
}

	.DateEditButton img {
		margin: 1px 0 -1px 0;
	}

.ComboBox {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-color: #808080;
	border-width: 1px;
	border-style: solid;
	height: 22px;
	width: 175px;
}

.InputFormControlColumn .ComboBox {
	width: 300px;
}

.ComboEdit {
	border-radius: 5px;
	border-color: #808080;
	border-width: 1px;
	border-style: solid;
	height: 22px;
	width: 175px;
}

.ComboBox:focus, .ComboEditFocused {
	border-color: #808080;
	box-shadow: 0 0 8px #E0BF50;
}

.ComboBox[disabled="disabled"], .ComboEditDisabled {
	background-color: #E0E0E0;
	color: #808080;
}

.ComboBox[itemprop="error"] {
	background-color: #FFDFDF;
	border-color: #FF0000;
}

.ComboBox:focus[itemprop="error"] {
	box-shadow: 0 0 8px #FF0000;
}

.ComboEditButton {
	background-color: transparent;
	background-image: none;
	border-color: #808080;
	border-width: 1px;
	border-style: none none none solid;
}

	.ComboEditButton img {
		margin-right: 1px;
	}

input.InputError {
	background-color: #FFDFDF;
	border-color: #FF0000;
}

	input.InputError:focus {
		box-shadow: 0 0 8px #FF0000;
	}

.TimeEdit {
	border-radius: 5px;
	border-color: #808080;
	border-width: 1px;
	border-style: solid;
	height: 22px;
	width: 60px;
}

table.TimeEdit td {
	padding: 0;
}

	table.TimeEdit td:first-child {
		padding-left: 3px;
	}

.TimeEditDisabled, .TimeEditDisabled input {
	background-color: #E0E0E0;
	color: #808080;
}

.TimeEditFocused {
	border-color: #000080;
	box-shadow: 0 0 5px #000080;
}

.TimeEditButtonUp {
	background-color: transparent;
	background-image: none;
	border-top: 0 none;
	border-right: 0 none;
	height: 8px;
}

	.TimeEditButtonUp img {
		margin: 1px 0 -1px -1px;
	}

.TimeEditButtonDown {
	background-color: transparent;
	background-image: none;
	border-bottom: 0 none;
	border-right: 0 none;
	height: 7px;
}

	.TimeEditButtonDown img {
		margin-left: -1px;
	}

input.Autocomplete {
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
	border-color: #808080;
	border-width: 1px;
	border-style: solid;
	height: 18px; /* entspricht 22px, Textbox wird immer um 4 Pixel größer gezeichnet */
	padding-left: 2px;
	padding-right: 2px;
	width: 132px; /* entspricht 138px, mit Padding und Vergrößerung der Textbox */
	margin-right: 21px;
}

	input.Autocomplete:focus {
		border-color: #808080;
		box-shadow: 0 0 8px #E0BF50;
	}

	input.Autocomplete[disabled="disabled"] {
		background-color: #E0E0E0;
		color: #808080;
	}

.AutocompleteClearImage {
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
	border-color: #808080;
	border-width: 1px;
	border-style: solid solid solid none;
	position: absolute;
	height: 18px;
	width: 19px;
	padding-top: 2px;
	padding-left: 2px;
	top: 0;
	right: 0;
}

	.AutocompleteClearImage[disabled="disabled"] {
		cursor: default;
	}

		.AutocompleteClearImage[disabled="disabled"] img {
			opacity: 0.4;
		}

.AutocompleteList {
	background-color: #FFFFFF;
	border-color: #808080;
	border-style: solid;
	border-width: 1px;
	cursor: default;
	list-style-type: none;
	margin: 0;
	overflow: auto;
	text-align: left;
	padding: 0;
	max-height: 300px;
	width: initial !important;
}

.AutocompleteItem {
	border-style: none;
	border-top-style: dotted;
	border-color: #808080;
	border-width: 1px;
	background-color: #FFFFFF;
	color: #000000;
	padding: 3px;
	margin-top: -1px;
}

.AutocompleteItemHover {
	border-style: none;
	border-top-style: dotted;
	border-color: #808080;
	border-width: 1px;
	background-color: #FFFFE0;
	color: #000000;
	padding: 3px;
	margin-top: -1px;
}

.TextHeader {
	font-weight: bold;
}

.TextDescription {
	color: #404040;
	font-style: italic;
}

.TextSmall {
	font-size: 75%;
}

.TextVSmall {
	font-size: 60%;
}
/* Überschriften */
.HeaderPanel {
	margin-bottom: 18px;
	font-size: 30px;
	color: #333333;
	line-height: 1.2em;
	display: block;
	font-weight: normal;
}
/* Listview */
.Listview {
	border-spacing: 0;
	border-style: none;
	padding-left: 0;
	padding-right: 0;
	width: 100%;
}

.Listview_HeaderRow, .ListView_HeaderRowWrap {
	background-color: #C0C0C0;
}

	.Listview_HeaderRow td {
		border-bottom-style: solid;
		border-color: #000000;
		border-width: 1px;
		padding-bottom: 2px;
		padding-left: 3px;
		padding-right: 3px;
		padding-top: 2px;
		vertical-align: middle;
	}

	.ListView_HeaderRowWrap td {
		border-bottom-style: solid;
		border-color: #000000;
		border-width: 1px;
		padding-bottom: 2px;
		padding-left: 3px;
		padding-right: 3px;
		padding-top: 2px;
		vertical-align: middle;
		white-space: normal;
		word-wrap: break-word;
	}

.Listview_DataRowEven {
	background-color: #F8F8F8;
}

.Listview_DataRowOdd {
	background-color: #F0F0F0;
}

.Listview_DataRowHover {
	background-color: #C0C0C0;
}

.Listview_FooterRow {
	background-color: #DFDFDF;
}

.Listview_FooterRow2 {
	background-color: #C0C0C0;
}

	.Listview_HeaderRow td a, .ListView_HeaderRowWrap td a, .Listview_DataRowEven td a, .Listview_DataRowOdd td a, .Listview_DataRowHover td a, .Listview_FooterRow td a, .Listview_FooterRow2 td a {
		display: block;
	}

	.Listview_HeaderRow td span, .ListView_HeaderRowWrap td span, .Listview_DataRowEven td span, .Listview_DataRowOdd td span, .Listview_DataRowHover td span, .Listview_FooterRow td span, .Listview_FooterRow2 td span {
		display: block;
	}

.Listview_HeaderRow td[itemprop="date"], .ListView_HeaderRowWrap td[itemprop="date"] {
	text-align: left;
}

.Listview_HeaderRow td[itemprop="number"], .ListView_HeaderRowWrap td[itemprop="number"] {
	text-align: right;
}

.Listview_DataRowEven td, .Listview_DataRowOdd td, .Listview_DataRowHover td {
	border-bottom-style: solid;
	border-color: #C0C0C0;
	border-width: 1px;
	padding-bottom: 2px;
	padding-left: 3px;
	padding-right: 3px;
	padding-top: 2px;
	vertical-align: middle;
}

	.Listview_DataRowEven td[itemprop="date"], .Listview_DataRowOdd td[itemprop="date"], .Listview_DataRowHover td[itemprop="date"] {
		text-align: left;
	}

	.Listview_DataRowEven td[itemprop="number"], .Listview_DataRowOdd td[itemprop="number"], .Listview_DataRowHover td[itemprop="number"] {
		text-align: right;
	}

.Listview_FooterRow td, Listview_FooterRow2 td {
	border-top-style: none;
	padding-bottom: 2px;
	padding-left: 3px;
	padding-right: 3px;
	padding-top: 2px;
	vertical-align: middle;
}

.Listview_FooterSeparator {
	border-bottom-style: solid;
	border-color: #C0C0C0;
	border-width: 1px;
}

.Listview_FooterRow td[itemprop="date"], Listview_FooterRow2 td[itemprop="date"] {
	text-align: left;
}

.Listview_FooterRow td[itemprop="number"], Listview_FooterRow2 td[itemprop="number"] {
	text-align: right;
}

.Listview_Bar {
	background-color: #EAC019;
	border-radius: 3px;
	border-color: #BF9D37;
	border-width: 1px;
	border-style: solid;
	display: block;
	height: 14px;
}

.PagerContainer {
	margin-top: 8px;
	margin-bottom: 3px;
	text-align: right;
}

a.PagerItems {
	border-radius: 3px;
	box-shadow: inset 0 0 0 1px #8F8F8F;
	color: #8F8F8F;
	margin: 1px 2px;
	padding: 3px 6px;
}

	a.PagerItems:hover, a.PagerItems:focus {
		background-color: #4F4F4F;
		box-shadow: inset 0 0 0 1px #4F4F4F;
		color: #AFAFAF;
	}

span.PagerItems {
	border-radius: 3px;
	box-shadow: inset 0 0 0 1px #CFCFCF;
	color: #CFCFCF;
	margin: 1px 2px;
	padding: 3px 6px;
}

	span.PagerItems[itemprop="Current"] {
		background-color: #0F0F0F;
		border-radius: 3px;
		box-shadow: inset 0 0 0 1px #0F0F0F;
		color: #FFFFFF;
		font-weight: bold;
		margin: 1px 2px;
		padding: 3px 6px;
	}

	span.PagerItems[itemprop="More"] {
		box-shadow: none;
		color: #8F8F8F;
		margin: 1px 2px;
		padding: 0;
	}

/* CollapsePanel */
.CollapsePanel {
	margin-bottom: 10px;
}

.CollapsePanelHeader {
	color: #808080;
	cursor: pointer;
	display: block;
	/*font-size: 11pt;
	font-weight: bold;
	margin-bottom: 10px;*/
	position: relative;
}

	.CollapsePanelHeader:hover, .CollapsePanelHeader:focus {
		color: #808080;
	}

	.CollapsePanelHeader img {
		position: absolute;
		right: 0;
		top: 0;
	}

	.CollapsePanelHeader .Separator {
		background-color: #C0C0C0;
		height: 1px;
		margin-top: 3px;
		width: 100%;
	}

.SuccessMessage {
	color: #00A000;
}

	.SuccessMessage[itemprop="bold"] {
		color: #00A000;
		font-weight: bold;
	}

.ErrorMessage {
	color: #F00000;
}

	.ErrorMessage[itemprop="bold"] {
		color: #F00000;
		font-weight: bold;
	}

td:has(>.Button.Clear) {
	position: relative;
}

.Button.Clear {
	background-color: #F00000;
	border-color: #800000;
	border-radius: 0 5px 5px 0;
	font-size: 1.25em;
	min-width: unset;
	padding: 0 .25em;
	position: absolute;
	left: 154px;
	top: 5px;
}

/* Markierung von Pflichtfeldern: * */
.RequiredFieldMarker {
	color: #FF0000;
}

/* Menu */
.MenuContainer {
	padding: 41px 0 0 0;
}

.MenuItemContainer {
	float: left;
	background: url(../Images/Background/menu-li-border.gif) left top no-repeat;
	height: 76px;
}

.MenuItemNotifications {
	display: inline-block;
	height: 25px;
	padding: 7px 16px 8px;
	position: relative;
}

	.MenuItemNotifications > svg{
		width: 24px;
	}

	.MenuItemNotifications > svg > rect,
	.MenuItemNotifications > svg > path {
		stroke: #aaa;
	}

	.MenuItemNotifications > svg:has(+ .Number) > rect,
	.MenuItemNotifications > svg:has(+ .Number) > path {
		stroke: #fff;
	}

	.MenuItemNotifications:hover > svg > rect,
	.MenuItemNotifications:focus > svg > rect,
	.MenuItemNotifications[itemprop="selected"] > svg > rect,
	.MenuItemNotifications:hover > svg > path,
	.MenuItemNotifications:focus > svg > path,
	.MenuItemNotifications[itemprop="selected"] > svg > path {
		stroke: #edd171;
	}

	.MenuItemNotifications > .Number {
		background-color: #fff;
		border-radius: 50%;
		display: flex;
		height: 18px;
		left: 30px;
		position: absolute;
		top: 0px;
		width: 18px;
	}

	.MenuItemNotifications:hover > .Number,
	.MenuItemNotifications:focus > .Number,
	.MenuItemNotifications[itemprop="selected"] > .Number {
		background-color: #edd171;
	}

	.MenuItemNotifications > .Number > span {
		align-self: center;
		color: black;
		flex-grow: 1;
		font-size: .75em;
		font-weight: bold;
		text-align: center;
	}

	.MenuItemLink {
		display: inline-block;
		color: #ffffff;
		text-transform: capitalize;
		font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
		font-size: 16px;
		font-weight: 400;
		padding: 0 16px 8px;
	}

	.MenuItemLink:hover, .MenuItemLink:focus,
	.MenuItemLink[itemprop="selected"] {
		color: #EDD171;
	}

	.MenuItemLink span[itemprop="subtext"] {
		font-size: 11px;
		font-family: Arial, Helvetica, sans-serif;
		color: #aaaaaa;
		display: block;
		line-height: 14px;
		margin-top: -2px;
	}

	.MenuItemLink:hover span[itemprop="subtext"],
	.MenuItemLink:focus span[itemprop="subtext"],
	.MenuItemLink[itemprop="selected"] span[itemprop="subtext"] {
		color: #F5D873;
	}

.LanguageSelector {
	margin: 5px 0 0 15px;
	cursor: pointer;
}

	.LanguageSelector [itemprop="Image"] {
		border-color: #A0A0A0;
		border-style: solid;
		border-width: 1px;
		margin-right: 5px;
	}

	.LanguageSelector [itemprop="Text"] {
		color: #FFFFFF;
		margin-right: 5px;
		vertical-align: middle;
	}

.PasswordBar {
	background-image: url('../Images/PasswordBar.jpg');
	background-position: 0;
	background-repeat: repeat-y;
	border-radius: 5px;
	border-color: #808080;
	border-width: 1px;
	border-style: solid;
	color: #000000;
	height: 17px;
	padding-top: 1px;
	text-align: center;
	width: 100px;
}

.PanelListItem {
	color: #000000;
	display: block;
	position: relative;
	margin-bottom: 15px;
}

	.PanelListItem:hover, .PanelListItem:focus {
		color: #EDD171;
	}

	.PanelListItem img {
		float: left;
		margin: 0 3px 3px 0;
		border-style: none;
	}

.ImagePlaceholder {
	background-color: #CCCCCC;
}

.DepotChartTable {
	width: 100%;
}

	.DepotChartTable td {
		padding: 0 17px 3px 0;
	}

.PriceChart {
	/* Klasse für Performance Chart */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #EAC019; /* Kurs */
	background-color: #BF9D37; /* Trendlinie */
}

.LineChartStandards {
	/* Standardwerte für alle ppcLineCharts */
	background-color: #FFFFFF; /* Zweite Farbe für Farbübergang des Hintergrundes */
	color: #900000; /* Erste 2 Stellen werden für Alpha-Wert der Hintergrundfarbe verwendet. */
}

.Dialog {
	background-color: #FFFFFF;
	border-color: #000000;
	border-radius: 5px;
	border-style: solid;
	border-width: 1px;
	padding: 1px;
	z-index: 125 !important;
}

.DialogTitle {
	background-color: #CCCCCC;
	border-color: #808080;
	border-radius: 5px;
	border-style: solid;
	border-width: 1px;
	color: #000000;
	cursor: move;
	font-weight: bold;
	padding: 5px;
	text-align: center;
	transition-property: background-color, border-color, color;
	transition-duration: 0.3s;
	transition-timing-function: linear;
}

	.DialogTitle:hover, .DialogTitle:focus {
		background-color: #A0A0A0;
		border-color: #404040;
		color: #000000;
	}

.DialogContent {
	min-width: 200px;
	padding: 5px;
}

	.DialogContent table {
		width: 100%;
	}

	.DialogContent td {
		padding: 0;
		text-align: center;
	}

.DialogBackground {
	background-color: #404040;
	opacity: 0.25;
	z-index: 100 !important;
}

.DialogTableScroll {
	border-bottom: 1px solid rgba(0, 0, 0, 0.33);
	border-top: 1px solid rgba(0, 0, 0, 0.33);
	margin-right: 3px;
	max-height: 410px;
	overflow-x: visible;
	overflow-y: scroll;
	padding-top: 5px;
	padding-right: 2px;
}

.SubHeaderHelp {
	position: relative;
}

	.SubHeaderHelp .OverlayText {
		bottom: 44px;
		color: #FFFFFF;
		left: 17px;
		font-size: 34pt;
		position: absolute;
	}

.SubHeaderMenu {
	height: 54px;
}

	.SubHeaderMenu .Item {
		color: #FFFFFF;
	}

		.SubHeaderMenu .SelectedItem, .SubHeaderMenu .SelectedItem:hover,
		.SubHeaderMenu .Item:hover, .SubHeaderMenu .Item:focus,
		.SubHeaderMenu .Item:hover .Subtext, .SubHeaderMenu .Item:focus .Subtext {
			color: #EDD171;
		}

	.SubHeaderMenu .Item, .SubHeaderMenu .SelectedItem {
		float: left;
		font-size: 14px;
		border-left: 1px solid #505050;
		height: 54px;
	}

		.SubHeaderMenu .Item > div, .SubHeaderMenu .SelectedItem > div {
			border-left: 1px solid #000000;
			padding: 8px 15px 0 15px;
			height: 46px; /* 54px des Containers - 8px padding-top */
		}

		.SubHeaderMenu .Item:last-child, .SubHeaderMenu .SelectedItem:last-child {
			border-right: 1px solid #000000;
		}

			.SubHeaderMenu .Item:last-child > div, .SubHeaderMenu .SelectedItem:last-child > div {
				border-right: 1px solid #505050;
			}

		.SubHeaderMenu .Item span, .SubHeaderMenu .SelectedItem span {
			display: block;
		}

		.SubHeaderMenu .SelectedItem .Subtext {
			color: #EDD171;
			font-size: 11px;
			margin-top: -5px;
		}

		.SubHeaderMenu .Item .Subtext {
			color: #AAAAAA;
			font-size: 11px;
			margin-top: -5px;
		}

.SubHeaderEmpty {
	height: 54px;
}

/* Site.Master */
.main {
	width: 1090px;
	padding: 0;
	margin: 0 auto;
	font-size: 0.875em;
	line-height: 1.428em;
}

.ppcWebLabelSmaller {
	width: 1090px;
	padding: 0px;
	margin: 0px auto;
	font-size: 0.8em;
	line-height: 1.428em;
}

.wrapper {
	width: 100%;
	overflow: hidden;
}

.p5 {
	margin-bottom: 18px;
}

.color-1 {
	color: #FFFFFF;
	text-decoration: none;
}

	.color-1:hover, .color-1:focus {
		color: #FFFFFF;
		text-decoration: underline;
	}

.color-4 {
	color: #EDD171;
	margin-bottom: 10px;
}

.block {
	display: block;
}

.indent-bot2 {
	margin-bottom: 24px;
	width: 100%;
	overflow: hidden;
}

.mb4 {
	margin-bottom: 4px;
	display: block;
}

.header {
	width: 100%;
	position: relative;
	z-index: 2;
}

.header-line {
	background: url(../Images/Background/header-bg.jpg);
	padding-bottom: 2px;
}

.header-tborder {
	background: url(../Images/Background/line-1.png) left 1px repeat-x;
}

.header-bborder {
	background: url(../Images/Background/line-1.png) left bottom repeat-x;
}

.HeaderImage {
	height: 95px;
	padding: 19px 0 0 54px;
	position: relative;
}

	.HeaderImage > span {
		position: absolute;
		left: 64px;
		top: 16px;
		color: #FFFFFF;
		font-size: 10px;
		font-family: Arial, Helvetica, sans-serif;
	}

	.HeaderImage.In {
		width: 227px;
	}

	.HeaderImage.Out {
		width: 327px;
	}

	.RegistrationLink {
		display: block;
		position: relative;
	}

	.RegistrationLink > span {
		position: absolute;
		top: 25px;
		left: 30px;
		font-size: 20px;
		color: #333333;
	}

.clear, .ClearFloating {
	clear: both;
}

.content {
	width: 100%;
	padding: 3px 0 0 0;
	position: relative;
	min-height: 300px;
	z-index: 1;
	background: url(../Images/Background/container-2-bg.gif);
}

.contentStatistics {
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	background: url(../Images/Background/header-bg.jpg);
}

.TextFontStatistics {
	font-size: 16px;
	color: white;
	/*color: #d1b53f;	*/
}

.HeaderFontStatistics {
	font-size: 18px;
	color: #D9CA6F;
	/*color: #d1b53f;*/
}

.footer {
	width: 100%;
	padding: 0 0 0;
	line-height: 20px;
}

.footer-topline {
	background: url(../Images/Background/footer-line.png) left 1px repeat-x;
	width: 100%;
	padding: 37px 0 0 0;
}

.footer-list li {
	background: url(../Images/Background/footer-list-li.png) left bottom repeat-x;
	font-size: 14px;
	line-height: 20px;
	padding: 4px 0 6px 0;
	list-style: none;
}

	.footer-list li.first {
		padding-top: 0;
	}

	.footer-list li.last {
		padding-bottom: 0;
		background: none;
	}

	.footer-list li a {
		color: #808184;
		padding-left: 9px;
		background: url(../Images/Background/marker-1.gif) left 7px no-repeat;
		text-decoration: none;
	}

		.footer-list li a:hover, .footer-list li a:focus {
			color: #FFFFFF;
		}

.list-services {
	padding: 0;
	margin-top: -5px;
	list-style: none;
}

	.list-services li {
		padding: 0;
		font-size: 14px;
		line-height: 30px;
	}

		.list-services li a {
			text-decoration: none;
			color: #808184;
			padding-left: 27px;
		}

			.list-services li a:hover, .list-services li a:focus {
				color: #FFFFFF;
			}

.footer-bottom {
	background: url(../Images/Background/fotter-bottom.png);
	padding: 22px 0 22px 30px;
}

.Stil1 {
	font-size: 150%;
}

.Stil2 {
	color: #808184;
}

.Stil3 {
	color: #996600;
	font-weight: bold;
}

.Stil4 {
	color: #996600;
}

.Stil5 {
	font-size: 12px;
}

.Stil6 {
	color: #808184;
	font-size: 12px;
}

.Stil9 {
	color: #333333;
}

.Stil10 {
	color: #000000;
}

.container_24 {
	margin-left: auto;
	margin-right: auto;
	width: 960px;
}

.grid_3 {
	display: inline;
	float: left;
	position: relative;
	margin-left: 5px;
	margin-right: 5px;
	width: 110px;
	padding-right: 30px;
}

.grid_4 {
	display: inline;
	float: left;
	position: relative;
	margin-left: 5px;
	margin-right: 5px;
	width: 150px;
	padding-right: 30px;
}

.grid_5 {
	display: inline;
	float: left;
	position: relative;
	margin-left: 5px;
	margin-right: 5px;
	padding-right: 30px;
}

.grid_8 {
	display: inline;
	float: left;
	position: relative;
	margin-left: 5px;
	margin-right: 5px;
	width: 320px;
}

/* DevExpress Styles */
/* Scheduler */
.dxscAptSelDiv {
	border: 1px solid #000000;
}

/* Eingabe Controls */
.dxeEditArea, input.dxeEditArea[type="text"], input.dxeEditArea[type="password"], .dxeListBox, .dxeListBoxItem {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
}

	/* ComboBox */
	.dxeListBox td {
		padding: 0;
	}

td.dxeListBoxItem {
	padding: 2px;
}

.dxpc-ddSys {
	margin: 1px;
}

input.dxeEditArea[type="text"], input.dxeEditArea[type="password"] {
	height: auto;
	background-color: transparent;
	color: inherit;
}

.dxeEditAreaSys {
	height: auto;
}

.dxeButtonEditSysWithSpacing td.dxic {
	padding: 0 2px;
}

.dxeButtonEditSys {
	border-spacing: inherit;
}

.row {
	margin: 0 0 12px 0;
}

.col-sm-12.newline {
	height: 6px;
}

.col-sm-6 {
	width: 300px;
}

.paypal-hidden {
	display: none;
}

.SecAppHeader {
	padding-bottom: 1.5em;
}

.SecAppList {
	padding-left: 1.5em;
}

	.SecAppList span.Item::before {
		content: '•';
		display: inline-block;
		font-family: monospace;
		font-size: 16pt;
		margin-left: -.5em;
		width: .75em;
	}

	.SecAppList .SecAppSection.Done > span.Item::before {
		content: '✓';
		color: #00aa00;
	}

.SecAppSection {
	padding-bottom: 1em;
}

	.SecAppSection.Active {
		font-weight: bolder;
		font-size: 1.2em;
	}

	.SecAppSection.Inactive {
		opacity: .33;
	}

.SecAppCode {
	color: #EAC019;
	font-size: 1.5em;
	font-weight: bolder;
}

.Autocomplete {
	position: relative;
}

.Autocomplete .Search {
	display: flex;
}

.Autocomplete .Search input[type="text"] {
	border-color: #808080;
	border-radius: 5px;
	border-style: solid;
	border-width: 1px;
	padding: 1px 2px;
	height: 18px;
	width: 169px;
}

.Autocomplete .Search input[type="text"] + div {
	display: none;
}

.Autocomplete .Search input[type="text"][readonly="readonly"] {
	background-color: #FFFFDF;
	border-color: #A0A000;
	color: #606000;
	border-radius: 5px 0 0 5px;
	width: 148px;
}

.Autocomplete .Search input[type="text"][readonly="readonly"] + div {
	cursor: pointer;
	border-color: #A0A000;
	border-radius: 0 5px 5px 0;
	border-style: solid solid solid none;
	border-width: 1px;
	display: inherit;
	font-size: larger;
	font-weight: bold;
	padding: 0 5px;
	width: 10px;
}

.Autocomplete .Result {
	background-color: #f0f0f0;
	border: 1px black solid;
	left: 0;
	position: absolute;
	top: 22px;
	user-select: none;
}

.Autocomplete .Result.Hidden {
	display: none;
}

.Autocomplete .Result.Error {
	color: #c00000;
}

.Autocomplete .Result.Text,
.Autocomplete .Result.Error {
	cursor: default;
	font-style: italic;
	padding: 1px 3px;
}

.Autocomplete .Result.Table {
	display: table;
}

.Autocomplete .Result.Table > div {
	display: table-row;
}

.Autocomplete .Result.Table > div[data-key] {
	cursor: pointer;
}

.Autocomplete .Result.Table > div:nth-child(odd) {
	background-color: #e0e0e0;
}

.Autocomplete .Result.Table > div:hover {
	background-color: #c8c8c8;
}

.Autocomplete .Result.Table > div:first-child {
	/*cursor: default;*/
	font-weight: bold;
	background-color: #808080;
	color: #f0f0f0;
}

.Autocomplete .Result.Table > div > div {
	display: table-cell;
	padding: 1px 3px;
}

.HinweisAnnahme span {
	display: block;
}

.HinweisAnnahme p {
	margin-bottom: 1em;
}

.HinweisAnnahme .Header {
	color: #ae9033;
	font-size: 1.1em;
	font-weight: bolder;
}

.HinweisAnnahme .Bold {
	font-weight: bolder;
}
