html
{
	font-family: Arial, sans-serif;
	font-size: 95%;
	line-height: normal;
}

body
{
	margin: 8px;
}

.noPadding,
table.noPadding > tbody > tr > th,
table.noPadding > tbody > tr > td
{
	padding: 0;
}

a:link
{
	color: #0000FF;
}

a:visited
{
	color: #0000FF;
}

a:active
{
	color: #0000FF;
}

a:hover
{
	color: #0000FF;
}

/* override background colour of list box items so on Chrome selected but inactive items won't change to grey */
select option:checked
{
	/* hack: use linear-gradient to override background colour */
	background: #5BB0FF linear-gradient(0deg, #5BB0FF 0%, #5BB0FF 100%);
}

button, input, optgroup, select, textarea
{
	line-height: 1;
}

input[type="text"], input[type="password"], select, textarea
{
	border-width: 2px;
	border-color: #EEEEEE;
	border-style: inset;
}

input[type="checkbox"], input[type="radio"]
{
	margin: 3px;
}

input[type="text"], input[type="password"], textarea, select
{
	background-color: White;
}

input:not([type="image" i]), textarea
{
	box-sizing: border-box;
}

.MonospaceFont
{
	font-family: Courier New, Monospace;
}

.PostbackPanel table
{
	border: 2px outset lightgray;
	box-shadow: 0 0 2px 1px white;
}
.PostbackPanel td
{
	border: none;
}
.PostbackPanel img
{
	filter: gray;	/* IE6-9 */
	-webkit-filter: grayscale(1) brightness(1.125);	/* Google Chrome, Safari 6+ & Opera 15+ */
	filter: grayscale(1) brightness(1.125);	/* Microsoft Edge and Firefox 35+ */
}

.IAKWFAnmeldung
{
	display: block;
	margin: 15px;
}
.IAKWFAnmeldung table
{
	border: none;
}
.IAKWFAnmeldung td
{
	border: none;
	padding: 6px;
}
.IAKWFAnmeldung td.Label
{
	text-align: left;
	width: 180px;
}
.IAKWFAnmeldung td.Input
{
	padding-left: 0px;
	width: 180px;
}
.IAKWFAnmeldung td.Buttons
{
	text-align: left;
	padding-left: 194px;
	padding-top: 10px;
}
.IAKWFAnmeldung td.Buttons input[type="submit"]
{
	min-width: 100px;
}
.LoginLabelVersion
{
	color: transparent;
	font-size: x-small;
}

.IAKWebTreeMenuTitle
{
	font-size: 110%;
	font-weight: bold;
}
.IAKWebTreeMenu
{
	font-size: 110%;
	line-height: 1.15;
	margin-top: 1em;
}
.IAKWebTreeMenu a
{
	text-decoration-line: none;
}
.IAKWebTreeMenu .LeafNode a:hover
{
	text-decoration-line: underline;
}

.WorkingList .Title
{
	font-size: 110%;
	font-weight: bold;
}
.WorkingList .Links li
{
	line-height: 1.5;
}

.Customizing
{
	font-weight: bold;
}

.CustomizingButtons
{
}

.CustomizingPagers
{
	font-weight: bold;
}

.CustomizingPagersCurrentPage
{
	color: red;
	font-weight: bold;
}

a.CustomizingPagersCurrentPage:link
{
	color: red;
}

a.CustomizingPagersCurrentPage:visited
{
	color: red;
}

a.CustomizingPagersCurrentPage:active
{
	color: red;
}

.CustomizingDataGrid
{
}

.CustomizingDataGridHeader *
{
	font-weight: bold;
}

.CustomizingDataGridHeader select, .CustomizingDataGridHeader select *
{
	font-weight: normal;
}

.CustomizingDataGridFooter
{
}

.CustomizingDataGridItem
{
	background-color: White;
}

.CustomizingDataGridAlternatingItem
{
	background-color: #F0F0F0;
}

.CustomizingDataGridSelectedItem
{
	background-color: #FFFFCC;
}

.CustomizingDataGridEditItem
{
	background-color: #FFFFCC;
}

.CustomizingDataGrid .ReportDescriptionDisabled
{
	color: silver;
}

.DataGrid
{
}

.DataGridHeader *
{
	font-weight: bold;
}

.DataGridFooter
{
}

.DataGridItem
{
}

.DataGridAlternatingItem
{
	background-color: #F0F0F0;
}

.DataGridSelectedItem
{
	background-color: #FFFFCC;
}

.DataGridEditItem
{
	background-color: #FFFFCC;
}

.DataGridPagersTable_Pagers
{
	font-weight: bold;
}

.DataGridPagersTable_CurrentPage
{
	color: red;
	font-weight: bold;
}

a.DataGridPagersTable_CurrentPage:link
{
	color: red;
}

a.DataGridPagersTable_CurrentPage:visited
{
	color: red;
}

a.DataGridPagersTable_CurrentPage:active
{
	color: red;
}

.nowrap
{
	white-space: nowrap;
}
table.nowrap th, table.nowrap td
{
	white-space: nowrap;
}
.nowrap div
{
	white-space: nowrap;
}

.InfoButton
{
	width: 15px;
	height: 15px;
	line-height: 15px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 2px solid blue;
	color: blue;
	text-align: center;
	font-weight: bold;
	font-size: larger;

	margin-left: 5px;
	margin-right: 5px;

	cursor: default;	/* don't show text cursor */
}
.HelpNoteContainer
{
	position: relative;
}
.HelpNoteContainer > div
{
	position: absolute;
	pointer-events: none;	/* prevents hover events on note itself */
	z-index: 0;	/* ensures that current note is brought to the foreground immediately */

	visibility: hidden;
	opacity: 0.0;
	-webkit-transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
	-moz-transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
	-ms-transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
	-o-transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
	transition: opacity 100ms ease-in-out, visibility 200ms ease-in-out;
}
.ShowHelpNote:hover .HelpNoteContainer > div
{
	z-index: 1;	/* ensures that current note is brought to the foreground immediately */

	visibility: visible;
	opacity: 1.0;
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
}
.HelpNoteContainer .Arrow
{
	position: absolute;
	top: 9px;

	height: 0px;
	width: 260px;
	border-top: 1px solid black;
}
.HelpNoteContainer .ArrowHead
{
	position: absolute;
	left: 260px;
	top: 5px;

	width: 0px;
	height: 0px;
	border-top: 4px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid black;
}
.HelpNoteContainer .Note
{
	position: absolute;

	background-color: LightYellow;
	border: 1px solid black;
	padding: 3px;

	text-align: left;
	white-space: nowrap;
	font-size: smaller;
}
.HelpNoteContainer.Append > div
{
	top: 2px;
}
.HelpNoteContainer.Right
{
	z-index: -1; /* ensure arrow is hidden behind remaining columns */
}
.HelpNoteContainer.Right > div
{
	left: 30px;
}
.HelpNoteContainer.Right .Note
{
	left: 267px;
}
.Note .NoteTitle
{
	text-decoration: underline;
}

table.CriteriaTable
{
}

.CriteriaMainHeaderPanel
{
}

.CriteriaAdditionalHeaderPanel
{
	float: right;
	color: Gray;
}

.StatusVorhabensumsetzungCriteriaControl
{
	margin-bottom: 30px;
}
.StatusVorhabensumsetzungCriteriaControl table.CriteriaTable > tbody > tr
{
	height: 28px;
}
.StatusVorhabensumsetzungCriteriaControl table.CriteriaTable > tbody > tr + tr
{
	border-top: 1px dotted;
}
.StatusVorhabensumsetzungCriteriaControl table.CriteriaTable > tbody > tr > td + td
{
	border-left: 1px dotted;
}
.StatusVorhabensumsetzungCriteriaControl table.CriteriaTable > tbody > tr > td > *
{
	display: inline-block;
	vertical-align: middle;
}
.StatusVorhabensumsetzungCriteriaControl .CriteriaTable .Name
{
	padding-left: 7px;
	padding-right: 7px;
}
.StatusVorhabensumsetzungCriteriaControl .CriteriaTable .Description
{
	min-width: 550px;
	padding-left: 7px;
	padding-right: 7px;
}
.StatusVorhabensumsetzungCriteriaControl .CriteriaTable .From, .StatusVorhabensumsetzungCriteriaControl .CriteriaTable .To
{
	padding: 2px;
}
.StatusVorhabensumsetzungCriteriaControl .CriteriaTable .From select, .StatusVorhabensumsetzungCriteriaControl .CriteriaTable .To select
{
	text-align-last: right;
}
.StatusVorhabensumsetzungCriteriaControl .CriteriaTable .From option, .StatusVorhabensumsetzungCriteriaControl .CriteriaTable .To option
{
	/* HACK: direction: rtl; */
}
.StatusVorhabensumsetzungCriteriaControl .CriteriaTable .Include
{
	padding-left: 3px;
	padding-right: 7px;
}

.CheckBoxSelectAll
{
	margin-left: 10px;
}

.InactiveNote
{
	font-size: smaller;
	margin-left: 10px;
}

.ItemBestandskonto_Active
{
}
.ItemBestandskonto_NotActive
{
	background-color: #FFD0D0;
}

.ItemMassnahmenart_Active
{
}
.ItemMassnahmenart_NotActive
{
	background-color: #FFD0D0;
}

.ItemVerrechnunskonto_Active
{
}
.ItemVerrechnunskonto_NotActive
{
	background-color: #FFD0D0;
}

.MaterialSucheGeschaeftspartner_Criterion
{
	margin-left: 5px;
	color: Gray;
}

.ItemGeschaeftspartner.Active
{
	/*background-color: #E8FFE8;*/
}
.ItemGeschaeftspartner.NotActive
{
	background-color: #FFD0D0;
}
.ItemGeschaeftspartner.InvalidAddress
{
	color: Red;
}
.ItemGeschaeftspartner.AddressNotChecked
{
	color: Orange;
}
.ItemGeschaeftspartner.AddressOK
{
	color: Green;
}
.ItemGeschaeftspartner
{
	vertical-align: top;
}
.ItemGeschaeftspartner .Inr
{
	padding-right: 5px;
	white-space: nowrap;
	width: 1px;
}
.ItemGeschaeftspartner .CreationTime
{
	text-align: right;
}

.ItemKostenstelle_NotActive
{
	background-color: #FFE0E0;
}

.ItemBudgetgruppe_None
{
	background-color: #FFFFFF;
}
ItemBudgetgruppe_Foerdermassnahme
{
	background-color: #D0FFD0;
}
.ItemBudgetgruppe_Reserve
{
	background-color: #FFFFC8;
}
.ItemBudgetgruppe_Budgetumschichtungen
{
	background-color: #C8FFFF;
}
.ItemBudgetgruppe_Rueckstellungen
{
	background-color: #FAEBD7;	/* AntiqueWhite */
}

.ItemPlosdorfBeleg td,
.ItemOffenerBeleg td
{
	vertical-align: top;
}
.ItemPlosdorfBeleg .BelegNummer,
.ItemOffenerBeleg .BelegNummer
{
}
.ItemPlosdorfBeleg .Geschaeftspartner,
.ItemOffenerBeleg .Geschaeftspartner
{
}
.ItemPlosdorfBeleg .Date,
.ItemOffenerBeleg .Date
{
	width: 90px;
	text-align: right;
	white-space: nowrap;
}
.ItemPlosdorfBeleg .BetragIncl,
.ItemOffenerBeleg .BetragIncl
{
	width: 100px;
	text-align: right;
	white-space: nowrap;
}

.ItemAlarmExpired
{
	color: Red;
}
.ItemAlarmToday
{
}
.ItemAlarmFuture
{
	color: Green;
}
.ItemAlarm
{
	vertical-align: top;
}
.ItemAlarm .Inr
{
	padding-right: 5px;
	white-space: nowrap;
	width: 1px;
}
.ItemAlarm .AlarmDate
{
	text-align: right;
}
.ItemAlarmExpired .AlarmDate, .ItemAlarmToday .AlarmDate
{
	font-weight: bold;
}

.PreselectedItem
{
	background-color: #E0FFFF;	/* LightCyan */
}

.Baustellenhistory_DataGridDays_ErrorMessage
{
	color: Red;
	border-color: inherit;
}
.Baustellenhistory_DataGridDays_Today
{
	background-color: Yellow;
}
.Baustellenhistory_DataGridDays_VermietetPauseMixed
{
	background-color: #ADDFFF;	/* LightBlue */
}
.Baustellenhistory_DataGridDays_Verrechnet
{
	float: left;
	background-color: Green;
}
.Baustellenhistory_DataGridDays_Pause
{
	float: left;
	background-color: Red;
}

.VorhabenImport_Warning
{
	margin-left: 20px;
	color: #FF8C00;
}

table.VorhabenHeader
{
	border-collapse: collapse;
}

td.VorhabenHeaderLabel
{
	width: 1px;
	padding-right: 10px;
	padding-top: 5px;
	white-space: nowrap;
}

.LabelAlias, .LabelBudgetgruppe, .LabelErstantragFreigegebenBund, .LabelErstantragFreigegebenLand, .LabelGewaessername, .LabelSchwerpunktmassnahme
{
	color: #0000FF;
}

.ItemKommissionssitzung_Active
{
}
.ItemKommissionssitzung_NotActive
{
	background-color: #FFD0D0;
}

.VorhabenWartung_Button
{
	width: 198px;
	margin: 0 2px;
}

.VorhabenWartung_BuanInformation
{
	padding-left: 15px;
	font-size: 0.85em;
}

.VorhabenWartung_WisTransferInformation
{
	padding-left: 15px;
	font-size: 0.85em;
	color: silver;
}

table.VorhabenWartung_Reports
{
}
table.VorhabenWartung_Reports tr
{
}
table.VorhabenWartung_Reports th, table.VorhabenWartung_Reports td
{
	padding: 4px;
}
table.VorhabenWartung_Reports td.ReportDescription input
{
	width: 520px;
}

table.VerortungControl_Table
{
}
tr.VerortungControl_Table
{
	background-color: #FFFFE8;
}
tr.VerortungControl_Table.Separator
{
	background-color: inherit;
	height: 7px;
}
td.VerortungControl_Table.Separator
{
	border-left-style: hidden;
	border-right-style: hidden;
}
td.VerortungControl_Table.Header
{
	padding: 7px;
	white-space: nowrap;
	vertical-align: middle;
	font-weight: bold;
}
td.VerortungControl_Table.Label
{
	padding: 7px;
	white-space: nowrap;
	vertical-align: middle;
}
td.VerortungControl_Table.Input
{
	padding: 7px;
	white-space: nowrap;
	vertical-align: middle;
}
td.VerortungControl_Table.Description
{
	width: 534px;
	padding: 7px;
	white-space: normal;
	vertical-align: top;
	font-size: smaller;
}

table.Formblaetter_Choice
{
	margin-top: 20px;
	margin-bottom: 20px;
}
tr.Formblaetter_Choice
{
	text-align: center;
}
td.Formblaetter_Choice
{
	padding-left: 5px;
	padding-right: 5px;
}
.Formblaetter_Button
{
	width: 360px;
}

table.Formblaetter_Table
{
	background-color: #FFFFE8;
}
td.Formblaetter_Table.Label
{
	padding: 7px;
	white-space: nowrap;
	vertical-align: middle;
}
td.Formblaetter_Table.Unit
{
	padding: 7px;
	white-space: nowrap;
	text-align: center;
	vertical-align: middle;
}
td.Formblaetter_Table.Input
{
	padding: 7px;
	white-space: nowrap;
	vertical-align: middle;
}
.Formblaetter_Table .Disabled
{
	color: Gray;
}

.IbanSearchResult .ResultRowHeader
{
	background-color: #D3D3D3;
	font-weight: bold;
}
.IbanSearchResult .ResultRowHeader td
{
}
.IbanSearchResult td
{
	padding-left: 4px;
	padding-right: 4px;
}

.BelegSearch .ResultRowHeader
{
	background-color: #D3D3D3;
	font-weight: bold;
}
.BelegSearch .ResultRowHeader td
{
}
.BelegSearch td
{
	padding-left: 4px;
	padding-right: 4px;
}
.BelegSearch .ResultCellTop
{
	border-top-color: Black;
	border-top-width: 1px;
	border-top-style: Solid;
}
.BelegSearch .ResultCellBottom
{
	border-bottom-color: Black;
	border-bottom-width: 1px;
	border-bottom-style: Solid;
}
.BelegSearch .ResultCellLeft
{
	border-left-color: Black;
	border-left-width: 1px;
	border-left-style: Solid;
}
.BelegSearch .ResultCellRight
{
	border-right-color: Black;
	border-right-width: 1px;
	border-right-style: Solid;
}
.BelegSearch .BelegNummerWidth
{
	width: 15%;
	min-width: 220px;
}
.BelegSearch .ZahlungsfristExpired
{
	color: Red;
	font-weight: bold;
}
.BelegSearch .ZahlungsfristToday
{
	font-weight: bold;
}

.BelegWartung_BelegStatusNumber
{
	font-weight: bold;
}
.BelegWartung_BelegStatusText
{
	font-weight: bold;
	font-size: smaller;
}
.BelegWartung_BelegStatusHistory
{
	font-size: smaller;
	color: Gray;
}
.BelegWartung_RevisionDateHistory
{
	display: inline-block;
	vertical-align: top;
	padding-top: 3px;
	font-size: smaller;
	color: Gray;
}
.BelegWartung_BelegNummer
{
	width: 100%;
	font-weight: bold;
}
.BelegWartung_MaterialSucheGeschaeftspartner
{
}
.BelegWartung_MaterialSucheGeschaeftspartner select
{
	font-size: 85% !important;
	font-weight: bold;
}
.BelegWartung_MaterialSucheGeschaeftspartner.FixedResult select
{
	font-family: Arial, sans-serif !important;
	font-size: 100% !important;
}
.BelegWartung_LabelGeschaeftspartnerValue
{
	font-weight: bold;
}
.BelegWartung_Section
{
	margin-top: 16px;
}
.BelegWartung_Label
{
	display: inline-block;
	width: 170px;
	white-space: nowrap;
	padding-top: 3px;
	padding-bottom: 3px;
}
.BelegWartung_TextCell
{
	padding-top: 3px;
}
.LabelGegenbuchung
{
	display: inline-block;
	width: 278px;
	vertical-align: middle;
	color: Gray;
}

table.ReportButtons td.ReportNumber
{
	padding-left: 8px;
	color: silver;
	font-size: 85%;
}
table.ReportButtons td.ReportDescription
{
}
table.ReportButtons td.ReportInfo
{
	padding-left: 8px;
}
.ReportButton
{
	min-width: 160px;
	margin-left: 8px;
	margin-bottom: 4px;
}

.Invoices .Canceled
{
	text-decoration: line-through;
}
.Invoices .CancelationInvoice
{
	font-style: italic;
}

.UserMaintenance_Skills
{
	font-size: 85%;
}

.AmountPaused.MixedPause
{
	font-weight: bold;
}

.SvgIcon
{
	fill: currentColor;
	width: 1em;
	height: 1em;
	display: inline-block;
	font-size: 1.5rem;
	transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
	flex-shrink: 0;
	-moz-user-select: none;
}
.SvgButton
{
	border-radius: 50%;
	color: rgba(0, 0, 0, 0.54);
	cursor: pointer;
}
.SvgButton:hover
{
	background-color: rgba(0, 0, 0, 0.16);
}

.Attachments
{
	min-height: 75px;
}
.Attachments.IsDragover
{
	background-color: #EEE;
}
.Attachments .Information
{
	display: inline-block;
	margin: 5px;
	color: green;
}
.Attachments .Warning
{
	color: darkorange;
}
.Attachments .Error
{
	display: inline-block;
	margin: 5px;
	color: red;
}

.Attachment
{
	display: inline-block;
	margin: 5px;
}
.Attachment .Link
{
	display: inline-block;
}
.Attachment .Thumbnail
{
	background-color: white;
	border: 1px solid #ddd;
	box-shadow: 3px 5px 5px #888888;
}
.Attachment .SvgIcon
{
	display: block;
	margin: 2px;
}
.Attachment .FileName
{
	display: inline-block;
	font-size: smaller;
	margin-top: 5px;
	max-width: 140px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
