diff --git a/HaWeb/Controllers/BriefeContoller.cs b/HaWeb/Controllers/BriefeContoller.cs index 2bcf204..9329200 100644 --- a/HaWeb/Controllers/BriefeContoller.cs +++ b/HaWeb/Controllers/BriefeContoller.cs @@ -112,6 +112,14 @@ public class Briefecontroller : Controller { model.Texts = texts; + if (System.IO.File.Exists("./wwwroot/pdf/HKB_" + id + ".pdf")) { + model.PDFFilePath = "/pdf/HKB_" + id + ".pdf"; + } + + if (System.IO.File.Exists("./wwwroot/pdf/HKB_" + model.MetaData.Meta.Sort.Year + ".pdf")) { + model.YearPDFFilePath = "/pdf/HKB_" + model.MetaData.Meta.Sort.Year + ".pdf"; + } + // Return return View("~/Views/HKB/Dynamic/Briefe.cshtml", model); } diff --git a/HaWeb/Models/BriefeViewModel.cs b/HaWeb/Models/BriefeViewModel.cs index cff2ea9..70a2e72 100644 --- a/HaWeb/Models/BriefeViewModel.cs +++ b/HaWeb/Models/BriefeViewModel.cs @@ -7,6 +7,10 @@ public class BriefeViewModel { public BriefeMetaViewModel MetaData { get; private set; } public string? DefaultCategory { get; set; } + public string? PDFFilePath { get; set; } + + public string? YearPDFFilePath { get; set; } + private List<(string, string, string, string, string, string)>? _ParsedEdits; private List<(string, string, string, string, string)>? _ParsedHands; private List<(string Category, List)>? _Texts; diff --git a/HaWeb/Views/HKB/Dynamic/Briefe.cshtml b/HaWeb/Views/HKB/Dynamic/Briefe.cshtml index de838fa..75a8d43 100644 --- a/HaWeb/Views/HKB/Dynamic/Briefe.cshtml +++ b/HaWeb/Views/HKB/Dynamic/Briefe.cshtml @@ -15,46 +15,79 @@
@foreach (var app in Model.Texts) { - @if (app.Category != Model.DefaultCategory) { } + @if (app.Category != Model.DefaultCategory) + { + + } } - @if (Model.Texts != null && Model.Texts.Where(x => x.Category == Model.DefaultCategory).Any()) { - + @if (Model.Texts != null && Model.Texts.Where(x => x.Category == Model.DefaultCategory).Any()) + { + } - PDF + +
+ @if (Model.PDFFilePath != null || Model.YearPDFFilePath != null) + { + + } + @if (Model.MetaData.Next != null || Model.MetaData.Prev != null) { - }
@@ -62,93 +95,109 @@
@foreach (var app in Model.Texts) { - @if (app.Category != Model.DefaultCategory) { -
- @foreach (var text in app.Item2) - { - var mw = (text.MinWidth) ? "ha-minwidth" : ""; -
- @if (app.Item2.Count > 1 && !String.IsNullOrWhiteSpace(text.ParsedText) && !String.IsNullOrWhiteSpace(text.Title) ) { -

@text.Title

+ @if (app.Category != Model.DefaultCategory) + { +
+ @foreach (var text in app.Item2) + { + var mw = (text.MinWidth) ? "ha-minwidth" : ""; +
+ @if (app.Item2.Count > 1 && !String.IsNullOrWhiteSpace(text.ParsedText) && !String.IsNullOrWhiteSpace(text.Title)) + { +

@text.Title

+ } + @if (!String.IsNullOrWhiteSpace(text.ParsedText)) + { + @Html.Raw(text.ParsedText) + } +
} - @if (!String.IsNullOrWhiteSpace(text.ParsedText)) { @Html.Raw(text.ParsedText) } -
- } -
+
} } - @if (Model.Texts != null && Model.Texts.Where(x => x.Category == Model.DefaultCategory).Any()) { -
+ @if (Model.Texts != null && Model.Texts.Where(x => x.Category == Model.DefaultCategory).Any()) + { +
@foreach (var text in Model.Texts.Where(x => x.Category == Model.DefaultCategory).First().Item2) { var mw = (text.MinWidth) ? "ha-minwidth" : ""; -
- @if (!String.IsNullOrWhiteSpace(text.ParsedText) && !String.IsNullOrWhiteSpace(text.Title) ) { -

@text.Title

- } - @if (!String.IsNullOrWhiteSpace(text.ParsedText)) { @Html.Raw(text.ParsedText) } -
+
+ @if (!String.IsNullOrWhiteSpace(text.ParsedText) && !String.IsNullOrWhiteSpace(text.Title)) + { +

@text.Title

+ } + @if (!String.IsNullOrWhiteSpace(text.ParsedText)) + { + @Html.Raw(text.ParsedText) + } +
} @if (Model.ParsedHands != null && Model.ParsedHands.Any()) { -
+

Zusätze fremder Hand

-
- - @foreach (var hand in Model.ParsedHands) - { - - - - - } -
-
@hand.ParsedStart
@if(!String.IsNullOrEmpty(hand.ParsedEnd)){
–@hand.ParsedEnd
} -
@Html.Raw(@hand.Person)
-
+
+ + @foreach (var hand in Model.ParsedHands) + { + + + + + } +
+
@hand.ParsedStart
@if (!String.IsNullOrEmpty(hand.ParsedEnd)) + { +
–@hand.ParsedEnd
+ } +
@Html.Raw(@hand.Person)
+
} @if (Model.ParsedEdits != null) { -
+

Textkritische Anmerkungen

Der Brieftext wurde anhand der überlieferten Quellen (vgl. Provenienz) kritisch - geprüft. Notwendige Korrekturen gegenüber dem in ZH gedruckten Text wurden vorgenommen und sind - vollständig annotiert. Die in den beiden Auflagen von ZH angehängten Korrekturvorschläge werden - vollständig aufgelistet, werden aber nur dann im Text realisiert, sofern diese anhand überlieferter - Quellen verifiziert werden konnten.
+ geprüft. Notwendige Korrekturen gegenüber dem in ZH gedruckten Text wurden vorgenommen und sind + vollständig annotiert. Die in den beiden Auflagen von ZH angehängten Korrekturvorschläge werden + vollständig aufgelistet, werden aber nur dann im Text realisiert, sofern diese anhand überlieferter + Quellen verifiziert werden konnten.
-
- - @foreach (var edit in Model.ParsedEdits) - { - - - - - - } -
-
@edit.ParsedStart
@if(!String.IsNullOrEmpty(edit.ParsedEnd)){
–@edit.ParsedEnd
} -
- @if (!String.IsNullOrWhiteSpace(edit.Text) && !String.IsNullOrWhiteSpace(edit.Preview)) - { - - @Html.Raw(@edit.Preview)] - - } - - @Html.Raw(@edit.Text) -
-
+
+ + @foreach (var edit in Model.ParsedEdits) + { + + + + + + } +
+
@edit.ParsedStart
@if (!String.IsNullOrEmpty(edit.ParsedEnd)) + { +
–@edit.ParsedEnd
+ } +
+ @if (!String.IsNullOrWhiteSpace(edit.Text) && !String.IsNullOrWhiteSpace(edit.Preview)) + { + + @Html.Raw(@edit.Preview)] + + } + + @Html.Raw(@edit.Text) +
+
} -
- } +
+ }
\ No newline at end of file diff --git a/HaWeb/Views/Home/Kontakt.cshtml b/HaWeb/Views/Home/Kontakt.cshtml index 03533c1..c9645ea 100644 --- a/HaWeb/Views/Home/Kontakt.cshtml +++ b/HaWeb/Views/Home/Kontakt.cshtml @@ -16,7 +16,7 @@ Hirschgasse 2
69120 Heidelberg
Telefon: 06221 7259277
- E-Mail: post@hamann-ausgabe + E-Mail: post@hamann-ausgabe.de
Germanistisches Seminar der Universität Heidelberg
diff --git a/HaWeb/wwwroot/css/output.css b/HaWeb/wwwroot/css/output.css index 3d635ec..0e96a94 100644 --- a/HaWeb/wwwroot/css/output.css +++ b/HaWeb/wwwroot/css/output.css @@ -1 +1 @@ -/*! tailwindcss v3.1.1 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-family:Biolinum,sans-serif;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace,mono;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::-webkit-backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }body{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity));overflow-x:hidden}.dark body{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));background-image:none;color:rgb(255 255 255/var(--tw-text-opacity))}@media (min-width:940px){body{overflow-x:auto;overflow-y:scroll}}.ha-added,.ha-added :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-bg-opacity:1;background-color:rgb(203 213 225/var(--tw-bg-opacity))}.dark .ha-added,.dark .ha-added :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-bg-opacity:1;background-color:rgb(71 85 105/var(--tw-bg-opacity))}.ha-note,.ha-note :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.dark .ha-note,.dark .ha-note :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.ha-ful,.ha-ful :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.dark .ha-ful,.dark .ha-ful :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.ha-tul,.ha-tul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.dark .ha-tul,.dark .ha-tul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.ha-diagdel:before{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.dark .ha-diagdel:before{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.active{color:rgb(216 0 0/var(--tw-text-opacity))!important}.active,.dark .active{--tw-text-opacity:1!important}.dark .active{color:rgb(0 0 0/var(--tw-text-opacity))!important}.active:hover{--tw-text-opacity:1!important;color:rgb(216 0 0/var(--tw-text-opacity))!important}.dark .active:hover{--tw-text-opacity:1!important;color:rgb(31 41 55/var(--tw-text-opacity))!important}*{transition-duration:.1s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}body{font-size:1rem;height:100%;line-height:1.5rem;width:100%}@media (min-width:1190px){body{font-size:1.15rem;line-height:1.75rem}}.ha-found{--tw-text-opacity:1!important;color:rgb(50 112 184/var(--tw-text-opacity))!important}.ha-location{--tw-text-opacity:1!important;color:rgb(216 0 0/var(--tw-text-opacity))!important;display:none;font-size:1.25rem;line-height:1.75rem;position:absolute}@media (min-width:700px){.ha-location{display:inline-block}}.ha-zhbreak{display:none}@media (min-width:700px){.ha-zhbreak{display:inline}}.ha-up{position:relative;top:-.75rem}.ha-bzg{font-family:Libertine,serif!important;font-size:.7rem!important;font-weight:600!important;line-height:1rem!important}.ha-literal,.ha-title{display:inline}.ha-title{font-style:italic}.ha-insertedlemma{display:inline}.ha-serif{font-family:Libertine,serif}.ha-aq,.ha-aq :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-family:Biolinum,sans-serif}.ha-ul,.ha-ul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){-webkit-text-decoration-line:underline;text-decoration-line:underline}.ha-del,.ha-del :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-diagdel,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){display:inline;-webkit-text-decoration-line:line-through;text-decoration-line:line-through}.ha-hand,.ha-hand :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-family:Playfair,serif;font-size:.9rem}.ha-added,.ha-added :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){border-radius:.125rem;padding-left:.125rem;padding-right:.125rem}.ha-emph :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box),.ha-note,.ha-note :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-style:italic}.ha-sup:not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-size:80%;position:relative;top:-.3em}.ha-super:not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){display:inline-block;font-size:.7rem;font-variant-numeric:normal;line-height:1rem;line-height:1;position:relative;top:-.3em;vertical-align:baseline}.ha-sub:not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){bottom:-.25em;font-size:.7rem;line-height:1rem;line-height:1;position:relative;vertical-align:baseline}.ha-ful,.ha-ful :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){border-bottom-width:1px;display:inline;padding-bottom:2px}.ha-dul,.ha-dul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:double;text-decoration-style:double}.ha-tul,.ha-tul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){border-bottom-width:3px;border-style:double;-webkit-text-decoration-line:underline;text-decoration-line:underline}.up{position:relative;top:-.5em}.ha-alignright:not(.reference *,.reference,.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){float:right}.ha-aligncenter:not(.reference *,.reference,.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-translate-x:-50%;left:45%;position:absolute;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));white-space:nowrap}.ha-sal{display:inline-block;margin-left:1.5rem}.ha-letlink{font-variant-caps:all-petite-caps}.ha-indent-1{padding-left:.5rem}@media (min-width:700px){.ha-indent-1{padding-left:1rem}}.ha-indent-2{padding-left:1rem}@media (min-width:700px){.ha-indent-2{padding-left:2rem}}.ha-indent-3{padding-left:1.5rem}@media (min-width:700px){.ha-indent-3{padding-left:3rem}}.ha-indent-4{padding-left:2rem}@media (min-width:700px){.ha-indent-4{padding-left:4rem}}.ha-indent-5{padding-left:2.5rem}@media (min-width:700px){.ha-indent-5{padding-left:5rem}}.ha-indent-6{padding-left:5rem}@media (min-width:700px){.ha-indent-6{padding-left:11rem}}.ha-indent-7{padding-left:8rem}@media (min-width:700px){.ha-indent-7{padding-left:16rem}}.ha-collapsed-box,.ha-collapsed-box *{cursor:default;min-height:0;min-width:0;overflow:hidden;text-overflow:ellipsis;z-index:0}.ha-expanded-box{height:auto!important;max-height:100vh!important;padding-bottom:.25rem;z-index:1000}.ha-topnav-dropdown .ha-topnav-dropdown-content{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(148 163 184/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-topnav-dropdown .ha-topnav-dropdown-content a:hover{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.ha-topnav a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-topnav a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}@media (min-width:1190px){.ha-topnav a{border-bottom-width:4px;border-color:transparent}}.dark .ha-topnav a.active{--tw-border-opacity:1;border-color:rgb(51 65 85/var(--tw-border-opacity));font-weight:700}@media (min-width:1190px){.ha-topnav a.active{--tw-border-opacity:1;border-bottom-width:4px;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);border-bottom-width:1px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}}.ha-menusymbol svg{stroke:#000;--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.ha-topnav{display:flex}@media (min-width:940px){.ha-topnav{font-size:1.15rem;line-height:1.75rem}}@media (min-width:1190px){.ha-topnav{flex-grow:0;flex-shrink:0;place-self:end}}@media (min-width:1440px){.ha-topnav{margin-bottom:.25rem}}@media (min-width:1680px){.ha-topnav{font-size:1.25rem;line-height:1.75rem}}.ha-topnav a{display:none;margin-right:1.5rem}@media (min-width:1190px){.ha-topnav a{display:inline-block}}@media (min-width:1680px){.ha-topnav a{margin-right:1.75rem}}.ha-topnav a:last-child{margin-right:0}.ha-topnav-dropdown{display:none}@media (min-width:1190px){.ha-topnav-dropdown{display:inline-block;position:relative}.ha-topnav-dropdown:hover .ha-topnav-dropdown-content{display:block}}.ha-topnav-dropdown .ha-topnav-dropdown-content{display:none;margin-right:1.5rem;min-width:130px;padding-top:.25rem;right:0;white-space:nowrap;z-index:50}@media (min-width:1190px){.ha-topnav-dropdown .ha-topnav-dropdown-content{position:absolute}}.ha-topnav-dropdown .ha-topnav-dropdown-content a{display:block;margin-right:0;padding:.5rem .75rem .5rem .5rem;white-space:nowrap}.ha-topnav-dropdown .ha-topnav-dropdown-content .active{border-style:none}.ha-topnav a.active{-webkit-text-decoration-line:underline;text-decoration-line:underline;text-underline-offset:2px}@media (min-width:1190px){.ha-topnav a.active{-webkit-text-decoration-line:none;text-decoration-line:none}}.ha-topnav.ha-topnav-collapsed{display:block;font-size:1rem;height:100%;line-height:1.5rem;margin-top:1rem;width:100%}@media (min-width:940px){.ha-topnav.ha-topnav-collapsed{font-size:1.15rem;line-height:1.75rem}}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed{display:flex;margin-top:0;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}}@media (min-width:1680px){.ha-topnav.ha-topnav-collapsed{font-size:1.25rem;line-height:1.75rem}}.ha-topnav.ha-topnav-collapsed a{clear:both;display:block;padding-bottom:.25rem;padding-top:.25rem;text-align:left;width:100%}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed a{display:inline-block;padding-bottom:0;padding-top:0;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown{display:block}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown{display:inline-block}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown:hover .ha-topnav-dropdown-content{display:block}}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;border-style:none;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:block;padding-top:0}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content{display:none;padding-top:.5rem}}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content a{padding-bottom:.25rem;padding-top:.25rem}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content a{padding-bottom:.5rem;padding-top:.5rem}}header .switchsites{bottom:-2.75rem;display:none;position:absolute;right:0}@media (min-width:940px){header .switchsites{display:block}}header .switchsites .switchsitesbtn{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-drop-shadow:drop-shadow(0 1px 1px rgba(0,0,0,.05));background-color:rgb(249 250 251/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(148 163 184/var(--tw-border-opacity));box-sizing:border-box;color:rgb(30 41 59/var(--tw-text-opacity));display:flex;font-size:1rem;line-height:1.5rem;width:auto}.dark header .switchsites .switchsitesbtn,header .switchsites .switchsitesbtn{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.dark header .switchsites .switchsitesbtn{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-drop-shadow:drop-shadow(0 4px 3px rgba(0,0,0,.07)) drop-shadow(0 2px 2px rgba(0,0,0,.06));background-color:rgb(15 23 42/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}header .switchsites .switchsitesbtn:hover{--tw-text-opacity:1;--tw-drop-shadow:drop-shadow(0 1px 2px rgba(0,0,0,.1)) drop-shadow(0 1px 1px rgba(0,0,0,.06));color:rgb(0 0 0/var(--tw-text-opacity));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.dark header .switchsites .switchsitesbtn:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}header .switchsites .switchsitesbtn img{align-self:center;display:block;height:1.25rem;margin-left:.5rem;margin-right:.5rem}header .switchsites .switchsitesbtn .switchsitestext{display:block;margin:.25rem .5rem .125rem .25rem;white-space:nowrap}header .switchsites .switchsitesbtn .switchsitesarrow{display:block;height:2rem;padding:.25rem .5rem .125rem .25rem}.ha-footer .ha-footertext{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));color:rgb(23 53 87/var(--tw-text-opacity))}.dark .ha-footer .ha-footertext{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.ha-footer .ha-themetoggles{--tw-bg-opacity:1;--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);background-color:rgb(226 232 240/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);transition-duration:.3s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.dark .ha-footer .ha-themetoggles{--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}.ha-footer .ha-themetoggles #ha-toggledark:checked~.ha-themetoggleslider{background-color:rgb(226 232 240/var(--tw-bg-opacity))}.ha-footer .ha-themetoggles #ha-togglebright:checked~.ha-themetoggleslider,.ha-footer .ha-themetoggles #ha-toggledark:checked~.ha-themetoggleslider{--tw-bg-opacity:1;transition-duration:.3s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-footer .ha-themetoggles #ha-togglebright:checked~.ha-themetoggleslider{background-color:rgb(248 250 252/var(--tw-bg-opacity))}.ha-footer{font-family:Libertine,serif}.ha-footer .ha-footertext{font-size:.85rem;line-height:1.25rem;margin-left:auto;margin-right:auto;max-width:1190px;padding:.5rem 1rem;text-align:right}.ha-footer a{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-footer a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-footer .ha-themetoggles{border-radius:1.5rem;height:1rem;padding-left:.125rem;padding-right:.125rem;position:relative;white-space:nowrap;width:34px}.ha-footer .ha-themetoggles *{float:left}.ha-footer .ha-themetoggles input[type=radio]{display:none}.ha-footer .ha-themetoggles label{border-radius:1.5rem;cursor:pointer;display:block;height:11px;margin:3px 2px;text-align:center;width:11px;z-index:10}.ha-footer .ha-themetoggles .ha-themetoggleslider{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);border-radius:1.5rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);height:11px;position:absolute;top:3px;transition-duration:.1s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);width:11px}.ha-footer .ha-themetoggles #ha-toggledark:checked~.ha-themetoggleslider{left:.25rem}.ha-footer .ha-themetoggles #ha-togglebright:checked~.ha-themetoggleslider{left:19px}.ha-scrollbutton{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-bottom-left-radius:.75rem;border-top-left-radius:.75rem;bottom:1.5rem;color:rgb(30 69 112/var(--tw-text-opacity));cursor:pointer;opacity:0;padding:.5rem 1.5rem .5rem .5rem;position:fixed;right:0;text-align:center;transition-duration:.5s;transition-property:opacity;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-scrollbutton,.ha-scrollbutton:hover{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-scrollbutton:hover{--tw-text-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);color:rgb(43 97 158/var(--tw-text-opacity))}.dark .ha-scrollbutton{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.ha-scrollbuttonarrow{height:2rem;width:2rem}@media (min-width:1190px){.ha-scrollbuttonarrow{height:2.5rem;width:2.5rem}}.ha-static{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-static{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.ha-static h3{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity))}.dark .ha-static h3{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity));font-weight:700}.ha-static table th{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity))}.dark .ha-static table th{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity));font-weight:700}.ha-static table tr:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.dark .ha-static table tr:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity))}.ha-static{font-family:Libertine,serif;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;padding:1rem;width:100%}@media (min-width:940px){.ha-static{padding:3rem 4rem}.ha-static .ha-static-right-margin{padding-right:15rem}}@media (min-width:1190px){.ha-static .ha-static-right-margin{padding-right:20rem}}.ha-static h1{font-size:1.5rem;font-weight:700;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;line-height:2rem;margin-bottom:2.25rem}@media (min-width:1190px){.ha-static h1{font-size:3rem;font-weight:400;line-height:1}}.ha-static h2{font-size:1.15rem;line-height:1.75rem;margin-bottom:.75rem;margin-top:1rem}@media (min-width:1190px){.ha-static h2{font-size:1.5rem;line-height:2rem}}.ha-static h3{font-weight:700;margin-bottom:.5rem;margin-top:1rem}.ha-static table{margin-bottom:.75rem;margin-top:.75rem;width:100%}.ha-static table tr td p{margin-bottom:.5rem!important;margin-top:.5rem!important}.ha-static table th{font-weight:700;padding-left:.5rem;padding-right:.5rem;text-align:left}@media (min-width:1190px){.ha-static table th{padding-right:1rem}}.ha-static table tr td{padding-left:.5rem;padding-right:.5rem;vertical-align:top}@media (min-width:1190px){.ha-static table tr td{padding-right:1rem}.ha-static table tr td:last-child{white-space:normal}}.ha-static p{margin-bottom:1rem;margin-top:1rem}.ha-static a{-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-static a,.ha-static a:hover{-webkit-text-decoration-line:underline;text-decoration-line:underline}.ha-static a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-static .ha-footnote{font-size:.85rem;line-height:1.25rem;position:relative}@media (min-width:1190px){.ha-static .ha-footnote{font-size:1rem;line-height:1.5rem}}.ha-static .ha-footnote .ha-footnote-ref{display:inline-block;left:-2.5rem;position:absolute;text-align:right;width:2rem}.ha-register .ha-register-body,.ha-register .ha-register-head{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-register .ha-register-body,.dark .ha-register .ha-register-head{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);background-color:rgb(15 23 42/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(248 250 252/var(--tw-text-opacity))}.ha-register .ha-register-head{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-register .ha-register-head .ha-register-nav a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-register .ha-register-head .ha-register-nav a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-register .ha-register-head .ha-register-nav a{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .ha-register .ha-register-head .ha-register-nav a:hover{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.ha-register .ha-register-head .ha-register-nav a.active{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(226 232 240/var(--tw-border-opacity))}.dark .ha-register .ha-register-head .ha-register-nav a.active{--tw-text-opacity:1!important;color:rgb(229 231 235/var(--tw-text-opacity))!important;font-weight:700}.dark .ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks,.dark .ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));color:rgb(248 250 252/var(--tw-text-opacity))}@media (min-width:1190px){.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}}.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks:before,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks:before{--tw-bg-opacity:1;background-color:rgb(43 97 158/var(--tw-bg-opacity))}.dark .ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks:before,.dark .ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks:before{--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}.ha-register .ha-register-body .ha-commenthead .ha-letlinks.ha-expanded-box{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.dark .ha-register .ha-register-body .ha-commenthead .ha-letlinks.ha-expanded-box{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-register .ha-btn-collapsed-box{margin-top:.125rem}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a{-webkit-text-decoration-line:none;text-decoration-line:none}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a:hover{color:rgb(23 53 87/var(--tw-text-opacity));-webkit-text-decoration-line:underline;text-decoration-line:underline}.dark .ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.dark .ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-register{font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;width:100%}.ha-register .ha-register-body,.ha-register .ha-register-head{padding-left:2.25rem;padding-right:2.25rem;padding-top:2.25rem}@media (min-width:940px){.ha-register .ha-register-body,.ha-register .ha-register-head{padding-left:4rem;padding-right:4rem;padding-top:3rem}}.ha-register .ha-register-head{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.ha-register .ha-register-head h1{display:inline-block;font-size:1.5rem;font-weight:700;line-height:2rem;margin-bottom:1.5rem}@media (min-width:1190px){.ha-register .ha-register-head h1{font-size:3rem;font-weight:400;line-height:1}}.ha-register .ha-register-head .ha-register-add a .ha-register-add-text{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-register .ha-register-head .ha-register-add a .ha-register-add-text:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-register .ha-register-head .ha-register-add a{display:flex;flex-direction:row;font-family:Biolinum,sans-serif;font-size:.85rem;line-height:1.25rem;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.ha-register .ha-register-head .ha-register-add a .ha-register-add-plusbutton{font-weight:700;line-height:1;padding-bottom:.25rem;padding-top:.25rem}.ha-register .ha-register-head .ha-register-add a .ha-register-add-text{line-height:1;padding-left:.25rem;padding-right:.5rem;padding-top:.25rem}.ha-register .ha-register-head form{-moz-column-gap:.5rem;column-gap:.5rem;display:flex;flex-direction:row;font-family:Biolinum,sans-serif;margin-bottom:.25rem;margin-top:-.25rem;padding-bottom:.25rem;padding-top:.25rem}.ha-register .ha-register-head form input{border-width:1px;flex-grow:0;min-width:0;padding-left:.25rem;padding-right:.25rem}.ha-register .ha-register-head form button{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;padding-left:.25rem;padding-right:.25rem}.ha-register .ha-register-head form button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-register .ha-register-head form button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-register .ha-register-head form button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-register .ha-register-head .ha-register-nav{font-family:Biolinum,sans-serif;margin-top:1.5rem}.ha-register .ha-register-head .ha-register-nav a{display:inline-block;margin-right:.25rem;padding-left:.25rem;padding-right:.25rem}@media (min-width:940px){.ha-register .ha-register-head .ha-register-nav a{margin-right:.75rem}}.ha-register .ha-register-head .ha-register-nav a:first{padding-left:0}.ha-register .ha-register-head .ha-register-nav .ha-register-left-nav,.ha-register .ha-register-head .ha-register-nav .ha-register-right-nav{display:inline-block}.ha-register .ha-register-body{border-bottom-left-radius:.125rem;border-bottom-right-radius:.125rem;padding-bottom:2.25rem}@media (min-width:940px){.ha-register .ha-register-body{padding-bottom:3rem;padding-right:29rem}}.ha-register .ha-register-body .ha-comment{display:block;margin-bottom:2.25rem}@media (min-width:940px){.ha-register .ha-register-body .ha-comment{margin-bottom:3rem}}.ha-register .ha-register-body .ha-comment a{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-register .ha-register-body .ha-comment a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-register .ha-register-body .ha-comment .ha-headcomment{display:block}@media (min-width:1190px){.ha-register .ha-register-body .ha-comment .ha-headcomment{position:relative}}.ha-register .ha-register-body .ha-comment .ha-subcomment{display:block;margin-left:2rem;margin-top:.5rem}@media (min-width:1190px){.ha-register .ha-register-body .ha-comment .ha-subcomment{position:relative}}.ha-register .ha-register-body .ha-comment .ha-commenthead{display:block}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:700}.ha-register .ha-forschung .ha-register-body .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:400}.ha-register .ha-forschung .ha-register-body .ha-comment{margin-bottom:1rem;padding-left:1rem;text-indent:-1rem}@media (min-width:940px){.ha-register .ha-forschung .ha-register-body .ha-comment{margin-bottom:1.5rem}}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks{display:inline-block;font-family:Biolinum,sans-serif;font-size:.7rem;font-variant-caps:all-petite-caps;font-weight:400;line-height:1rem;line-height:1.375;margin-left:.5rem;margin-top:.25rem}@media (min-width:940px){.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks{font-size:.85rem;line-height:1.25rem}}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks:before{--tw-content:"";bottom:.1rem;content:var(--tw-content);left:0;margin-top:.25rem;position:absolute;top:.1rem;width:.125rem}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{display:inline}@media (min-width:1190px){.ha-register .ha-forschung .ha-register-body .ha-headcomment .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-headcomment .ha-commenthead .ha-letlinks{left:48rem}.ha-register .ha-forschung .ha-register-body .ha-subcomment .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-subcomment .ha-commenthead .ha-letlinks{left:46rem}}.ha-register .ha-bibel .ha-register-body .ha-commenthead .ha-lemma a{padding-left:.5rem}.ha-register .ha-bibel .ha-register-body .ha-commenthead .ha-lemma svg{display:inline}.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks{padding-left:.5rem}@media (min-width:1190px){.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks{display:block;position:absolute;text-indent:0;top:0;width:20rem}}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.ha-register .ha-headcomment .ha-btn-collapsed-box{left:47.6rem}.ha-register .ha-subcomment .ha-btn-collapsed-box{left:45.6rem}.ha-register .ha-btn-collapsed-box{cursor:pointer;display:none;position:absolute;top:-.15rem}@media (min-width:1190px){.ha-register .ha-btn-collapsed-box{display:block}}.ha-tooltiptext{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(23 53 87/var(--tw-border-opacity));border-width:1px;color:rgb(23 53 87/var(--tw-text-opacity))}.dark .ha-tooltiptext,.ha-tooltiptext{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.dark .ha-tooltiptext{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(30 41 59/var(--tw-bg-opacity));border-style:none}.ha-tooltip .ha-tooltiptext:after{--tw-border-opacity:1;border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent;border-top-color:rgb(71 85 105/var(--tw-border-opacity))}.dark .ha-tooltip .ha-tooltiptext:after{--tw-border-opacity:1;border-top-color:rgb(30 41 59/var(--tw-border-opacity))}.ha-pill{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));border-radius:.25rem;color:rgb(75 85 99/var(--tw-text-opacity))}.dark .ha-pill.ha-newpill{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(30 41 59/var(--tw-bg-opacity));border-color:rgb(148 163 184/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(255 255 255/var(--tw-text-opacity))}.ha-pill .ha-cross:before{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(23 53 87/var(--tw-border-opacity))}.dark .ha-pill .ha-cross:before{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.ha-letterhead{display:flex;flex-direction:row}.ha-letterhead .ha-letternumber{display:flex;font-size:3rem;line-height:1;margin-right:1rem}@media (min-width:1190px){.ha-letterhead .ha-letternumber{font-size:3.75rem;font-weight:400;line-height:1;margin-right:1.5rem}}.ha-letterhead .ha-letternumber .ha-letternumberinline{display:inline;line-height:1;vertical-align:middle}.ha-letterhead .ha-metadata{align-self:flex-end;display:flex;flex-direction:column;flex-grow:1}.ha-letterhead .ha-metadatastrike{align-self:center;display:flex}.ha-letterhead .ha-metadata .ha-metadataupperrow{display:flex;flex-direction:row;line-height:1.375}.ha-letterhead .ha-metadata .ha-metadataupperrow .ha-metadatadate{display:flex;font-variant-caps:petite-caps;font-variant-numeric:oldstyle-nums;white-space:nowrap}.ha-tooltip{align-self:center;cursor:default;display:inline-block;position:relative}.ha-tooltiptext{border-radius:.25rem;font-size:.85rem;line-height:1.25rem;padding:.125rem .25rem;position:absolute;text-align:center;z-index:10}.ha-tooltiptext:after{left:50%;position:absolute;top:100%}.ha-pill{font-size:.7rem;letter-spacing:0;line-height:1rem;margin-left:.375rem;padding-left:.25rem;padding-right:.25rem;white-space:nowrap}.ha-pill .ha-cross{display:inline-block;position:relative}.ha-pill .ha-cross:after,.ha-pill .ha-cross:before{height:0;position:absolute;right:0;top:50%;width:100%}.ha-letterhead .ha-metadata .ha-metadatarows .hametadatapersons{display:flex;line-height:1.375}.ha-letterheader{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-bottom-width:2px;border-color:rgb(203 213 225/var(--tw-border-opacity))}.dark .ha-letterheader{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);background-color:rgb(15 23 42/var(--tw-bg-opacity));border-color:rgb(248 250 252/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(248 250 252/var(--tw-text-opacity))}.ha-letterheader .ha-lettertabs a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-letterheader .ha-lettertabs a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-letterheader .ha-lettertabs a{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .ha-letterheader .ha-lettertabs a:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-letterheader .ha-lettertabs a.active{--tw-border-opacity:1;--tw-text-opacity:1;border-bottom-width:3px;border-color:rgb(203 213 225/var(--tw-border-opacity));color:rgb(216 0 0/var(--tw-text-opacity))}.dark .ha-letterheader .ha-lettertabs a.active{--tw-border-opacity:1;--tw-text-opacity:1!important;border-color:rgb(248 250 252/var(--tw-border-opacity));color:rgb(229 231 235/var(--tw-text-opacity))!important;font-weight:700}.ha-letterheader .ha-lettermetalinks{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(203 213 225/var(--tw-border-opacity))}.ha-letterheader .ha-lettermetalinks a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-letterheader .ha-lettermetalinks a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-letterheader .ha-lettermetalinks a{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .ha-letterheader .ha-lettermetalinks a:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-letterbody{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-letterbody{--tw-bg-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);background-color:rgb(15 23 42/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-text{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(226 232 240/var(--tw-border-opacity))}.dark .ha-text{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}@media (min-width:700px){.ha-appcontainer.ha-appcontainer-0 .ha-text{border-left-width:2px}.dark .ha-appcontainer.ha-appcontainer-0 .ha-text{border-style:none}}.ha-defaulttab{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-defaulttab{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-defaulttab .ha-edits .ha-editentries table tr:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.dark .ha-defaulttab .ha-edits .ha-editentries table tr:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-linecount.ha-firstline{--tw-text-opacity:1;border-radius:.5rem;color:rgb(30 41 59/var(--tw-text-opacity))}.dark .ha-linecount.ha-firstline{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}@media (min-width:700px){.ha-linecount.ha-firstline{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(71 85 105/var(--tw-border-opacity));border-width:1px}.dark .ha-linecount.ha-firstline,.ha-linecount.ha-firstline{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.dark .ha-linecount.ha-firstline{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(30 41 59/var(--tw-bg-opacity));border-color:rgb(148 163 184/var(--tw-border-opacity))}.ha-linecount .ha-zhline,.ha-linecount .ha-zhpage{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-linecount .ha-zhline,.dark .ha-linecount .ha-zhpage{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}}.ha-text .ha-marginal:before{--tw-bg-opacity:1;background-color:rgb(43 97 158/var(--tw-bg-opacity))}.dark .ha-text .ha-marginal:before{--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}.ha-text .ha-marginalbox{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-text .ha-marginalbox{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-text .ha-marginalbox.ha-expanded-box .ha-marginallist{--tw-bg-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(241 245 249/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);padding-bottom:.25rem}.dark .ha-text .ha-marginalbox.ha-expanded-box .ha-marginallist{--tw-bg-opacity:1;--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);background-color:rgb(71 85 105/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-text .ha-btn-collapsed-box{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-text .ha-btn-collapsed-box:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-text .ha-btn-collapsed-box{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .ha-text .ha-btn-collapsed-box:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-letterheader{border-top-left-radius:.125rem;border-top-right-radius:.125rem;padding-left:1.5rem;padding-right:1.5rem;padding-top:2rem}@media (min-width:940px){.ha-letterheader{padding-left:4rem;padding-right:4rem;padding-top:3rem}}.ha-letterheader .ha-letterheadernav{display:flex;flex-grow:1;margin-top:2.25rem}.ha-letterheader .ha-lettertabs{display:flex;flex-grow:1}.ha-letterheader .ha-lettertabs a{cursor:pointer;display:inline-block;margin-right:.25rem;padding-left:.25rem;padding-right:.25rem}@media (min-width:940px){.ha-letterheader .ha-lettertabs a{margin-right:.75rem}.ha-letterheader .ha-lettertabs .ha-marginalsbtn{display:none}}.ha-letterheader .ha-lettertabs a.active{pointer-events:none}.ha-letterheader .ha-lettertabs a:first{padding-left:0}.ha-letterheader .ha-lettermetalinks{align-self:flex-end}.ha-letterheader .ha-lettermetalinks a{align-self:flex-end;font-variant-caps:petite-caps}.ha-letterheader .ha-lettermetalinks .ha-hkb{display:inline-block;font-variant-caps:all-petite-caps}.ha-tab{max-width:52rem}.ha-tab .ha-appcontainer{font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;margin-left:1.5rem;padding-bottom:.75rem;padding-top:.75rem}@media (min-width:940px){.ha-tab .ha-appcontainer{margin-left:4rem}}.ha-appcontainer.ha-appcontainer-0{padding-bottom:0;padding-top:0}.ha-appcontainer h3{font-weight:700}.ha-appcontainer a{-webkit-text-decoration-color:#1e293b;text-decoration-color:#1e293b;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-appcontainer a:hover{-webkit-text-decoration-color:#0f172a;text-decoration-color:#0f172a;-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-textcontainer{display:flex;margin-left:-1.5rem}@media (min-width:940px){.ha-textcontainer{margin-left:-4rem}}.ha-text{display:flow-root;font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;line-height:1.48;margin-left:1rem;max-width:38rem;padding:.5rem 1rem .75rem;position:relative}@media (min-width:700px){.ha-text{flex-shrink:0;margin-left:3rem}}@media (min-width:1190px){.ha-text{max-width:52rem}}.ha-text div{display:inline}.ha-linecount.ha-firstline{border-radius:.25rem;display:none;font-variant-caps:all-petite-caps;font-variant-numeric:normal;padding-left:.375rem;padding-right:.375rem;white-space:nowrap}@media (min-width:700px){.ha-linecount.ha-firstline{display:inline-block;line-height:1;padding-bottom:.25rem;padding-top:.125rem}}.ha-linecount{font-family:Biolinum,sans-serif;font-size:.7rem;line-height:1rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}@media (min-width:700px){.ha-linecount{margin-right:.5rem;margin-top:.35rem;position:absolute;right:100%;text-align:right}}.ha-linecount .ha-zhline{display:none}@media (min-width:700px){.ha-linecount .ha-zhline{display:inline}}.ha-linecount .ha-zhpage{display:inline-block}@media (min-width:700px){.ha-linecount .ha-zhpage{display:inline}}.ha-linecount .ha-zhline,.ha-linecount .ha-zhpage{font-variant-caps:all-petite-caps;font-variant-numeric:normal;padding-left:.25rem;padding-right:.25rem}@media (min-width:700px){.ha-linecount .ha-zhline,.ha-linecount .ha-zhpage{padding-bottom:.25rem}}.ha-linecount .ha-hiddenlinecount{display:none!important}.ha-text .ha-marginal:before{--tw-content:"";bottom:.1rem;content:var(--tw-content);left:.1rem;position:absolute;top:.2rem;width:.125rem}.ha-text .ha-marginalbox{border-radius:.125rem;display:none;font-family:Biolinum,sans-serif;font-size:.85rem;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;left:100%;line-height:1.25rem;line-height:1.25;margin-left:1.5rem;margin-top:.25rem;padding-left:.25rem;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:16rem}.ha-text .ha-marginalbox:hover{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}@media (min-width:940px){.ha-text .ha-marginalbox{display:inline-block}}@media (min-width:1190px){.ha-text .ha-marginalbox{margin-left:2.5rem;width:28rem}}.ha-text .ha-marginalbox .ha-marginallist{-moz-column-gap:1.5rem;column-gap:1.5rem;display:flex;flex-wrap:wrap;font-size:.85rem;line-height:1.25rem;line-height:1.25;padding-right:.25rem}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal{display:inline;padding-left:.5rem;position:relative}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal a{-webkit-text-decoration-line:underline!important;text-decoration-line:underline!important;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal,.ha-text .ha-marginalbox .ha-marginallist .ha-marginal *{min-height:0;min-width:0;overflow:hidden;text-overflow:ellipsis}.ha-text .ha-btn-collapsed-box{cursor:pointer;display:none;left:100%;line-height:1;margin-left:1rem;margin-top:.2rem;position:absolute}@media (min-width:940px){.ha-text .ha-btn-collapsed-box{display:inline-block}}@media (min-width:1190px){.ha-text .ha-btn-collapsed-box{margin-left:1.7rem}}.ha-defaulttab .ha-hands{margin-left:1.5rem}@media (min-width:940px){.ha-defaulttab .ha-hands{margin-left:4rem}}.ha-defaulttab .ha-hands .ha-handstitle{font-weight:700}.ha-defaulttab .ha-hands .ha-handentries .ha-handfrom,.ha-defaulttab .ha-hands .ha-handentries .ha-handto{display:inline;font-size:.85rem;font-weight:600;line-height:1.25rem;white-space:nowrap}.ha-defaulttab .ha-hands .ha-handentries .ha-handperson{display:inline;padding-left:1rem;white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editfromto{white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editfrom,.ha-defaulttab .ha-edits .ha-editentries .ha-editto{display:inline;font-size:.85rem;font-weight:600;line-height:1.25rem;white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference{white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference div{display:inline}.ha-defaulttab .ha-edits{margin-left:1.5rem;max-width:56rem}@media (min-width:940px){.ha-defaulttab .ha-edits{margin-left:4rem}.ha-defaulttab .ha-edits .ha-editentries{margin-right:-9rem}}.ha-defaulttab .ha-edits .ha-editstitle{font-weight:700}.ha-defaulttab .ha-edits .ha-editsinfo{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;padding-bottom:1rem}.ha-defaulttab .ha-edits .ha-editentries tr td{vertical-align:text-top}.ha-defaulttab .ha-edits .ha-editentries .ha-editreas div{display:inline;font-family:Biolinum,sans-serif}.ha-defaulttab .ha-edits .ha-editentries .ha-editfromto{padding-left:.25rem;padding-right:.25rem}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference{border-right-width:2px;font-size:.85rem;line-height:1.25rem;padding-left:.25rem;padding-right:.75rem}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference br{display:none}.ha-defaulttab .ha-edits .ha-editentries .ha-editreas{padding-left:.75rem;width:100%}.ha-defaulttab .ha-edits .ha-editentries .ha-editreas .ha-zh *{font-family:Libertine,serif!important}.ha-minwidth .ha-text{min-width:44rem}@media (min-width:1190px){.ha-minwidth .ha-text{min-width:52rem}}.ha-minwidth .ha-text .ha-alignright{float:right;margin-right:20%}.ha-minwidth .ha-aligncenter{--tw-translate-x:-50%;left:33.333333%;position:absolute;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));white-space:nowrap}.ha-minwidth .ha-marginalbox{margin-left:.25rem!important}.ha-adminuploadfields{-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;flex-wrap:wrap;row-gap:1rem}.ha-adminuploadfields .ha-uploadfield{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-radius:.25rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:block;flex-basis:16rem;flex-grow:1;flex-shrink:0;max-width:20rem}.ha-adminuploadfields .ha-uploadfield:hover{--tw-brightness:brightness(1.1)}.ha-adminuploadfields .ha-uploadfield.active,.ha-adminuploadfields .ha-uploadfield:hover{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.ha-adminuploadfields .ha-uploadfield.active{--tw-text-opacity:1!important;--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);--tw-brightness:brightness(1.1);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(0 0 0/var(--tw-text-opacity))!important}.ha-adminuploadfields .ha-uploadfield .ha-uploadfieldname{padding:.5rem .75rem .25rem}.ha-adminuploadfields .ha-uploadusedfiles{--tw-border-opacity:1;--tw-bg-opacity:0.3;background-color:rgb(226 232 240/var(--tw-bg-opacity));border-color:rgb(203 213 225/var(--tw-border-opacity));border-top-width:1px;font-size:.85rem;line-height:1.25rem;overflow:hidden;padding:.125rem .5rem;text-overflow:ellipsis;white-space:nowrap;width:auto}.ha-adminuploadfields .ha-uploadusedfiles.ha-uploadusedfilesnotfound{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity));border-color:rgb(100 116 139/var(--tw-border-opacity))}.ha-adminuploadfields .ha-uploadpublishforms{-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;flex-grow:1}.ha-adminuploadfields .ha-uploadform{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-radius:.25rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);flex-grow:1;position:relative}.ha-adminuploadfields .ha-uploadform .ha-uploadtext{text-align:center}.ha-adminuploadfields .ha-uploadform .ha-lds-ellipsis{left:50%;margin-left:-20px}.ha-adminuploadfields .ha-uploadform .ha-uploadfilelabel{cursor:pointer;display:inline-block;height:100%;padding:.5rem 1rem .25rem;width:100%}.ha-adminuploadfields .ha-uploadform .ha-uploadfilelabel:hover{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.ha-adminuploadfields .ha-uploadform .ha-uploadmessage{--tw-bg-opacity:0.3;background-color:rgb(51 65 85/var(--tw-bg-opacity));border-radius:.125rem;font-size:.85rem;line-height:1.25rem;padding-left:.25rem;padding-right:.25rem}.ha-adminuploadfields .ha-publishbutton{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);cursor:pointer;display:inline-block;flex-shrink:1;height:100%;padding:.5rem .5rem .25rem;width:100%}.ha-adminuploadfields .ha-publishbutton:hover{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.ha-adminuploadfields .ha-publishbutton .ha-publishtext{text-align:center}.ha-adminuploadfields .ha-publishbutton .ha-publishmessage{--tw-bg-opacity:0.3;background-color:rgb(51 65 85/var(--tw-bg-opacity));border-radius:.125rem;font-size:.85rem;line-height:1.25rem;padding-left:.25rem;padding-right:.25rem}.ha-uploadheader{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));display:flex;flex-direction:row;margin-top:1rem;padding:3rem 4rem 2rem;width:100%}.ha-uploadheader h1{font-size:3rem;line-height:1}.ha-uploadcontainer{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));display:flex;flex-direction:column;row-gap:.5rem;width:100%}.ha-uploadcontainer .ha-publishfilelist{margin-bottom:2rem;padding-left:4rem;padding-right:4rem}.ha-uploadcontainer .ha-publishfilelist .ha-publishfilelisttitle{font-size:1.25rem;line-height:1.75rem;margin-bottom:.5rem}.ha-uploadcontainer .ha-publishfilelist td{padding-right:1.5rem;vertical-align:text-top}.ha-uploadcontainer .ha-publishfilelist .ha-publishfilelabel{--tw-border-opacity:1;border-color:rgb(37 99 235/var(--tw-border-opacity));border-radius:.375rem;border-width:2px;cursor:pointer;float:right;margin-left:1.5rem;margin-top:1rem;padding-left:.75rem;padding-right:.75rem;position:relative}.ha-uploadcontainer .ha-publishfilelist .ha-publishfilelabel:hover{--tw-border-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);border-color:rgb(30 64 175/var(--tw-border-opacity));border-width:2px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-uploadcontainer .ha-publishfilelist .ha-publishfilelabel:active{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-uploadcontainer .ha-availablefiles{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;cursor:pointer;padding:.5rem 4rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ha-uploadcontainer .ha-availablefiles:hover{--tw-border-opacity:1;border-color:rgb(30 41 59/var(--tw-border-opacity))}.ha-uploadcontainer .ha-availablefiles .ha-availablefilestitle{font-size:1.5rem;line-height:2rem}.ha-filesheader{margin-bottom:2rem}.ha-availablefileslist{padding-left:4rem;padding-right:4rem;padding-top:1rem}.ha-uploadcontainer .ha-errorswarnings{-moz-column-gap:.5rem;column-gap:.5rem;display:flex;flex-direction:row}.ha-uploadcontainer .ha-errorswarnings .ha-criticalerrors,.ha-uploadcontainer .ha-errorswarnings .ha-warnings{flex-basis:50%;flex-grow:1;flex-shrink:1;min-height:400px;min-width:40%;overflow-x:hidden;overflow-y:scroll}.ha-uploadcontainer .ha-errorswarnings .ha-criticalerrors{--tw-bg-opacity:1;background-color:rgb(254 202 202/var(--tw-bg-opacity))}.ha-uploadcontainer .ha-errorswarnings .ha-warnings{--tw-bg-opacity:1;background-color:rgb(254 215 170/var(--tw-bg-opacity))}.ha-uploadcontainer .ha-crossfilechecking{--tw-bg-opacity:1;background-color:rgb(165 243 252/var(--tw-bg-opacity));flex-grow:1;flex-shrink:0;height:100%;min-height:400px;width:100%}.ha-uploadcontainer .ha-hamannfilechooser{padding-bottom:4rem;padding-left:4rem;padding-right:4rem}.ha-filelistfieldset .ha-filelistlegend{font-size:1.25rem;line-height:1.75rem;margin-bottom:.5rem}.ha-selectfilesform .ha-filelistfile{align-items:center;-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;padding-left:.25rem;padding-right:.25rem}.ha-selectfilesform .ha-filelistfile:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.ha-selectfilesform .ha-filelistlist{height:24rem;overflow-x:hidden;overflow-y:scroll;padding-right:1rem}.ha-selectfilesform .ha-filelistfile .ha-filelistname{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace,mono}.ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction{font-size:.85rem;line-height:1.25rem}.ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction .ha-filelistproduction{--tw-border-opacity:1;--tw-text-opacity:1;border-color:rgb(13 148 136/var(--tw-border-opacity));border-radius:.375rem;border-width:1px;color:rgb(13 148 136/var(--tw-text-opacity));display:inline-block;margin-right:.5rem;padding-left:.5rem;padding-right:.5rem}.ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction .ha-filelistused{--tw-border-opacity:1;--tw-text-opacity:1;border-color:rgb(79 70 229/var(--tw-border-opacity));border-radius:.375rem;border-width:1px;color:rgb(79 70 229/var(--tw-text-opacity));display:inline-block;padding-left:.5rem;padding-right:.5rem}.ha-selectfilesform .ha-filelistfile .ha-filelistmodified{flex-grow:1;text-align:right}.ha-selectfilesform .ha-filelistoutput{margin-left:1.5rem;margin-top:1rem}.ha-selectfilesform .ha-filelistbutton{--tw-border-opacity:1;border-color:rgb(37 99 235/var(--tw-border-opacity));border-radius:.375rem;border-width:2px;cursor:pointer;float:right;margin-left:1.5rem;margin-top:1rem;padding-left:.75rem;padding-right:.75rem}.ha-selectfilesform .ha-filelistbutton:hover{--tw-border-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);border-color:rgb(30 64 175/var(--tw-border-opacity));border-width:2px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-selectfilesform .ha-filelistbutton:active{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-index{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-index{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.dark .ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(229 231 235/var(--tw-border-opacity));border-right-width:1px}.dark .ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));border-style:none}.dark .ha-index .ha-indexhead .ha-indexnav a.active{font-weight:700}.dark .ha-index .ha-indexhead .ha-indexnav a.active,.dark .ha-index .ha-indexhead .ha-indexnav a.active:hover{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry:hover{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:hover{--tw-bg-opacity:1!important;background-color:rgb(226 232 240/var(--tw-bg-opacity))!important}.dark .ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:hover{--tw-bg-opacity:1!important;background-color:rgb(30 41 59/var(--tw-bg-opacity))!important}.dark .ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a.active{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important;font-weight:700}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.dark .ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(24 24 27/var(--tw-bg-opacity))}.ha-index .ha-indexhead{border-bottom-width:2px;padding-left:2.25rem;padding-right:2.25rem;padding-top:2.25rem}@media (min-width:940px){.ha-index .ha-indexhead{padding-left:4rem;padding-right:4rem;padding-top:3rem}}.ha-index .ha-indexhead h1{display:inline-block;font-family:Libertine,serif;font-size:1.5rem;font-weight:700;line-height:2rem;margin-bottom:1.5rem}@media (min-width:1190px){.ha-index .ha-indexhead h1{font-size:3rem;font-weight:400;line-height:1}}.ha-index .ha-indexhead .ha-indexnav{--tw-numeric-figure:oldstyle-nums;font-family:Biolinum,sans-serif;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.ha-index .ha-indexhead .ha-indexnav a{display:inline-block;margin-right:.75rem}.ha-index .ha-indexhead .ha-indexnav a.active{border-bottom-width:4px}.ha-index .ha-indexbody{clear:both;-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;padding-top:1.5rem}.ha-index .ha-indexbody .ha-letterlist{flex-basis:66.666667%;flex-grow:0;padding-bottom:1rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry:not(:first-child){margin-top:1rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry{border-radius:.125rem;display:block;padding-top:.75rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry,.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry:hover{transition-duration:.1s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterhead{padding-bottom:.75rem;padding-left:1.5rem;padding-right:.75rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));display:block;padding:.25rem 1.5rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-searchresultlocation{display:inline-block;font-size:.85rem;font-variant-numeric:oldstyle-nums;font-weight:600;line-height:1.25rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-searchresultpreview{display:inline-block;padding-left:1rem}.ha-index .ha-indexbody .ha-filterlist{display:none;flex-basis:33.333333%;flex-direction:column;flex-shrink:1;float:right;max-width:32rem;min-width:0;padding-bottom:1rem;row-gap:2.25rem}@media (min-width:940px){.ha-index .ha-indexbody .ha-filterlist{display:flex}}.ha-index .ha-indexbody .ha-filterlist .ha-filtertitle{--tw-border-opacity:1;border-bottom-width:1px;border-color:rgb(156 163 175/var(--tw-border-opacity));font-family:Libertine,serif;font-size:1.5rem;line-height:2rem;line-height:1;margin-bottom:.25rem;padding-bottom:.25rem;padding-left:.25rem;padding-right:1rem}.ha-index .ha-indexbody .ha-filterlist .ha-activefilterinfo{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity));border-radius:.25rem;font-family:Biolinum,sans-serif;font-size:.85rem;line-height:1.25rem;margin-top:.25rem;padding-left:.25rem;padding-right:.25rem}.ha-index .ha-indexbody .ha-filterlist .ha-reversefilter{display:inline-block;text-align:right;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-index .ha-indexbody .ha-filterlist .ha-reversefilter:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form{font-family:Biolinum,sans-serif;padding:.25rem .5rem .25rem .25rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form .ha-gototext{display:inline-block;font-family:Biolinum,sans-serif;margin-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form input{border-width:1px;padding-left:.25rem;padding-right:.25rem;width:3.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;display:inline-block;float:right;padding-left:.5rem;padding-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform{padding:.25rem .5rem .25rem .25rem}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform>span{white-space:nowrap}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform input{border-width:1px;padding-left:.25rem;padding-right:.25rem;width:3.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;float:right;padding-left:.5rem;padding-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform select{padding-left:.25rem;padding-right:.25rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform{-moz-column-gap:.5rem;column-gap:.5rem;display:flex;flex-direction:row;padding:.25rem .5rem .25rem .25rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform input{border-width:1px;flex-grow:1;min-width:0;padding-left:.25rem;padding-right:.25rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;float:right;padding-left:.5rem;padding-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist{margin-right:.5rem;max-height:23rem;overflow-x:hidden;overflow-y:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.25rem}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a{display:block;padding-left:.75rem;padding-right:.75rem;transition-property:none!important}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){display:block}.ha-search{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-search{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-search .ha-searchhead .ha-activefilterinfo{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.dark .ha-search .ha-searchhead .ha-activefilterinfo{--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.dark .ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(229 231 235/var(--tw-border-opacity));border-right-width:1px}.dark .ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));border-style:none}.dark .ha-search .ha-searchhead .ha-searchnav a.active{font-weight:700}.dark .ha-search .ha-searchhead .ha-searchnav a.active,.dark .ha-search .ha-searchhead .ha-searchnav a.active:hover{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry:hover{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:hover{--tw-bg-opacity:1!important;background-color:rgb(226 232 240/var(--tw-bg-opacity))!important}.dark .ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:hover{--tw-bg-opacity:1!important;background-color:rgb(30 41 59/var(--tw-bg-opacity))!important}.dark .ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a.active{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important;font-weight:700}.ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.dark .ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(24 24 27/var(--tw-bg-opacity))}.dark .ha-search .ha-searchbody .ha-commenthead .ha-letlinks{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));color:rgb(248 250 252/var(--tw-text-opacity))}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commenthead .ha-letlinks{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}}.ha-search .ha-searchbody .ha-commenthead .ha-letlinks:before{--tw-bg-opacity:1;background-color:rgb(43 97 158/var(--tw-bg-opacity))}.dark .ha-search .ha-searchbody .ha-commenthead .ha-letlinks:before{--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-commenthead .ha-letlinks.ha-expanded-box{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.dark .ha-search .ha-searchbody .ha-commenthead .ha-letlinks.ha-expanded-box{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-search .ha-btn-collapsed-box{cursor:pointer;display:none;margin-top:.125rem;position:absolute;top:-.15rem}@media (min-width:1190px){.ha-search .ha-btn-collapsed-box{display:block}}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks a{-webkit-text-decoration-line:none;text-decoration-line:none}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity));-webkit-text-decoration-line:underline;text-decoration-line:underline}.dark .ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.dark .ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-search .ha-searchhead{border-bottom-width:2px;padding-left:2.25rem;padding-right:2.25rem;padding-top:2.25rem}@media (min-width:940px){.ha-search .ha-searchhead{padding-left:4rem;padding-right:4rem;padding-top:3rem}}.ha-search .ha-searchhead h1{display:inline-block;font-family:Libertine,serif;font-size:1.5rem;font-weight:700;line-height:2rem;margin-bottom:1.5rem}@media (min-width:1190px){.ha-search .ha-searchhead h1{font-size:3rem;font-weight:400;line-height:1}}.ha-search .ha-searchhead .ha-searchnav{--tw-numeric-figure:oldstyle-nums;font-family:Biolinum,sans-serif;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.ha-search .ha-searchhead .ha-searchnav a{display:inline-block;margin-right:.75rem}.ha-search .ha-searchhead .ha-searchnav a.active{border-bottom-width:4px}.ha-search .ha-searchhead .ha-searchfilter{margin-bottom:1rem}@media (min-width:940px){.ha-search .ha-searchhead .ha-searchfilter{margin-bottom:1.75rem}}.ha-search .ha-searchhead .ha-searchfilterinfo{border-width:1px;font-size:1rem;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;line-height:1.5rem;margin-bottom:1rem;max-width:46rem;padding:.5rem}.ha-search .ha-searchhead .ha-searchfilter form{margin-bottom:.5rem;max-width:34rem}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform{-moz-column-gap:.5rem;column-gap:.5rem;display:flex;flex-direction:row;padding-bottom:.25rem;padding-top:.25rem}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform input{border-width:1px;flex-grow:1;min-width:0;padding-left:.25rem;padding-right:.25rem}.ha-search .ha-searchhead .ha-searchfilter .ha-includecomments{font-size:1rem!important;line-height:1.5rem!important;width:100%}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;float:right;padding-left:.5rem;padding-right:.5rem}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-search .ha-searchhead .ha-activefilterinfo{border-radius:.25rem;font-family:Biolinum,sans-serif;font-size:1rem;line-height:1.5rem;margin-bottom:.25rem;margin-top:.25rem;max-width:34rem;padding-left:.25rem;padding-right:.25rem}.ha-search .ha-searchhead .ha-reversefilter{display:inline-block;text-align:right;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-search .ha-searchhead .ha-reversefilter:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-search .ha-searchhead .ha-searchfilter .ha-alternativesearches a{display:block;font-size:1rem;line-height:1.5rem;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-search .ha-searchhead .ha-searchfilter .ha-alternativesearches a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-search .ha-searchbody{border-bottom-left-radius:.125rem;border-bottom-right-radius:.125rem;padding-bottom:2.25rem;padding-top:1.5rem}@media (min-width:940px){.ha-search .ha-searchbody{padding-bottom:3rem;padding-left:1.5rem;padding-right:24rem}}.ha-search .ha-searchbody .ha-letterlist{flex-basis:66.666667%;flex-grow:0;padding-bottom:1rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry:not(:first-child){margin-top:1rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry{border-radius:.125rem;display:block;padding-top:.75rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry,.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry:hover{transition-duration:.1s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterhead{padding-bottom:.75rem;padding-left:1.5rem;padding-right:.75rem}.dark input,.dark select{--tw-bg-opacity:1!important;border-style:none}.dark button,.dark input,.dark select{background-color:rgb(24 24 27/var(--tw-bg-opacity))!important}.dark button{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;border-color:rgb(39 39 42/var(--tw-border-opacity))!important}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult{--tw-bg-opacity:1;align-items:baseline;background-color:rgb(248 250 252/var(--tw-bg-opacity));-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;padding:.25rem 1.5rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-searchresultlocation{display:inline-block;flex-shrink:0;flex-wrap:nowrap;font-size:.85rem;font-weight:600;line-height:1.25rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal{font-size:.85rem;line-height:1.25rem;margin-bottom:.25rem;margin-top:.25rem;max-width:32rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-searchresultcommentpill{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(30 69 112/var(--tw-bg-opacity));border-radius:.75rem;color:rgb(255 255 255/var(--tw-text-opacity));display:inline-block;font-size:.7rem;line-height:1rem;margin-right:.5rem;padding-left:.375rem;padding-right:.375rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal a{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal,.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal *{display:inline!important;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.ha-search .ha-searchbody .ha-commentlist{font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;padding-left:1rem;padding-right:2.25rem;padding-top:.5rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-commentlist{padding-left:1.5rem;padding-right:4rem;padding-top:1rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment{display:block;margin-bottom:2.25rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-commentlist .ha-comment{margin-bottom:3rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment a{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-search .ha-searchbody .ha-commentlist .ha-comment a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-headcomment{display:block}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-headcomment{position:relative}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-subcomment{display:block;margin-left:2rem;margin-top:.5rem}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-subcomment{position:relative}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead{display:block}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:700}.ha-search .ha-searchbody .ha-forschung .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:400}.ha-search .ha-searchbody .ha-forschung .ha-comment{margin-bottom:1rem;text-indent:-1rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-forschung .ha-comment{margin-bottom:1.5rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks{display:inline-block;font-family:Biolinum,sans-serif;font-size:.7rem;font-variant-caps:all-petite-caps;font-weight:400;line-height:1rem;line-height:1.375;margin-left:.5rem;margin-top:.25rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks{font-size:.85rem;line-height:1.25rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks:before{--tw-content:"";bottom:.1rem;content:var(--tw-content);left:0;margin-top:.25rem;position:absolute;top:.1rem;width:.125rem}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{display:inline}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-headcomment .ha-commenthead .ha-letlinks{left:48rem}.ha-search .ha-searchbody .ha-commentlist .ha-subcomment .ha-commenthead .ha-letlinks{left:46rem}}.ha-search .ha-searchbody .ha-commentlist .ha-commenthead .ha-letlinks{padding-left:.5rem}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-commenthead .ha-letlinks{display:block;position:absolute;text-indent:0;top:0;width:20rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.ha-search .ha-searchbody .ha-commentlist .ha-headcomment .ha-btn-collapsed-box{left:47.6rem}.ha-search .ha-searchbody .ha-commentlist .ha-subcomment .ha-btn-collapsed-box{left:45.6rem}.ha-search .ha-searchbody .ha-commentlist .ha-btn-collapsed-box{cursor:pointer;display:none;position:absolute;top:-.15rem}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-btn-collapsed-box{display:block}}.pointer-events-none{pointer-events:none}.static{position:static}.relative{position:relative}.sticky{position:-webkit-sticky;position:sticky}.-left-5{left:-1.25rem}.-top-1\.5{top:-.375rem}.-top-1{top:-.25rem}.-left-6{left:-1.5rem}.bottom-\[0\.1rem\]{bottom:.1rem}.clear-both{clear:both}.mx-auto{margin-left:auto;margin-right:auto}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mx-0{margin-left:0;margin-right:0}.my-8{margin-bottom:2rem;margin-top:2rem}.mx-8{margin-left:2rem;margin-right:2rem}.my-6{margin-top:1.5rem}.mb-6,.my-6{margin-bottom:1.5rem}.mr-2{margin-right:.5rem}.\!mt-0{margin-top:0!important}.\!mb-0{margin-bottom:0!important}.mb-10{margin-bottom:2.5rem}.mb-4{margin-bottom:1rem}.\!mr-0{margin-right:0!important}.mt-2{margin-top:.5rem}.mr-1{margin-right:.25rem}.\!mb-1{margin-bottom:.25rem!important}.\!mt-1{margin-top:.25rem!important}.mr-\[20rem\]{margin-right:20rem}.ml-8{margin-left:2rem}.mb-0\.5{margin-bottom:.125rem}.mb-0{margin-bottom:0}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.table{display:table}.hidden{display:none}.\!hidden{display:none!important}.h-10{height:2.5rem}.h-full{height:100%}.h-8{height:2rem}.h-4{height:1rem}.h-3{height:.75rem}.w-10{width:2.5rem}.w-full{width:100%}.w-8{width:2rem}.w-4{width:1rem}.w-auto{width:auto}.w-3{width:.75rem}.w-72{width:18rem}.w-60{width:15rem}.w-52{width:13rem}.w-1\/2{width:50%}.shrink-0{flex-shrink:0}.shrink{flex-shrink:1}.grow{flex-grow:1}.grow-0{flex-grow:0}.cursor-default{cursor:default}.resize{resize:both}.list-disc{list-style-type:disc}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.justify-center{justify-content:center}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.gap-y-6{row-gap:1.5rem}.gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.gap-y-4{row-gap:1rem}.overflow-hidden{overflow:hidden}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.rounded{border-radius:.25rem}.border{border-width:1px}.border-t-\[5px\]{border-top-width:5px}.border-l-4{border-left-width:4px}.border-r-2{border-right-width:2px}.border-l-2{border-left-width:2px}.border-b-2{border-bottom-width:2px}.border-solid{border-style:solid}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.border-hamannSlate-500{--tw-border-opacity:1;border-color:rgb(43 97 158/var(--tw-border-opacity))}.border-orange-600{--tw-border-opacity:1;border-color:rgb(234 88 12/var(--tw-border-opacity))}.border-slate-500{--tw-border-opacity:1;border-color:rgb(100 116 139/var(--tw-border-opacity))}.border-slate-300{--tw-border-opacity:1;border-color:rgb(203 213 225/var(--tw-border-opacity))}.border-slate-400{--tw-border-opacity:1;border-color:rgb(148 163 184/var(--tw-border-opacity))}.bg-slate-50{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.bg-gray-300{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.bg-slate-400{--tw-bg-opacity:1;background-color:rgb(148 163 184/var(--tw-bg-opacity))}.bg-slate-200{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.bg-slate-300{--tw-bg-opacity:1;background-color:rgb(203 213 225/var(--tw-bg-opacity))}.p-1{padding:.25rem}.px-4{padding-left:1rem;padding-right:1rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.px-9{padding-left:2.25rem;padding-right:2.25rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.px-8{padding-left:2rem;padding-right:2rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.py-4{padding-bottom:1rem;padding-top:1rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.pt-4{padding-top:1rem}.pb-1{padding-bottom:.25rem}.pr-3{padding-right:.75rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pr-1\.5{padding-right:.375rem}.pr-1{padding-right:.25rem}.pl-3{padding-left:.75rem}.pl-2{padding-left:.5rem}.\!pr-14{padding-right:3.5rem!important}.pt-2{padding-top:.5rem}.text-right{text-align:right}.align-baseline{vertical-align:baseline}.align-bottom{vertical-align:bottom}.font-serif{font-family:Libertine,serif}.font-sans{font-family:Biolinum,sans-serif}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-sm{font-size:.85rem;line-height:1.25rem}.text-base{font-size:1rem;line-height:1.5rem}.font-bold{font-weight:700}.italic{font-style:italic}.\!leading-tight{line-height:1.25!important}.leading-snug{line-height:1.375}.text-hamannSlate-900{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-hamannSlate-500{--tw-text-opacity:1;color:rgb(43 97 158/var(--tw-text-opacity))}.text-orange-600{--tw-text-opacity:1;color:rgb(234 88 12/var(--tw-text-opacity))}.text-slate-500{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.underline{-webkit-text-decoration-line:underline;text-decoration-line:underline}.\!no-underline{-webkit-text-decoration-line:none!important;text-decoration-line:none!important}.no-underline{-webkit-text-decoration-line:none;text-decoration-line:none}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.hyphenate{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.unhyphenate{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.numeric-mediaeval{font-variant-numeric:oldstyle-nums}.numeric-normal{font-variant-numeric:normal}.caps-allpetite{font-variant-caps:all-petite-caps}.caps-petite{font-variant-caps:petite-caps}.caps{text-transform:uppercase}.caps,.caps-normal{font-variant-caps:normal}.break-inside-avoid{-moz-column-break-inside:avoid;break-inside:avoid}@font-face{font-display:swap;font-family:Biolinum;font-style:normal;font-weight:400;src:url(../fonts/LinBiolinum_Rah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Libertine;font-style:normal;font-weight:400;src:url(../fonts/LinLibertine_Rah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Biolinum;font-style:italic;font-weight:400;src:url(../fonts/LinBiolinum_RIah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Biolinum;font-style:normal;font-weight:700;src:url(../fonts/LinBiolinum_RBah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Libertine;font-style:italic;font-weight:400;src:url(../fonts/LinLibertine_RIah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Libertine;font-style:normal;font-weight:700;src:url(../fonts/LinLibertine_RZah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Playfair;font-style:normal;font-weight:400;src:url(../fonts/PlayfairDisplay-VariableFont_wght.ttf) format("truetype")}.ha-menu-arrowsymbol:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;content:"";display:inline-block;margin-left:.2em;vertical-align:.2em}.ha-menusymbol{border-radius:4px}.ha-menusymbol svg{stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;fill:none;height:24px;width:24px}.ha-tooltip .ha-tooltiptext{bottom:155%;left:50%;margin-left:-80px;min-width:160px;opacity:0;transition:opacity .3s;visibility:hidden;white-space:nowrap}.ha-tooltip .ha-tooltiptext:after{border-style:solid;border-width:5px;content:"";left:50%;margin-left:-5px;position:absolute;top:100%}.ha-tooltip:hover .ha-tooltiptext{opacity:1;visibility:visible}.ha-open-btn-collapsed-box:after{content:"\200E+"}.ha-open-btn-collapsed-box{font-weight:700;transform:rotate(0deg);transition:transform 80ms ease-in-out}.ha-open-btn-collapsed-box.ha-close-btn-collapsed-box{transform:rotate(45deg);transform-origin:53% 57%;transition:transform 80ms ease-in-out}.ha-uploadform .ha-uploadmessage{border-radius:6px;left:50%;margin-left:-180px;margin-top:.5rem;opacity:0;padding:5px 0;position:absolute;text-align:center;top:100%;transition:opacity 1s;visibility:visible;width:360px;z-index:1}.ha-uploadform .ha-uploadmessage:after{border:5px solid transparent;border-bottom-color:grey;bottom:100%;content:" ";left:50%;margin-left:-5px;position:absolute}.ha-lds-ellipsis{bottom:20px;display:none;position:absolute}.ha-lds-ellipsis-load{bottom:8px;display:none;position:relative;width:38px}.ha-lds-ellipsis-publish{bottom:16px;display:none;left:-50px;position:absolute}.ha-lds-ellipsis div,.ha-lds-ellipsis-load div,.ha-lds-ellipsis-publish div{-webkit-animation-timing-function:cubic-bezier(0,1,1,0);animation-timing-function:cubic-bezier(0,1,1,0);background:#000;border-radius:50%;height:7px;position:absolute;width:7px}.ha-lds-ellipsis div:first-child,.ha-lds-ellipsis-load div:first-child,.ha-lds-ellipsis-publish div:first-child{-webkit-animation:ha-lds-ellipsis1 .6s infinite;animation:ha-lds-ellipsis1 .6s infinite;left:6px}.ha-lds-ellipsis div:nth-child(2),.ha-lds-ellipsis-load div:nth-child(2),.ha-lds-ellipsis-publish div:nth-child(2){-webkit-animation:ha-lds-ellipsis2 .6s infinite;animation:ha-lds-ellipsis2 .6s infinite;left:4px}.ha-lds-ellipsis div:nth-child(3),.ha-lds-ellipsis-load div:nth-child(3),.ha-lds-ellipsis-publish div:nth-child(3){-webkit-animation:ha-lds-ellipsis2 .6s infinite;animation:ha-lds-ellipsis2 .6s infinite;left:16px}.ha-lds-ellipsis div:nth-child(4),.ha-lds-ellipsis-load div:nth-child(4),.ha-lds-ellipsis-publish div:nth-child(4){-webkit-animation:ha-lds-ellipsis3 .6s infinite;animation:ha-lds-ellipsis3 .6s infinite;left:30px}@-webkit-keyframes ha-lds-ellipsis1{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes ha-lds-ellipsis1{0%{transform:scale(0)}to{transform:scale(1)}}@-webkit-keyframes ha-lds-ellipsis3{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes ha-lds-ellipsis3{0%{transform:scale(1)}to{transform:scale(0)}}@-webkit-keyframes ha-lds-ellipsis2{0%{transform:translate(0)}to{transform:translate(16px)}}@keyframes ha-lds-ellipsis2{0%{transform:translate(0)}to{transform:translate(16px)}}.ha-cross:after,.ha-cross:before{content:""}.ha-cross:before{transform:skewY(-27deg)}.ha-insertion:before{content:"\2E02"}.ha-insertion:after{content:"\2E03"}.ha-nr:after,.ha-nr:before{content:" \200E\25E6"}.ha-added:after,.ha-added:before,.ha-note:after,.ha-note:before{content:""}.ha-bzg:after{content:"]"}*{scroll-behavior:smooth;-webkit-text-decoration-skip-ink:all;text-decoration-skip-ink:all}html{font-size:15.5px;overflow-y:scroll}body{background-image:url(../img/subtlenet2.png);background-repeat:repeat}.ha-diagdel{display:inline-block!important;position:relative;text-decoration:none!important;-webkit-text-decoration-line:none!important;text-decoration-line:none!important}.ha-diagdel:after,.ha-diagdel:before{bottom:1.4ex;content:"";height:0%;position:absolute;right:0;width:100%}.ha-diagdel:before{border-style:solid;border-width:1px;transform:skewY(-36deg)}.ha-del .ha-del,.ha-del .ha-del :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){-moz-text-decoration-style:double;-webkit-text-decoration-style:double!important;text-decoration-style:double;text-decoration-thickness:1px}.ha-del .ha-del .ha-ul,.ha-del .ha-ul .ha-del,.ha-ul .ha-del .ha-del{text-decoration:line-through underline;-moz-text-decoration-style:double;-webkit-text-decoration-style:double!important;text-decoration-style:double;text-decoration-thickness:1px}.ha-del .ha-ul,.ha-ul .ha-del{text-decoration:line-through underline;text-decoration-skip-ink:auto;-webkit-text-decoration-skip-ink:auto;text-decoration-thickness:1px}.ha-table{font-variant-numeric:tabular-nums!important;overflow:hidden;white-space:nowrap}.ha-hatab-0-2{display:inline;min-width:50%;position:static}.ha-hatab-1-2{display:inline-block;left:50%;min-width:50%;position:absolute}.ha-hatab-0-3{display:inline;min-width:33.333%;position:static}.ha-hatab-1-3{left:33%}.ha-hatab-1-3,.ha-hatab-2-3{display:inline-block;min-width:33.333%;position:absolute}.ha-hatab-2-3{left:66%}.ha-hatab-0-4{display:inline;min-width:25%;position:static}.ha-hatab-1-4{left:25%}.ha-hatab-1-4,.ha-hatab-2-4{display:inline-block;min-width:25%;position:absolute}.ha-hatab-2-4{left:50%}.ha-hatab-3-4{display:inline-block;left:75%;min-width:25%;position:absolute}.ha-hatab-0-5{display:inline;min-width:20%;position:static}.ha-hatab-1-5{left:20%}.ha-hatab-1-5,.ha-hatab-2-5{display:inline-block;min-width:20%;position:absolute}.ha-hatab-2-5{left:40%}.ha-hatab-3-5{left:60%}.ha-hatab-3-5,.ha-hatab-4-5{display:inline-block;min-width:20%;position:absolute}.ha-hatab-4-5{left:80%}.ha-hatab-0-6{display:inline;min-width:16.667%;position:static}.ha-hatab-1-6{left:16.667%}.ha-hatab-1-6,.ha-hatab-2-6{display:inline-block;min-width:16.667%;position:absolute}.ha-hatab-2-6{left:33.333%}.ha-hatab-3-6{left:50%}.ha-hatab-3-6,.ha-hatab-4-6{display:inline-block;min-width:16.667%;position:absolute}.ha-hatab-4-6{left:66.667%}.ha-hatab-5-6{display:inline-block;left:83.333%;min-width:16.667%;position:absolute}.ha-hatab-0-7{display:inline;min-width:14.286%;position:static}.ha-hatab-1-7{left:14.286%}.ha-hatab-1-7,.ha-hatab-2-7{display:inline-block;min-width:14.286%;position:absolute}.ha-hatab-2-7{left:28.571%}.ha-hatab-3-7{left:42.857%}.ha-hatab-3-7,.ha-hatab-4-7{display:inline-block;min-width:14.286%;position:absolute}.ha-hatab-4-7{left:57.143%}.ha-hatab-5-7{left:71.429%}.ha-hatab-5-7,.ha-hatab-6-7{display:inline-block;min-width:14.286%;position:absolute}.ha-hatab-6-7{left:85.714%}.ha-hatab-0-8{display:inline;min-width:12.5%;position:static}.ha-hatab-1-8{left:12.5%}.ha-hatab-1-8,.ha-hatab-2-8{display:inline-block;min-width:12.5%;position:absolute}.ha-hatab-2-8{left:25%}.ha-hatab-3-8{left:37.5%}.ha-hatab-3-8,.ha-hatab-4-8{display:inline-block;min-width:12.5%;position:absolute}.ha-hatab-4-8{left:50%}.ha-hatab-5-8{left:62.5%}.ha-hatab-5-8,.ha-hatab-6-8{display:inline-block;min-width:12.5%;position:absolute}.ha-hatab-6-8{left:75%}.ha-hatab-7-8{display:inline-block;left:87.5%;min-width:12.5%;position:absolute}.ha-hatab-0-9{display:inline;min-width:11.111%;position:static}.ha-hatab-1-9{left:11.111%}.ha-hatab-1-9,.ha-hatab-2-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-2-9{left:22.222%}.ha-hatab-3-9{left:33.333%}.ha-hatab-3-9,.ha-hatab-4-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-4-9{left:44.444%}.ha-hatab-5-9{left:55.555%}.ha-hatab-5-9,.ha-hatab-6-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-6-9{left:66.666%}.ha-hatab-7-9{left:77.777%}.ha-hatab-7-9,.ha-hatab-8-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-8-9{left:88.888%}.ha-hatab-0-10,.ha-hatab-1-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-1-10{left:10%}.ha-hatab-2-10{left:20%}.ha-hatab-2-10,.ha-hatab-3-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-3-10{left:30%}.ha-hatab-4-10{left:40%}.ha-hatab-4-10,.ha-hatab-5-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-5-10{left:50%}.ha-hatab-6-10{left:60%}.ha-hatab-6-10,.ha-hatab-7-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-7-10{left:70%}.ha-hatab-8-10{left:80%}.ha-hatab-8-10,.ha-hatab-9-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-9-10{left:90%}.ha-hatab-0-11,.ha-hatab-1-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-1-11{left:9.091%}.ha-hatab-2-11{left:18.182%}.ha-hatab-2-11,.ha-hatab-3-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-3-11{left:27.273%}.ha-hatab-4-11{left:36.364%}.ha-hatab-4-11,.ha-hatab-5-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-5-11{left:45.455%}.ha-hatab-6-11{left:54.545%}.ha-hatab-6-11,.ha-hatab-7-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-7-11{left:63.636%}.ha-hatab-8-11{left:72.727%}.ha-hatab-8-11,.ha-hatab-9-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-9-11{left:81.818%}.ha-hatab-10-11{display:inline-block;left:90.909%;min-width:9.091%;position:absolute}.ha-hatab-0-12,.ha-hatab-1-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-1-12{left:8.333%}.ha-hatab-2-12{left:16.666%}.ha-hatab-2-12,.ha-hatab-3-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-3-12{left:25%}.ha-hatab-4-12{left:33.333%}.ha-hatab-4-12,.ha-hatab-5-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-5-12{left:41.666%}.ha-hatab-6-12{left:50%}.ha-hatab-6-12,.ha-hatab-7-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-7-12{left:58.333%}.ha-hatab-8-12{left:66.666%}.ha-hatab-8-12,.ha-hatab-9-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-9-12{left:75%}.ha-hatab-10-12{left:83.333%}.ha-hatab-10-12,.ha-hatab-11-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-11-12{left:91.666%}.ha-static table{empty-cells:show}.ha-lettertext .ha-marginalbox .ha-marginal:after,.ha-lettertext .ha-marginalbox .ha-marginal:last-of-type:after,.ha-lettertext .ha-marginalbox:before{content:""}.ha-lettertext .ha-marginalbox.ha-collapsed-box .ha-marginallist .ha-marginal,.ha-tradzhtext .ha-marginalbox.ha-collapsed-box .ha-marginallist .ha-marginal{-webkit-box-orient:vertical;display:-webkit-inline-box}.ha-additions .ha-edits .ha-editentries tr td:nth-of-type(2):after{content:""}@media print{.ha-footer,header{display:none}.ha-letterheadernav{display:none!important}.ha-letterheader{border-style:none!important}.ha-scrollbutton{display:none!important}html{font-size:1rem;line-height:1.5rem}}.hover\:text-black:hover{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.hover\:underline:hover{-webkit-text-decoration-line:underline;text-decoration-line:underline}.dark .dark\:border-none{border-style:none}.dark .dark\:border-gray-900{--tw-border-opacity:1;border-color:rgb(17 24 39/var(--tw-border-opacity))}.dark .dark\:bg-slate-900{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.dark .dark\:bg-slate-800{--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}.dark .dark\:pt-2{padding-top:.5rem}.dark .dark\:pb-2{padding-bottom:.5rem}.dark .dark\:text-slate-50{--tw-text-opacity:1;color:rgb(248 250 252/var(--tw-text-opacity))}.dark .dark\:shadow-xl{--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}@media (min-width:700px){.sm\:inline{display:inline}.sm\:hidden{display:none}}@media (min-width:940px){.md\:mb-0{margin-bottom:0}.md\:mt-4{margin-top:1rem}.md\:\!block{display:block!important}.md\:inline-block{display:inline-block}.md\:inline{display:inline}.md\:flex{display:flex}.md\:hidden{display:none}.md\:\!hidden{display:none!important}.md\:h-16{height:4rem}.md\:min-h-\[4\.5rem\]{min-height:4.5rem}.md\:w-16{width:4rem}.md\:basis-1\/2{flex-basis:50%}.md\:flex-row{flex-direction:row}.md\:items-stretch{align-items:stretch}.md\:gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.md\:px-12{padding-left:3rem;padding-right:3rem}.md\:py-6{padding-bottom:1.5rem;padding-top:1.5rem}.md\:px-9{padding-left:2.25rem;padding-right:2.25rem}.md\:pt-8{padding-top:2rem}.md\:text-3xl{font-size:1.875rem;line-height:2.25rem}.md\:text-lg{font-size:1.15rem;line-height:1.75rem}}@media (min-width:1190px){.desktop\:absolute{position:absolute}.desktop\:right-0{right:0}.desktop\:right-10{right:2.5rem}.desktop\:my-0{margin-bottom:0;margin-top:0}.desktop\:mb-10{margin-bottom:2.5rem}.desktop\:mb-0{margin-bottom:0}.desktop\:mb-8{margin-bottom:2rem}.desktop\:mr-16{margin-right:4rem}.desktop\:block{display:block}.desktop\:flex{display:flex}.desktop\:hidden{display:none}.desktop\:h-16{height:4rem}.desktop\:w-16{width:4rem}.desktop\:max-w-screen-desktop{max-width:1190px}.desktop\:basis-1\/2{flex-basis:50%}.desktop\:flex-row{flex-direction:row}.desktop\:flex-col{flex-direction:column}.desktop\:items-stretch{align-items:stretch}.desktop\:gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.desktop\:whitespace-nowrap{white-space:nowrap}.desktop\:border-b{border-bottom-width:1px}.desktop\:border-slate-300{--tw-border-opacity:1;border-color:rgb(203 213 225/var(--tw-border-opacity))}.desktop\:bg-slate-200{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.desktop\:px-8{padding-left:2rem;padding-right:2rem}.desktop\:pr-72{padding-right:18rem}.desktop\:pr-8{padding-right:2rem}.desktop\:text-2xl{font-size:1.5rem;line-height:2rem}.desktop\:shadow-2xl{--tw-shadow:0 25px 50px -12px rgba(0,0,0,.25);--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}}@media (min-width:1440px){.xl\:h-12{height:3rem}.xl\:w-12{width:3rem}.xl\:text-3xl{font-size:1.875rem;line-height:2.25rem}} \ No newline at end of file +/*! tailwindcss v3.1.1 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-family:Biolinum,sans-serif;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace,mono;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::-webkit-backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }body{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity));overflow-x:hidden}.dark body{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));background-image:none;color:rgb(255 255 255/var(--tw-text-opacity))}@media (min-width:940px){body{overflow-x:auto;overflow-y:scroll}}.ha-added,.ha-added :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-bg-opacity:1;background-color:rgb(203 213 225/var(--tw-bg-opacity))}.dark .ha-added,.dark .ha-added :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-bg-opacity:1;background-color:rgb(71 85 105/var(--tw-bg-opacity))}.ha-note,.ha-note :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.dark .ha-note,.dark .ha-note :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.ha-ful,.ha-ful :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.dark .ha-ful,.dark .ha-ful :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.ha-tul,.ha-tul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.dark .ha-tul,.dark .ha-tul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.ha-diagdel:before{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.dark .ha-diagdel:before{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.active{color:rgb(216 0 0/var(--tw-text-opacity))!important}.active,.dark .active{--tw-text-opacity:1!important}.dark .active{color:rgb(0 0 0/var(--tw-text-opacity))!important}.active:hover{--tw-text-opacity:1!important;color:rgb(216 0 0/var(--tw-text-opacity))!important}.dark .active:hover{--tw-text-opacity:1!important;color:rgb(31 41 55/var(--tw-text-opacity))!important}*{transition-duration:.1s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}body{font-size:1rem;height:100%;line-height:1.5rem;width:100%}@media (min-width:1190px){body{font-size:1.15rem;line-height:1.75rem}}.ha-found{--tw-text-opacity:1!important;color:rgb(50 112 184/var(--tw-text-opacity))!important}.ha-location{--tw-text-opacity:1!important;color:rgb(216 0 0/var(--tw-text-opacity))!important;display:none;font-size:1.25rem;line-height:1.75rem;position:absolute}@media (min-width:700px){.ha-location{display:inline-block}}.ha-zhbreak{display:none}@media (min-width:700px){.ha-zhbreak{display:inline}}.ha-up{position:relative;top:-.75rem}.ha-bzg{font-family:Libertine,serif!important;font-size:.7rem!important;font-weight:600!important;line-height:1rem!important}.ha-literal,.ha-title{display:inline}.ha-title{font-style:italic}.ha-insertedlemma{display:inline}.ha-serif{font-family:Libertine,serif}.ha-aq,.ha-aq :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-family:Biolinum,sans-serif}.ha-ul,.ha-ul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){-webkit-text-decoration-line:underline;text-decoration-line:underline}.ha-del,.ha-del :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-diagdel,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){display:inline;-webkit-text-decoration-line:line-through;text-decoration-line:line-through}.ha-hand,.ha-hand :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-family:Playfair,serif;font-size:.9rem}.ha-added,.ha-added :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){border-radius:.125rem;padding-left:.125rem;padding-right:.125rem}.ha-emph :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box),.ha-note,.ha-note :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-style:italic}.ha-sup:not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-size:80%;position:relative;top:-.3em}.ha-super:not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){display:inline-block;font-size:.7rem;font-variant-numeric:normal;line-height:1rem;line-height:1;position:relative;top:-.3em;vertical-align:baseline}.ha-sub:not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){bottom:-.25em;font-size:.7rem;line-height:1rem;line-height:1;position:relative;vertical-align:baseline}.ha-ful,.ha-ful :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){border-bottom-width:1px;display:inline;padding-bottom:2px}.ha-dul,.ha-dul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:double;text-decoration-style:double}.ha-tul,.ha-tul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){border-bottom-width:3px;border-style:double;-webkit-text-decoration-line:underline;text-decoration-line:underline}.up{position:relative;top:-.5em}.ha-alignright:not(.reference *,.reference,.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){float:right}.ha-aligncenter:not(.reference *,.reference,.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-translate-x:-50%;left:45%;position:absolute;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));white-space:nowrap}.ha-sal{display:inline-block;margin-left:1.5rem}.ha-letlink{font-variant-caps:all-petite-caps}.ha-indent-1{padding-left:.5rem}@media (min-width:700px){.ha-indent-1{padding-left:1rem}}.ha-indent-2{padding-left:1rem}@media (min-width:700px){.ha-indent-2{padding-left:2rem}}.ha-indent-3{padding-left:1.5rem}@media (min-width:700px){.ha-indent-3{padding-left:3rem}}.ha-indent-4{padding-left:2rem}@media (min-width:700px){.ha-indent-4{padding-left:4rem}}.ha-indent-5{padding-left:2.5rem}@media (min-width:700px){.ha-indent-5{padding-left:5rem}}.ha-indent-6{padding-left:5rem}@media (min-width:700px){.ha-indent-6{padding-left:11rem}}.ha-indent-7{padding-left:8rem}@media (min-width:700px){.ha-indent-7{padding-left:16rem}}.ha-collapsed-box,.ha-collapsed-box *{cursor:default;min-height:0;min-width:0;overflow:hidden;text-overflow:ellipsis;z-index:0}.ha-expanded-box{height:auto!important;max-height:100vh!important;padding-bottom:.25rem;z-index:1000}.ha-topnav-dropdown .ha-topnav-dropdown-content{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(148 163 184/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-topnav-dropdown .ha-topnav-dropdown-content a:hover{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.ha-topnav a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-topnav a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}@media (min-width:1190px){.ha-topnav a{border-bottom-width:4px;border-color:transparent}}.dark .ha-topnav a.active{--tw-border-opacity:1;border-color:rgb(51 65 85/var(--tw-border-opacity));font-weight:700}@media (min-width:1190px){.ha-topnav a.active{--tw-border-opacity:1;border-bottom-width:4px;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);border-bottom-width:1px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}}.ha-menusymbol svg{stroke:#000;--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.ha-topnav{display:flex}@media (min-width:940px){.ha-topnav{font-size:1.15rem;line-height:1.75rem}}@media (min-width:1190px){.ha-topnav{flex-grow:0;flex-shrink:0;place-self:end}}@media (min-width:1440px){.ha-topnav{margin-bottom:.25rem}}@media (min-width:1680px){.ha-topnav{font-size:1.25rem;line-height:1.75rem}}.ha-topnav a{display:none;margin-right:1.5rem}@media (min-width:1190px){.ha-topnav a{display:inline-block}}@media (min-width:1680px){.ha-topnav a{margin-right:1.75rem}}.ha-topnav a:last-child{margin-right:0}.ha-topnav-dropdown{display:none}@media (min-width:1190px){.ha-topnav-dropdown{display:inline-block;position:relative}.ha-topnav-dropdown:hover .ha-topnav-dropdown-content{display:block}}.ha-topnav-dropdown .ha-topnav-dropdown-content{display:none;margin-right:1.5rem;min-width:130px;padding-top:.25rem;right:0;white-space:nowrap;z-index:50}@media (min-width:1190px){.ha-topnav-dropdown .ha-topnav-dropdown-content{position:absolute}}.ha-topnav-dropdown .ha-topnav-dropdown-content a{display:block;margin-right:0;padding:.5rem .75rem .5rem .5rem;white-space:nowrap}.ha-topnav-dropdown .ha-topnav-dropdown-content .active{border-style:none}.ha-topnav a.active{-webkit-text-decoration-line:underline;text-decoration-line:underline;text-underline-offset:2px}@media (min-width:1190px){.ha-topnav a.active{-webkit-text-decoration-line:none;text-decoration-line:none}}.ha-topnav.ha-topnav-collapsed{display:block;font-size:1rem;height:100%;line-height:1.5rem;margin-top:1rem;width:100%}@media (min-width:940px){.ha-topnav.ha-topnav-collapsed{font-size:1.15rem;line-height:1.75rem}}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed{display:flex;margin-top:0;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}}@media (min-width:1680px){.ha-topnav.ha-topnav-collapsed{font-size:1.25rem;line-height:1.75rem}}.ha-topnav.ha-topnav-collapsed a{clear:both;display:block;padding-bottom:.25rem;padding-top:.25rem;text-align:left;width:100%}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed a{display:inline-block;padding-bottom:0;padding-top:0;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown{display:block}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown{display:inline-block}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown:hover .ha-topnav-dropdown-content{display:block}}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;border-style:none;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:block;padding-top:0}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content{display:none;padding-top:.5rem}}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content a{padding-bottom:.25rem;padding-top:.25rem}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content a{padding-bottom:.5rem;padding-top:.5rem}}header .switchsites{bottom:-2.75rem;display:none;position:absolute;right:0}@media (min-width:940px){header .switchsites{display:block}}header .switchsites .switchsitesbtn{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-drop-shadow:drop-shadow(0 1px 1px rgba(0,0,0,.05));background-color:rgb(249 250 251/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(148 163 184/var(--tw-border-opacity));box-sizing:border-box;color:rgb(30 41 59/var(--tw-text-opacity));display:flex;font-size:1rem;line-height:1.5rem;width:auto}.dark header .switchsites .switchsitesbtn,header .switchsites .switchsitesbtn{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.dark header .switchsites .switchsitesbtn{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-drop-shadow:drop-shadow(0 4px 3px rgba(0,0,0,.07)) drop-shadow(0 2px 2px rgba(0,0,0,.06));background-color:rgb(15 23 42/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}header .switchsites .switchsitesbtn:hover{--tw-text-opacity:1;--tw-drop-shadow:drop-shadow(0 1px 2px rgba(0,0,0,.1)) drop-shadow(0 1px 1px rgba(0,0,0,.06));color:rgb(0 0 0/var(--tw-text-opacity));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.dark header .switchsites .switchsitesbtn:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}header .switchsites .switchsitesbtn img{align-self:center;display:block;height:1.25rem;margin-left:.5rem;margin-right:.5rem}header .switchsites .switchsitesbtn .switchsitestext{display:block;margin:.25rem .5rem .125rem .25rem;white-space:nowrap}header .switchsites .switchsitesbtn .switchsitesarrow{display:block;height:2rem;padding:.25rem .5rem .125rem .25rem}.ha-footer .ha-footertext{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));color:rgb(23 53 87/var(--tw-text-opacity))}.dark .ha-footer .ha-footertext{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.ha-footer .ha-themetoggles{--tw-bg-opacity:1;--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);background-color:rgb(226 232 240/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);transition-duration:.3s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.dark .ha-footer .ha-themetoggles{--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}.ha-footer .ha-themetoggles #ha-toggledark:checked~.ha-themetoggleslider{background-color:rgb(226 232 240/var(--tw-bg-opacity))}.ha-footer .ha-themetoggles #ha-togglebright:checked~.ha-themetoggleslider,.ha-footer .ha-themetoggles #ha-toggledark:checked~.ha-themetoggleslider{--tw-bg-opacity:1;transition-duration:.3s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-footer .ha-themetoggles #ha-togglebright:checked~.ha-themetoggleslider{background-color:rgb(248 250 252/var(--tw-bg-opacity))}.ha-footer{font-family:Libertine,serif}.ha-footer .ha-footertext{font-size:.85rem;line-height:1.25rem;margin-left:auto;margin-right:auto;max-width:1190px;padding:.5rem 1rem;text-align:right}.ha-footer a{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-footer a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-footer .ha-themetoggles{border-radius:1.5rem;height:1rem;padding-left:.125rem;padding-right:.125rem;position:relative;white-space:nowrap;width:34px}.ha-footer .ha-themetoggles *{float:left}.ha-footer .ha-themetoggles input[type=radio]{display:none}.ha-footer .ha-themetoggles label{border-radius:1.5rem;cursor:pointer;display:block;height:11px;margin:3px 2px;text-align:center;width:11px;z-index:10}.ha-footer .ha-themetoggles .ha-themetoggleslider{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);border-radius:1.5rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);height:11px;position:absolute;top:3px;transition-duration:.1s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);width:11px}.ha-footer .ha-themetoggles #ha-toggledark:checked~.ha-themetoggleslider{left:.25rem}.ha-footer .ha-themetoggles #ha-togglebright:checked~.ha-themetoggleslider{left:19px}.ha-scrollbutton{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-bottom-left-radius:.75rem;border-top-left-radius:.75rem;bottom:1.5rem;color:rgb(30 69 112/var(--tw-text-opacity));cursor:pointer;opacity:0;padding:.5rem 1.5rem .5rem .5rem;position:fixed;right:0;text-align:center;transition-duration:.5s;transition-property:opacity;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-scrollbutton,.ha-scrollbutton:hover{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-scrollbutton:hover{--tw-text-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);color:rgb(43 97 158/var(--tw-text-opacity))}.dark .ha-scrollbutton{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.ha-scrollbuttonarrow{height:2rem;width:2rem}@media (min-width:1190px){.ha-scrollbuttonarrow{height:2.5rem;width:2.5rem}}.ha-static{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-static{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.ha-static h3{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity))}.dark .ha-static h3{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity));font-weight:700}.ha-static table th{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity))}.dark .ha-static table th{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity));font-weight:700}.ha-static table tr:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.dark .ha-static table tr:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity))}.ha-static{font-family:Libertine,serif;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;padding:1rem;width:100%}@media (min-width:940px){.ha-static{padding:3rem 4rem}.ha-static .ha-static-right-margin{padding-right:15rem}}@media (min-width:1190px){.ha-static .ha-static-right-margin{padding-right:20rem}}.ha-static h1{font-size:1.5rem;font-weight:700;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;line-height:2rem;margin-bottom:2.25rem}@media (min-width:1190px){.ha-static h1{font-size:3rem;font-weight:400;line-height:1}}.ha-static h2{font-size:1.15rem;line-height:1.75rem;margin-bottom:.75rem;margin-top:1rem}@media (min-width:1190px){.ha-static h2{font-size:1.5rem;line-height:2rem}}.ha-static h3{font-weight:700;margin-bottom:.5rem;margin-top:1rem}.ha-static table{margin-bottom:.75rem;margin-top:.75rem;width:100%}.ha-static table tr td p{margin-bottom:.5rem!important;margin-top:.5rem!important}.ha-static table th{font-weight:700;padding-left:.5rem;padding-right:.5rem;text-align:left}@media (min-width:1190px){.ha-static table th{padding-right:1rem}}.ha-static table tr td{padding-left:.5rem;padding-right:.5rem;vertical-align:top}@media (min-width:1190px){.ha-static table tr td{padding-right:1rem}.ha-static table tr td:last-child{white-space:normal}}.ha-static p{margin-bottom:1rem;margin-top:1rem}.ha-static a{-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-static a,.ha-static a:hover{-webkit-text-decoration-line:underline;text-decoration-line:underline}.ha-static a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-static .ha-footnote{font-size:.85rem;line-height:1.25rem;position:relative}@media (min-width:1190px){.ha-static .ha-footnote{font-size:1rem;line-height:1.5rem}}.ha-static .ha-footnote .ha-footnote-ref{display:inline-block;left:-2.5rem;position:absolute;text-align:right;width:2rem}.ha-register .ha-register-body,.ha-register .ha-register-head{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-register .ha-register-body,.dark .ha-register .ha-register-head{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);background-color:rgb(15 23 42/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(248 250 252/var(--tw-text-opacity))}.ha-register .ha-register-head{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-register .ha-register-head .ha-register-nav a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-register .ha-register-head .ha-register-nav a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-register .ha-register-head .ha-register-nav a{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .ha-register .ha-register-head .ha-register-nav a:hover{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.ha-register .ha-register-head .ha-register-nav a.active{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(226 232 240/var(--tw-border-opacity))}.dark .ha-register .ha-register-head .ha-register-nav a.active{--tw-text-opacity:1!important;color:rgb(229 231 235/var(--tw-text-opacity))!important;font-weight:700}.dark .ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks,.dark .ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));color:rgb(248 250 252/var(--tw-text-opacity))}@media (min-width:1190px){.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}}.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks:before,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks:before{--tw-bg-opacity:1;background-color:rgb(43 97 158/var(--tw-bg-opacity))}.dark .ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks:before,.dark .ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks:before{--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}.ha-register .ha-register-body .ha-commenthead .ha-letlinks.ha-expanded-box{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.dark .ha-register .ha-register-body .ha-commenthead .ha-letlinks.ha-expanded-box{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-register .ha-btn-collapsed-box{margin-top:.125rem}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a{-webkit-text-decoration-line:none;text-decoration-line:none}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a:hover{color:rgb(23 53 87/var(--tw-text-opacity));-webkit-text-decoration-line:underline;text-decoration-line:underline}.dark .ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.dark .ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-register{font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;width:100%}.ha-register .ha-register-body,.ha-register .ha-register-head{padding-left:2.25rem;padding-right:2.25rem;padding-top:2.25rem}@media (min-width:940px){.ha-register .ha-register-body,.ha-register .ha-register-head{padding-left:4rem;padding-right:4rem;padding-top:3rem}}.ha-register .ha-register-head{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.ha-register .ha-register-head h1{display:inline-block;font-size:1.5rem;font-weight:700;line-height:2rem;margin-bottom:1.5rem}@media (min-width:1190px){.ha-register .ha-register-head h1{font-size:3rem;font-weight:400;line-height:1}}.ha-register .ha-register-head .ha-register-add a .ha-register-add-text{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-register .ha-register-head .ha-register-add a .ha-register-add-text:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-register .ha-register-head .ha-register-add a{display:flex;flex-direction:row;font-family:Biolinum,sans-serif;font-size:.85rem;line-height:1.25rem;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.ha-register .ha-register-head .ha-register-add a .ha-register-add-plusbutton{font-weight:700;line-height:1;padding-bottom:.25rem;padding-top:.25rem}.ha-register .ha-register-head .ha-register-add a .ha-register-add-text{line-height:1;padding-left:.25rem;padding-right:.5rem;padding-top:.25rem}.ha-register .ha-register-head form{-moz-column-gap:.5rem;column-gap:.5rem;display:flex;flex-direction:row;font-family:Biolinum,sans-serif;margin-bottom:.25rem;margin-top:-.25rem;padding-bottom:.25rem;padding-top:.25rem}.ha-register .ha-register-head form input{border-width:1px;flex-grow:0;min-width:0;padding-left:.25rem;padding-right:.25rem}.ha-register .ha-register-head form button{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;padding-left:.25rem;padding-right:.25rem}.ha-register .ha-register-head form button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-register .ha-register-head form button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-register .ha-register-head form button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-register .ha-register-head .ha-register-nav{font-family:Biolinum,sans-serif;margin-top:1.5rem}.ha-register .ha-register-head .ha-register-nav a{display:inline-block;margin-right:.25rem;padding-left:.25rem;padding-right:.25rem}@media (min-width:940px){.ha-register .ha-register-head .ha-register-nav a{margin-right:.75rem}}.ha-register .ha-register-head .ha-register-nav a:first{padding-left:0}.ha-register .ha-register-head .ha-register-nav .ha-register-left-nav,.ha-register .ha-register-head .ha-register-nav .ha-register-right-nav{display:inline-block}.ha-register .ha-register-body{border-bottom-left-radius:.125rem;border-bottom-right-radius:.125rem;padding-bottom:2.25rem}@media (min-width:940px){.ha-register .ha-register-body{padding-bottom:3rem;padding-right:29rem}}.ha-register .ha-register-body .ha-comment{display:block;margin-bottom:2.25rem}@media (min-width:940px){.ha-register .ha-register-body .ha-comment{margin-bottom:3rem}}.ha-register .ha-register-body .ha-comment a{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-register .ha-register-body .ha-comment a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-register .ha-register-body .ha-comment .ha-headcomment{display:block}@media (min-width:1190px){.ha-register .ha-register-body .ha-comment .ha-headcomment{position:relative}}.ha-register .ha-register-body .ha-comment .ha-subcomment{display:block;margin-left:2rem;margin-top:.5rem}@media (min-width:1190px){.ha-register .ha-register-body .ha-comment .ha-subcomment{position:relative}}.ha-register .ha-register-body .ha-comment .ha-commenthead{display:block}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:700}.ha-register .ha-forschung .ha-register-body .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:400}.ha-register .ha-forschung .ha-register-body .ha-comment{margin-bottom:1rem;padding-left:1rem;text-indent:-1rem}@media (min-width:940px){.ha-register .ha-forschung .ha-register-body .ha-comment{margin-bottom:1.5rem}}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks{display:inline-block;font-family:Biolinum,sans-serif;font-size:.7rem;font-variant-caps:all-petite-caps;font-weight:400;line-height:1rem;line-height:1.375;margin-left:.5rem;margin-top:.25rem}@media (min-width:940px){.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks{font-size:.85rem;line-height:1.25rem}}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks:before{--tw-content:"";bottom:.1rem;content:var(--tw-content);left:0;margin-top:.25rem;position:absolute;top:.1rem;width:.125rem}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{display:inline}@media (min-width:1190px){.ha-register .ha-forschung .ha-register-body .ha-headcomment .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-headcomment .ha-commenthead .ha-letlinks{left:48rem}.ha-register .ha-forschung .ha-register-body .ha-subcomment .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-subcomment .ha-commenthead .ha-letlinks{left:46rem}}.ha-register .ha-bibel .ha-register-body .ha-commenthead .ha-lemma a{padding-left:.5rem}.ha-register .ha-bibel .ha-register-body .ha-commenthead .ha-lemma svg{display:inline}.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks{padding-left:.5rem}@media (min-width:1190px){.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks{display:block;position:absolute;text-indent:0;top:0;width:20rem}}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.ha-register .ha-headcomment .ha-btn-collapsed-box{left:47.6rem}.ha-register .ha-subcomment .ha-btn-collapsed-box{left:45.6rem}.ha-register .ha-btn-collapsed-box{cursor:pointer;display:none;position:absolute;top:-.15rem}@media (min-width:1190px){.ha-register .ha-btn-collapsed-box{display:block}}.ha-tooltiptext{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(23 53 87/var(--tw-border-opacity));border-width:1px;color:rgb(23 53 87/var(--tw-text-opacity))}.dark .ha-tooltiptext,.ha-tooltiptext{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.dark .ha-tooltiptext{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(30 41 59/var(--tw-bg-opacity));border-style:none}.ha-tooltip .ha-tooltiptext:after{--tw-border-opacity:1;border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent;border-top-color:rgb(71 85 105/var(--tw-border-opacity))}.dark .ha-tooltip .ha-tooltiptext:after{--tw-border-opacity:1;border-top-color:rgb(30 41 59/var(--tw-border-opacity))}.ha-pill{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));border-radius:.25rem;color:rgb(75 85 99/var(--tw-text-opacity))}.dark .ha-pill.ha-newpill{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(30 41 59/var(--tw-bg-opacity));border-color:rgb(148 163 184/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(255 255 255/var(--tw-text-opacity))}.ha-pill .ha-cross:before{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(23 53 87/var(--tw-border-opacity))}.dark .ha-pill .ha-cross:before{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.ha-letterhead{display:flex;flex-direction:row}.ha-letterhead .ha-letternumber{display:flex;font-size:3rem;line-height:1;margin-right:1rem}@media (min-width:1190px){.ha-letterhead .ha-letternumber{font-size:3.75rem;font-weight:400;line-height:1;margin-right:1.5rem}}.ha-letterhead .ha-letternumber .ha-letternumberinline{display:inline;line-height:1;vertical-align:middle}.ha-letterhead .ha-metadata{align-self:flex-end;display:flex;flex-direction:column;flex-grow:1}.ha-letterhead .ha-metadatastrike{align-self:center;display:flex}.ha-letterhead .ha-metadata .ha-metadataupperrow{display:flex;flex-direction:row;line-height:1.375}.ha-letterhead .ha-metadata .ha-metadataupperrow .ha-metadatadate{display:flex;font-variant-caps:petite-caps;font-variant-numeric:oldstyle-nums;white-space:nowrap}.ha-tooltip{align-self:center;cursor:default;display:inline-block;position:relative}.ha-tooltiptext{border-radius:.25rem;font-size:.85rem;line-height:1.25rem;padding:.125rem .25rem;position:absolute;text-align:center;z-index:10}.ha-tooltiptext:after{left:50%;position:absolute;top:100%}.ha-pill{font-size:.7rem;letter-spacing:0;line-height:1rem;margin-left:.375rem;padding-left:.25rem;padding-right:.25rem;white-space:nowrap}.ha-pill .ha-cross{display:inline-block;position:relative}.ha-pill .ha-cross:after,.ha-pill .ha-cross:before{height:0;position:absolute;right:0;top:50%;width:100%}.ha-letterhead .ha-metadata .ha-metadatarows .hametadatapersons{display:flex;line-height:1.375}.ha-letterheader{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-bottom-width:2px;border-color:rgb(203 213 225/var(--tw-border-opacity))}.dark .ha-letterheader{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);background-color:rgb(15 23 42/var(--tw-bg-opacity));border-color:rgb(248 250 252/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(248 250 252/var(--tw-text-opacity))}.ha-letterheader .ha-lettertabs a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-letterheader .ha-lettertabs a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-letterheader .ha-lettertabs a{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .ha-letterheader .ha-lettertabs a:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-letterheader .ha-lettertabs a.active{--tw-border-opacity:1;--tw-text-opacity:1;border-bottom-width:3px;border-color:rgb(203 213 225/var(--tw-border-opacity));color:rgb(216 0 0/var(--tw-text-opacity))}.dark .ha-letterheader .ha-lettertabs a.active{--tw-border-opacity:1;--tw-text-opacity:1!important;border-color:rgb(248 250 252/var(--tw-border-opacity));color:rgb(229 231 235/var(--tw-text-opacity))!important;font-weight:700}.ha-letterheader .ha-lettermetalinks{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(203 213 225/var(--tw-border-opacity))}.ha-letterheader .ha-lettermetalinks a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-letterheader .ha-lettermetalinks a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-letterheader .ha-lettermetalinks a{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .ha-letterheader .ha-lettermetalinks a:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-letterbody{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-letterbody{--tw-bg-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);background-color:rgb(15 23 42/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-text{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(226 232 240/var(--tw-border-opacity))}.dark .ha-text{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}@media (min-width:700px){.ha-appcontainer.ha-appcontainer-0 .ha-text{border-left-width:2px}.dark .ha-appcontainer.ha-appcontainer-0 .ha-text{border-style:none}}.ha-defaulttab{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-defaulttab{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-defaulttab .ha-edits .ha-editentries table tr:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.dark .ha-defaulttab .ha-edits .ha-editentries table tr:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-linecount.ha-firstline{--tw-text-opacity:1;border-radius:.5rem;color:rgb(30 41 59/var(--tw-text-opacity))}.dark .ha-linecount.ha-firstline{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}@media (min-width:700px){.ha-linecount.ha-firstline{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(71 85 105/var(--tw-border-opacity));border-width:1px}.dark .ha-linecount.ha-firstline,.ha-linecount.ha-firstline{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.dark .ha-linecount.ha-firstline{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(30 41 59/var(--tw-bg-opacity));border-color:rgb(148 163 184/var(--tw-border-opacity))}.ha-linecount .ha-zhline,.ha-linecount .ha-zhpage{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-linecount .ha-zhline,.dark .ha-linecount .ha-zhpage{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}}.ha-text .ha-marginal:before{--tw-bg-opacity:1;background-color:rgb(43 97 158/var(--tw-bg-opacity))}.dark .ha-text .ha-marginal:before{--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}.ha-text .ha-marginalbox{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-text .ha-marginalbox{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-text .ha-marginalbox.ha-expanded-box .ha-marginallist{--tw-bg-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(241 245 249/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);padding-bottom:.25rem}.dark .ha-text .ha-marginalbox.ha-expanded-box .ha-marginallist{--tw-bg-opacity:1;--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);background-color:rgb(71 85 105/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-text .ha-btn-collapsed-box{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-text .ha-btn-collapsed-box:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-text .ha-btn-collapsed-box{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .ha-text .ha-btn-collapsed-box:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-letterheader{border-top-left-radius:.125rem;border-top-right-radius:.125rem;padding-left:1.5rem;padding-right:1.5rem;padding-top:2rem}@media (min-width:940px){.ha-letterheader{padding-left:4rem;padding-right:4rem;padding-top:3rem}}.ha-letterheader .ha-letterheadernav{display:flex;flex-grow:1;margin-top:2.25rem}.ha-letterheader .ha-lettertabs{display:flex;flex-grow:1}.ha-letterheader .ha-lettertabs a{cursor:pointer;display:inline-block;margin-right:.25rem;padding-left:.25rem;padding-right:.25rem}@media (min-width:940px){.ha-letterheader .ha-lettertabs a{margin-right:.75rem}.ha-letterheader .ha-lettertabs .ha-marginalsbtn{display:none}}.ha-letterheader .ha-lettertabs a.active{pointer-events:none}.ha-letterheader .ha-lettertabs a:first{padding-left:0}.ha-letterheader .ha-lettermetalinks{align-self:flex-end}.ha-letterheader .ha-lettermetalinks a{align-self:flex-end;font-variant-caps:petite-caps}.ha-letterheader .ha-lettermetalinks .ha-hkb{display:inline-block;font-variant-caps:all-petite-caps}.ha-tab{max-width:52rem}.ha-tab .ha-appcontainer{font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;margin-left:1.5rem;padding-bottom:.75rem;padding-top:.75rem}@media (min-width:940px){.ha-tab .ha-appcontainer{margin-left:4rem}}.ha-appcontainer.ha-appcontainer-0{padding-bottom:0;padding-top:0}.ha-appcontainer h3{font-weight:700}.ha-appcontainer a{-webkit-text-decoration-color:#1e293b;text-decoration-color:#1e293b;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-appcontainer a:hover{-webkit-text-decoration-color:#0f172a;text-decoration-color:#0f172a;-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-textcontainer{display:flex;margin-left:-1.5rem}@media (min-width:940px){.ha-textcontainer{margin-left:-4rem}}.ha-text{display:flow-root;font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;line-height:1.48;margin-left:1rem;max-width:38rem;padding:.5rem 1rem .75rem;position:relative}@media (min-width:700px){.ha-text{flex-shrink:0;margin-left:3rem}}@media (min-width:1190px){.ha-text{max-width:52rem}}.ha-text div{display:inline}.ha-linecount.ha-firstline{border-radius:.25rem;display:none;font-variant-caps:all-petite-caps;font-variant-numeric:normal;padding-left:.375rem;padding-right:.375rem;white-space:nowrap}@media (min-width:700px){.ha-linecount.ha-firstline{display:inline-block;line-height:1;padding-bottom:.25rem;padding-top:.125rem}}.ha-linecount{font-family:Biolinum,sans-serif;font-size:.7rem;line-height:1rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}@media (min-width:700px){.ha-linecount{margin-right:.5rem;margin-top:.35rem;position:absolute;right:100%;text-align:right}}.ha-linecount .ha-zhline{display:none}@media (min-width:700px){.ha-linecount .ha-zhline{display:inline}}.ha-linecount .ha-zhpage{display:inline-block}@media (min-width:700px){.ha-linecount .ha-zhpage{display:inline}}.ha-linecount .ha-zhline,.ha-linecount .ha-zhpage{font-variant-caps:all-petite-caps;font-variant-numeric:normal;padding-left:.25rem;padding-right:.25rem}@media (min-width:700px){.ha-linecount .ha-zhline,.ha-linecount .ha-zhpage{padding-bottom:.25rem}}.ha-linecount .ha-hiddenlinecount{display:none!important}.ha-text .ha-marginal:before{--tw-content:"";bottom:.1rem;content:var(--tw-content);left:.1rem;position:absolute;top:.2rem;width:.125rem}.ha-text .ha-marginalbox{border-radius:.125rem;display:none;font-family:Biolinum,sans-serif;font-size:.85rem;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;left:100%;line-height:1.25rem;line-height:1.25;margin-left:1.5rem;margin-top:.25rem;padding-left:.25rem;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:16rem}.ha-text .ha-marginalbox:hover{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}@media (min-width:940px){.ha-text .ha-marginalbox{display:inline-block}}@media (min-width:1190px){.ha-text .ha-marginalbox{margin-left:2.5rem;width:28rem}}.ha-text .ha-marginalbox .ha-marginallist{-moz-column-gap:1.5rem;column-gap:1.5rem;display:flex;flex-wrap:wrap;font-size:.85rem;line-height:1.25rem;line-height:1.25;padding-right:.25rem}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal{display:inline;padding-left:.5rem;position:relative}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal a{-webkit-text-decoration-line:underline!important;text-decoration-line:underline!important;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal,.ha-text .ha-marginalbox .ha-marginallist .ha-marginal *{min-height:0;min-width:0;overflow:hidden;text-overflow:ellipsis}.ha-text .ha-btn-collapsed-box{cursor:pointer;display:none;left:100%;line-height:1;margin-left:1rem;margin-top:.2rem;position:absolute}@media (min-width:940px){.ha-text .ha-btn-collapsed-box{display:inline-block}}@media (min-width:1190px){.ha-text .ha-btn-collapsed-box{margin-left:1.7rem}}.ha-defaulttab .ha-hands{margin-left:1.5rem}@media (min-width:940px){.ha-defaulttab .ha-hands{margin-left:4rem}}.ha-defaulttab .ha-hands .ha-handstitle{font-weight:700}.ha-defaulttab .ha-hands .ha-handentries .ha-handfrom,.ha-defaulttab .ha-hands .ha-handentries .ha-handto{display:inline;font-size:.85rem;font-weight:600;line-height:1.25rem;white-space:nowrap}.ha-defaulttab .ha-hands .ha-handentries .ha-handperson{display:inline;padding-left:1rem;white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editfromto{white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editfrom,.ha-defaulttab .ha-edits .ha-editentries .ha-editto{display:inline;font-size:.85rem;font-weight:600;line-height:1.25rem;white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference{white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference div{display:inline}.ha-defaulttab .ha-edits{margin-left:1.5rem;max-width:56rem}@media (min-width:940px){.ha-defaulttab .ha-edits{margin-left:4rem}.ha-defaulttab .ha-edits .ha-editentries{margin-right:-9rem}}.ha-defaulttab .ha-edits .ha-editstitle{font-weight:700}.ha-defaulttab .ha-edits .ha-editsinfo{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;padding-bottom:1rem}.ha-defaulttab .ha-edits .ha-editentries tr td{vertical-align:text-top}.ha-defaulttab .ha-edits .ha-editentries .ha-editreas div{display:inline;font-family:Biolinum,sans-serif}.ha-defaulttab .ha-edits .ha-editentries .ha-editfromto{padding-left:.25rem;padding-right:.25rem}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference{border-right-width:2px;font-size:.85rem;line-height:1.25rem;padding-left:.25rem;padding-right:.75rem}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference br{display:none}.ha-defaulttab .ha-edits .ha-editentries .ha-editreas{padding-left:.75rem;width:100%}.ha-defaulttab .ha-edits .ha-editentries .ha-editreas .ha-zh *{font-family:Libertine,serif!important}.ha-minwidth .ha-text{min-width:44rem}@media (min-width:1190px){.ha-minwidth .ha-text{min-width:52rem}}.ha-minwidth .ha-text .ha-alignright{float:right;margin-right:20%}.ha-minwidth .ha-aligncenter{--tw-translate-x:-50%;left:33.333333%;position:absolute;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));white-space:nowrap}.ha-minwidth .ha-marginalbox{margin-left:.25rem!important}.ha-adminuploadfields{-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;flex-wrap:wrap;row-gap:1rem}.ha-adminuploadfields .ha-uploadfield{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-radius:.25rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:block;flex-basis:16rem;flex-grow:1;flex-shrink:0;max-width:20rem}.ha-adminuploadfields .ha-uploadfield:hover{--tw-brightness:brightness(1.1)}.ha-adminuploadfields .ha-uploadfield.active,.ha-adminuploadfields .ha-uploadfield:hover{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.ha-adminuploadfields .ha-uploadfield.active{--tw-text-opacity:1!important;--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);--tw-brightness:brightness(1.1);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(0 0 0/var(--tw-text-opacity))!important}.ha-adminuploadfields .ha-uploadfield .ha-uploadfieldname{padding:.5rem .75rem .25rem}.ha-adminuploadfields .ha-uploadusedfiles{--tw-border-opacity:1;--tw-bg-opacity:0.3;background-color:rgb(226 232 240/var(--tw-bg-opacity));border-color:rgb(203 213 225/var(--tw-border-opacity));border-top-width:1px;font-size:.85rem;line-height:1.25rem;overflow:hidden;padding:.125rem .5rem;text-overflow:ellipsis;white-space:nowrap;width:auto}.ha-adminuploadfields .ha-uploadusedfiles.ha-uploadusedfilesnotfound{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity));border-color:rgb(100 116 139/var(--tw-border-opacity))}.ha-adminuploadfields .ha-uploadpublishforms{-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;flex-grow:1}.ha-adminuploadfields .ha-uploadform{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-radius:.25rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);flex-grow:1;position:relative}.ha-adminuploadfields .ha-uploadform .ha-uploadtext{text-align:center}.ha-adminuploadfields .ha-uploadform .ha-lds-ellipsis{left:50%;margin-left:-20px}.ha-adminuploadfields .ha-uploadform .ha-uploadfilelabel{cursor:pointer;display:inline-block;height:100%;padding:.5rem 1rem .25rem;width:100%}.ha-adminuploadfields .ha-uploadform .ha-uploadfilelabel:hover{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.ha-adminuploadfields .ha-uploadform .ha-uploadmessage{--tw-bg-opacity:0.3;background-color:rgb(51 65 85/var(--tw-bg-opacity));border-radius:.125rem;font-size:.85rem;line-height:1.25rem;padding-left:.25rem;padding-right:.25rem}.ha-adminuploadfields .ha-publishbutton{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);cursor:pointer;display:inline-block;flex-shrink:1;height:100%;padding:.5rem .5rem .25rem;width:100%}.ha-adminuploadfields .ha-publishbutton:hover{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.ha-adminuploadfields .ha-publishbutton .ha-publishtext{text-align:center}.ha-adminuploadfields .ha-publishbutton .ha-publishmessage{--tw-bg-opacity:0.3;background-color:rgb(51 65 85/var(--tw-bg-opacity));border-radius:.125rem;font-size:.85rem;line-height:1.25rem;padding-left:.25rem;padding-right:.25rem}.ha-uploadheader{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));display:flex;flex-direction:row;margin-top:1rem;padding:3rem 4rem 2rem;width:100%}.ha-uploadheader h1{font-size:3rem;line-height:1}.ha-uploadcontainer{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));display:flex;flex-direction:column;row-gap:.5rem;width:100%}.ha-uploadcontainer .ha-publishfilelist{margin-bottom:2rem;padding-left:4rem;padding-right:4rem}.ha-uploadcontainer .ha-publishfilelist .ha-publishfilelisttitle{font-size:1.25rem;line-height:1.75rem;margin-bottom:.5rem}.ha-uploadcontainer .ha-publishfilelist td{padding-right:1.5rem;vertical-align:text-top}.ha-uploadcontainer .ha-publishfilelist .ha-publishfilelabel{--tw-border-opacity:1;border-color:rgb(37 99 235/var(--tw-border-opacity));border-radius:.375rem;border-width:2px;cursor:pointer;float:right;margin-left:1.5rem;margin-top:1rem;padding-left:.75rem;padding-right:.75rem;position:relative}.ha-uploadcontainer .ha-publishfilelist .ha-publishfilelabel:hover{--tw-border-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);border-color:rgb(30 64 175/var(--tw-border-opacity));border-width:2px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-uploadcontainer .ha-publishfilelist .ha-publishfilelabel:active{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-uploadcontainer .ha-availablefiles{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;cursor:pointer;padding:.5rem 4rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ha-uploadcontainer .ha-availablefiles:hover{--tw-border-opacity:1;border-color:rgb(30 41 59/var(--tw-border-opacity))}.ha-uploadcontainer .ha-availablefiles .ha-availablefilestitle{font-size:1.5rem;line-height:2rem}.ha-filesheader{margin-bottom:2rem}.ha-availablefileslist{padding-left:4rem;padding-right:4rem;padding-top:1rem}.ha-uploadcontainer .ha-errorswarnings{-moz-column-gap:.5rem;column-gap:.5rem;display:flex;flex-direction:row}.ha-uploadcontainer .ha-errorswarnings .ha-criticalerrors,.ha-uploadcontainer .ha-errorswarnings .ha-warnings{flex-basis:50%;flex-grow:1;flex-shrink:1;min-height:400px;min-width:40%;overflow-x:hidden;overflow-y:scroll}.ha-uploadcontainer .ha-errorswarnings .ha-criticalerrors{--tw-bg-opacity:1;background-color:rgb(254 202 202/var(--tw-bg-opacity))}.ha-uploadcontainer .ha-errorswarnings .ha-warnings{--tw-bg-opacity:1;background-color:rgb(254 215 170/var(--tw-bg-opacity))}.ha-uploadcontainer .ha-crossfilechecking{--tw-bg-opacity:1;background-color:rgb(165 243 252/var(--tw-bg-opacity));flex-grow:1;flex-shrink:0;height:100%;min-height:400px;width:100%}.ha-uploadcontainer .ha-hamannfilechooser{padding-bottom:4rem;padding-left:4rem;padding-right:4rem}.ha-filelistfieldset .ha-filelistlegend{font-size:1.25rem;line-height:1.75rem;margin-bottom:.5rem}.ha-selectfilesform .ha-filelistfile{align-items:center;-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;padding-left:.25rem;padding-right:.25rem}.ha-selectfilesform .ha-filelistfile:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.ha-selectfilesform .ha-filelistlist{height:24rem;overflow-x:hidden;overflow-y:scroll;padding-right:1rem}.ha-selectfilesform .ha-filelistfile .ha-filelistname{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace,mono}.ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction{font-size:.85rem;line-height:1.25rem}.ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction .ha-filelistproduction{--tw-border-opacity:1;--tw-text-opacity:1;border-color:rgb(13 148 136/var(--tw-border-opacity));border-radius:.375rem;border-width:1px;color:rgb(13 148 136/var(--tw-text-opacity));display:inline-block;margin-right:.5rem;padding-left:.5rem;padding-right:.5rem}.ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction .ha-filelistused{--tw-border-opacity:1;--tw-text-opacity:1;border-color:rgb(79 70 229/var(--tw-border-opacity));border-radius:.375rem;border-width:1px;color:rgb(79 70 229/var(--tw-text-opacity));display:inline-block;padding-left:.5rem;padding-right:.5rem}.ha-selectfilesform .ha-filelistfile .ha-filelistmodified{flex-grow:1;text-align:right}.ha-selectfilesform .ha-filelistoutput{margin-left:1.5rem;margin-top:1rem}.ha-selectfilesform .ha-filelistbutton{--tw-border-opacity:1;border-color:rgb(37 99 235/var(--tw-border-opacity));border-radius:.375rem;border-width:2px;cursor:pointer;float:right;margin-left:1.5rem;margin-top:1rem;padding-left:.75rem;padding-right:.75rem}.ha-selectfilesform .ha-filelistbutton:hover{--tw-border-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);border-color:rgb(30 64 175/var(--tw-border-opacity));border-width:2px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-selectfilesform .ha-filelistbutton:active{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-index{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-index{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.dark .ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(229 231 235/var(--tw-border-opacity));border-right-width:1px}.dark .ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));border-style:none}.dark .ha-index .ha-indexhead .ha-indexnav a.active{font-weight:700}.dark .ha-index .ha-indexhead .ha-indexnav a.active,.dark .ha-index .ha-indexhead .ha-indexnav a.active:hover{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry:hover{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:hover{--tw-bg-opacity:1!important;background-color:rgb(226 232 240/var(--tw-bg-opacity))!important}.dark .ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:hover{--tw-bg-opacity:1!important;background-color:rgb(30 41 59/var(--tw-bg-opacity))!important}.dark .ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a.active{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important;font-weight:700}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.dark .ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(24 24 27/var(--tw-bg-opacity))}.ha-index .ha-indexhead{border-bottom-width:2px;padding-left:2.25rem;padding-right:2.25rem;padding-top:2.25rem}@media (min-width:940px){.ha-index .ha-indexhead{padding-left:4rem;padding-right:4rem;padding-top:3rem}}.ha-index .ha-indexhead h1{display:inline-block;font-family:Libertine,serif;font-size:1.5rem;font-weight:700;line-height:2rem;margin-bottom:1.5rem}@media (min-width:1190px){.ha-index .ha-indexhead h1{font-size:3rem;font-weight:400;line-height:1}}.ha-index .ha-indexhead .ha-indexnav{--tw-numeric-figure:oldstyle-nums;font-family:Biolinum,sans-serif;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.ha-index .ha-indexhead .ha-indexnav a{display:inline-block;margin-right:.75rem}.ha-index .ha-indexhead .ha-indexnav a.active{border-bottom-width:4px}.ha-index .ha-indexbody{clear:both;-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;padding-top:1.5rem}.ha-index .ha-indexbody .ha-letterlist{flex-basis:66.666667%;flex-grow:0;padding-bottom:1rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry:not(:first-child){margin-top:1rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry{border-radius:.125rem;display:block;padding-top:.75rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry,.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry:hover{transition-duration:.1s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterhead{padding-bottom:.75rem;padding-left:1.5rem;padding-right:.75rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));display:block;padding:.25rem 1.5rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-searchresultlocation{display:inline-block;font-size:.85rem;font-variant-numeric:oldstyle-nums;font-weight:600;line-height:1.25rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-searchresultpreview{display:inline-block;padding-left:1rem}.ha-index .ha-indexbody .ha-filterlist{display:none;flex-basis:33.333333%;flex-direction:column;flex-shrink:1;float:right;max-width:32rem;min-width:0;padding-bottom:1rem;row-gap:2.25rem}@media (min-width:940px){.ha-index .ha-indexbody .ha-filterlist{display:flex}}.ha-index .ha-indexbody .ha-filterlist .ha-filtertitle{--tw-border-opacity:1;border-bottom-width:1px;border-color:rgb(156 163 175/var(--tw-border-opacity));font-family:Libertine,serif;font-size:1.5rem;line-height:2rem;line-height:1;margin-bottom:.25rem;padding-bottom:.25rem;padding-left:.25rem;padding-right:1rem}.ha-index .ha-indexbody .ha-filterlist .ha-activefilterinfo{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity));border-radius:.25rem;font-family:Biolinum,sans-serif;font-size:.85rem;line-height:1.25rem;margin-top:.25rem;padding-left:.25rem;padding-right:.25rem}.ha-index .ha-indexbody .ha-filterlist .ha-reversefilter{display:inline-block;text-align:right;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-index .ha-indexbody .ha-filterlist .ha-reversefilter:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form{font-family:Biolinum,sans-serif;padding:.25rem .5rem .25rem .25rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form .ha-gototext{display:inline-block;font-family:Biolinum,sans-serif;margin-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form input{border-width:1px;padding-left:.25rem;padding-right:.25rem;width:3.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;display:inline-block;float:right;padding-left:.5rem;padding-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform{padding:.25rem .5rem .25rem .25rem}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform>span{white-space:nowrap}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform input{border-width:1px;padding-left:.25rem;padding-right:.25rem;width:3.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;float:right;padding-left:.5rem;padding-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform select{padding-left:.25rem;padding-right:.25rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform{-moz-column-gap:.5rem;column-gap:.5rem;display:flex;flex-direction:row;padding:.25rem .5rem .25rem .25rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform input{border-width:1px;flex-grow:1;min-width:0;padding-left:.25rem;padding-right:.25rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;float:right;padding-left:.5rem;padding-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist{margin-right:.5rem;max-height:23rem;overflow-x:hidden;overflow-y:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.25rem}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a{display:block;padding-left:.75rem;padding-right:.75rem;transition-property:none!important}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){display:block}.ha-search{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-search{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-search .ha-searchhead .ha-activefilterinfo{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.dark .ha-search .ha-searchhead .ha-activefilterinfo{--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.dark .ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(229 231 235/var(--tw-border-opacity));border-right-width:1px}.dark .ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));border-style:none}.dark .ha-search .ha-searchhead .ha-searchnav a.active{font-weight:700}.dark .ha-search .ha-searchhead .ha-searchnav a.active,.dark .ha-search .ha-searchhead .ha-searchnav a.active:hover{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry:hover{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:hover{--tw-bg-opacity:1!important;background-color:rgb(226 232 240/var(--tw-bg-opacity))!important}.dark .ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:hover{--tw-bg-opacity:1!important;background-color:rgb(30 41 59/var(--tw-bg-opacity))!important}.dark .ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a.active{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important;font-weight:700}.ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.dark .ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(24 24 27/var(--tw-bg-opacity))}.dark .ha-search .ha-searchbody .ha-commenthead .ha-letlinks{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));color:rgb(248 250 252/var(--tw-text-opacity))}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commenthead .ha-letlinks{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}}.ha-search .ha-searchbody .ha-commenthead .ha-letlinks:before{--tw-bg-opacity:1;background-color:rgb(43 97 158/var(--tw-bg-opacity))}.dark .ha-search .ha-searchbody .ha-commenthead .ha-letlinks:before{--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-commenthead .ha-letlinks.ha-expanded-box{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.dark .ha-search .ha-searchbody .ha-commenthead .ha-letlinks.ha-expanded-box{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-search .ha-btn-collapsed-box{cursor:pointer;display:none;margin-top:.125rem;position:absolute;top:-.15rem}@media (min-width:1190px){.ha-search .ha-btn-collapsed-box{display:block}}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks a{-webkit-text-decoration-line:none;text-decoration-line:none}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity));-webkit-text-decoration-line:underline;text-decoration-line:underline}.dark .ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.dark .ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-search .ha-searchhead{border-bottom-width:2px;padding-left:2.25rem;padding-right:2.25rem;padding-top:2.25rem}@media (min-width:940px){.ha-search .ha-searchhead{padding-left:4rem;padding-right:4rem;padding-top:3rem}}.ha-search .ha-searchhead h1{display:inline-block;font-family:Libertine,serif;font-size:1.5rem;font-weight:700;line-height:2rem;margin-bottom:1.5rem}@media (min-width:1190px){.ha-search .ha-searchhead h1{font-size:3rem;font-weight:400;line-height:1}}.ha-search .ha-searchhead .ha-searchnav{--tw-numeric-figure:oldstyle-nums;font-family:Biolinum,sans-serif;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.ha-search .ha-searchhead .ha-searchnav a{display:inline-block;margin-right:.75rem}.ha-search .ha-searchhead .ha-searchnav a.active{border-bottom-width:4px}.ha-search .ha-searchhead .ha-searchfilter{margin-bottom:1rem}@media (min-width:940px){.ha-search .ha-searchhead .ha-searchfilter{margin-bottom:1.75rem}}.ha-search .ha-searchhead .ha-searchfilterinfo{border-width:1px;font-size:1rem;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;line-height:1.5rem;margin-bottom:1rem;max-width:46rem;padding:.5rem}.ha-search .ha-searchhead .ha-searchfilter form{margin-bottom:.5rem;max-width:34rem}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform{-moz-column-gap:.5rem;column-gap:.5rem;display:flex;flex-direction:row;padding-bottom:.25rem;padding-top:.25rem}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform input{border-width:1px;flex-grow:1;min-width:0;padding-left:.25rem;padding-right:.25rem}.ha-search .ha-searchhead .ha-searchfilter .ha-includecomments{font-size:1rem!important;line-height:1.5rem!important;width:100%}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;float:right;padding-left:.5rem;padding-right:.5rem}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-search .ha-searchhead .ha-activefilterinfo{border-radius:.25rem;font-family:Biolinum,sans-serif;font-size:1rem;line-height:1.5rem;margin-bottom:.25rem;margin-top:.25rem;max-width:34rem;padding-left:.25rem;padding-right:.25rem}.ha-search .ha-searchhead .ha-reversefilter{display:inline-block;text-align:right;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-search .ha-searchhead .ha-reversefilter:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-search .ha-searchhead .ha-searchfilter .ha-alternativesearches a{display:block;font-size:1rem;line-height:1.5rem;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-search .ha-searchhead .ha-searchfilter .ha-alternativesearches a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-search .ha-searchbody{border-bottom-left-radius:.125rem;border-bottom-right-radius:.125rem;padding-bottom:2.25rem;padding-top:1.5rem}@media (min-width:940px){.ha-search .ha-searchbody{padding-bottom:3rem;padding-left:1.5rem;padding-right:24rem}}.ha-search .ha-searchbody .ha-letterlist{flex-basis:66.666667%;flex-grow:0;padding-bottom:1rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry:not(:first-child){margin-top:1rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry{border-radius:.125rem;display:block;padding-top:.75rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry,.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry:hover{transition-duration:.1s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterhead{padding-bottom:.75rem;padding-left:1.5rem;padding-right:.75rem}.dark input,.dark select{--tw-bg-opacity:1!important;border-style:none}.dark button,.dark input,.dark select{background-color:rgb(24 24 27/var(--tw-bg-opacity))!important}.dark button{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;border-color:rgb(39 39 42/var(--tw-border-opacity))!important}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult{--tw-bg-opacity:1;align-items:baseline;background-color:rgb(248 250 252/var(--tw-bg-opacity));-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;padding:.25rem 1.5rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-searchresultlocation{display:inline-block;flex-shrink:0;flex-wrap:nowrap;font-size:.85rem;font-weight:600;line-height:1.25rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal{font-size:.85rem;line-height:1.25rem;margin-bottom:.25rem;margin-top:.25rem;max-width:32rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-searchresultcommentpill{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(30 69 112/var(--tw-bg-opacity));border-radius:.75rem;color:rgb(255 255 255/var(--tw-text-opacity));display:inline-block;font-size:.7rem;line-height:1rem;margin-right:.5rem;padding-left:.375rem;padding-right:.375rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal a{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal,.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal *{display:inline!important;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.ha-search .ha-searchbody .ha-commentlist{font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;padding-left:1rem;padding-right:2.25rem;padding-top:.5rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-commentlist{padding-left:1.5rem;padding-right:4rem;padding-top:1rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment{display:block;margin-bottom:2.25rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-commentlist .ha-comment{margin-bottom:3rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment a{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-search .ha-searchbody .ha-commentlist .ha-comment a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-headcomment{display:block}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-headcomment{position:relative}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-subcomment{display:block;margin-left:2rem;margin-top:.5rem}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-subcomment{position:relative}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead{display:block}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:700}.ha-search .ha-searchbody .ha-forschung .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:400}.ha-search .ha-searchbody .ha-forschung .ha-comment{margin-bottom:1rem;text-indent:-1rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-forschung .ha-comment{margin-bottom:1.5rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks{display:inline-block;font-family:Biolinum,sans-serif;font-size:.7rem;font-variant-caps:all-petite-caps;font-weight:400;line-height:1rem;line-height:1.375;margin-left:.5rem;margin-top:.25rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks{font-size:.85rem;line-height:1.25rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks:before{--tw-content:"";bottom:.1rem;content:var(--tw-content);left:0;margin-top:.25rem;position:absolute;top:.1rem;width:.125rem}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{display:inline}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-headcomment .ha-commenthead .ha-letlinks{left:48rem}.ha-search .ha-searchbody .ha-commentlist .ha-subcomment .ha-commenthead .ha-letlinks{left:46rem}}.ha-search .ha-searchbody .ha-commentlist .ha-commenthead .ha-letlinks{padding-left:.5rem}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-commenthead .ha-letlinks{display:block;position:absolute;text-indent:0;top:0;width:20rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.ha-search .ha-searchbody .ha-commentlist .ha-headcomment .ha-btn-collapsed-box{left:47.6rem}.ha-search .ha-searchbody .ha-commentlist .ha-subcomment .ha-btn-collapsed-box{left:45.6rem}.ha-search .ha-searchbody .ha-commentlist .ha-btn-collapsed-box{cursor:pointer;display:none;position:absolute;top:-.15rem}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-btn-collapsed-box{display:block}}.pointer-events-none{pointer-events:none}.static{position:static}.relative{position:relative}.sticky{position:-webkit-sticky;position:sticky}.-left-5{left:-1.25rem}.-top-1\.5{top:-.375rem}.-top-1{top:-.25rem}.-left-6{left:-1.5rem}.bottom-\[0\.1rem\]{bottom:.1rem}.clear-both{clear:both}.mx-auto{margin-left:auto;margin-right:auto}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mx-0{margin-left:0;margin-right:0}.my-8{margin-bottom:2rem;margin-top:2rem}.mx-8{margin-left:2rem;margin-right:2rem}.my-6{margin-top:1.5rem}.mb-6,.my-6{margin-bottom:1.5rem}.mr-2{margin-right:.5rem}.\!mt-0{margin-top:0!important}.\!mb-0{margin-bottom:0!important}.mb-10{margin-bottom:2.5rem}.mb-4{margin-bottom:1rem}.\!mr-0{margin-right:0!important}.mt-2{margin-top:.5rem}.mr-1{margin-right:.25rem}.mr-4{margin-right:1rem}.mb-1{margin-bottom:.25rem}.ml-1{margin-left:.25rem}.\!mb-1{margin-bottom:.25rem!important}.\!mt-1{margin-top:.25rem!important}.mr-\[20rem\]{margin-right:20rem}.ml-8{margin-left:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.table{display:table}.hidden{display:none}.\!hidden{display:none!important}.h-10{height:2.5rem}.h-full{height:100%}.h-8{height:2rem}.h-4{height:1rem}.h-3{height:.75rem}.w-10{width:2.5rem}.w-full{width:100%}.w-8{width:2rem}.w-4{width:1rem}.w-auto{width:auto}.w-3{width:.75rem}.w-72{width:18rem}.w-60{width:15rem}.w-52{width:13rem}.w-1\/2{width:50%}.shrink-0{flex-shrink:0}.shrink{flex-shrink:1}.grow{flex-grow:1}.grow-0{flex-grow:0}.cursor-default{cursor:default}.resize{resize:both}.list-disc{list-style-type:disc}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.justify-center{justify-content:center}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.gap-y-6{row-gap:1.5rem}.gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.gap-y-4{row-gap:1rem}.self-end{align-self:flex-end}.overflow-hidden{overflow:hidden}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.rounded{border-radius:.25rem}.border{border-width:1px}.border-t-\[5px\]{border-top-width:5px}.border-l-4{border-left-width:4px}.border-r-2{border-right-width:2px}.border-l-2{border-left-width:2px}.border-b-2{border-bottom-width:2px}.border-solid{border-style:solid}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.border-hamannSlate-500{--tw-border-opacity:1;border-color:rgb(43 97 158/var(--tw-border-opacity))}.border-orange-600{--tw-border-opacity:1;border-color:rgb(234 88 12/var(--tw-border-opacity))}.bg-slate-50{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.bg-gray-300{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.bg-slate-100{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.bg-slate-200{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.px-4{padding-left:1rem;padding-right:1rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.px-9{padding-left:2.25rem;padding-right:2.25rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.px-8{padding-left:2rem;padding-right:2rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.pt-4{padding-top:1rem}.pb-1{padding-bottom:.25rem}.pr-3{padding-right:.75rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pr-1\.5{padding-right:.375rem}.pr-1{padding-right:.25rem}.pl-3{padding-left:.75rem}.pl-2{padding-left:.5rem}.\!pr-14{padding-right:3.5rem!important}.text-right{text-align:right}.align-baseline{vertical-align:baseline}.align-bottom{vertical-align:bottom}.font-serif{font-family:Libertine,serif}.font-sans{font-family:Biolinum,sans-serif}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-sm{font-size:.85rem;line-height:1.25rem}.text-base{font-size:1rem;line-height:1.5rem}.font-bold{font-weight:700}.italic{font-style:italic}.leading-snug{line-height:1.375}.\!leading-tight{line-height:1.25!important}.text-hamannSlate-900{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-hamannSlate-500{--tw-text-opacity:1;color:rgb(43 97 158/var(--tw-text-opacity))}.text-orange-600{--tw-text-opacity:1;color:rgb(234 88 12/var(--tw-text-opacity))}.text-slate-500{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.underline{-webkit-text-decoration-line:underline;text-decoration-line:underline}.\!no-underline{-webkit-text-decoration-line:none!important;text-decoration-line:none!important}.no-underline{-webkit-text-decoration-line:none;text-decoration-line:none}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.hyphenate{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.unhyphenate{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.numeric-mediaeval{font-variant-numeric:oldstyle-nums}.numeric-normal{font-variant-numeric:normal}.caps-allpetite{font-variant-caps:all-petite-caps}.caps-petite{font-variant-caps:petite-caps}.caps{text-transform:uppercase}.caps,.caps-normal{font-variant-caps:normal}.break-inside-avoid{-moz-column-break-inside:avoid;break-inside:avoid}@font-face{font-display:swap;font-family:Biolinum;font-style:normal;font-weight:400;src:url(../fonts/LinBiolinum_Rah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Libertine;font-style:normal;font-weight:400;src:url(../fonts/LinLibertine_Rah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Biolinum;font-style:italic;font-weight:400;src:url(../fonts/LinBiolinum_RIah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Biolinum;font-style:normal;font-weight:700;src:url(../fonts/LinBiolinum_RBah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Libertine;font-style:italic;font-weight:400;src:url(../fonts/LinLibertine_RIah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Libertine;font-style:normal;font-weight:700;src:url(../fonts/LinLibertine_RZah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Playfair;font-style:normal;font-weight:400;src:url(../fonts/PlayfairDisplay-VariableFont_wght.ttf) format("truetype")}.ha-menu-arrowsymbol:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;content:"";display:inline-block;margin-left:.2em;vertical-align:.2em}.ha-menusymbol{border-radius:4px}.ha-menusymbol svg{stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;fill:none;height:24px;width:24px}.ha-tooltip .ha-tooltiptext{bottom:155%;left:50%;margin-left:-80px;min-width:160px;opacity:0;transition:opacity .3s;visibility:hidden;white-space:nowrap}.ha-tooltip .ha-tooltiptext:after{border-style:solid;border-width:5px;content:"";left:50%;margin-left:-5px;position:absolute;top:100%}.ha-tooltip:hover .ha-tooltiptext{opacity:1;visibility:visible}.ha-open-btn-collapsed-box:after{content:"\200E+"}.ha-open-btn-collapsed-box{font-weight:700;transform:rotate(0deg);transition:transform 80ms ease-in-out}.ha-open-btn-collapsed-box.ha-close-btn-collapsed-box{transform:rotate(45deg);transform-origin:53% 57%;transition:transform 80ms ease-in-out}.ha-uploadform .ha-uploadmessage{border-radius:6px;left:50%;margin-left:-180px;margin-top:.5rem;opacity:0;padding:5px 0;position:absolute;text-align:center;top:100%;transition:opacity 1s;visibility:visible;width:360px;z-index:1}.ha-uploadform .ha-uploadmessage:after{border:5px solid transparent;border-bottom-color:grey;bottom:100%;content:" ";left:50%;margin-left:-5px;position:absolute}.ha-lds-ellipsis{bottom:20px;display:none;position:absolute}.ha-lds-ellipsis-load{bottom:8px;display:none;position:relative;width:38px}.ha-lds-ellipsis-publish{bottom:16px;display:none;left:-50px;position:absolute}.ha-lds-ellipsis div,.ha-lds-ellipsis-load div,.ha-lds-ellipsis-publish div{-webkit-animation-timing-function:cubic-bezier(0,1,1,0);animation-timing-function:cubic-bezier(0,1,1,0);background:#000;border-radius:50%;height:7px;position:absolute;width:7px}.ha-lds-ellipsis div:first-child,.ha-lds-ellipsis-load div:first-child,.ha-lds-ellipsis-publish div:first-child{-webkit-animation:ha-lds-ellipsis1 .6s infinite;animation:ha-lds-ellipsis1 .6s infinite;left:6px}.ha-lds-ellipsis div:nth-child(2),.ha-lds-ellipsis-load div:nth-child(2),.ha-lds-ellipsis-publish div:nth-child(2){-webkit-animation:ha-lds-ellipsis2 .6s infinite;animation:ha-lds-ellipsis2 .6s infinite;left:4px}.ha-lds-ellipsis div:nth-child(3),.ha-lds-ellipsis-load div:nth-child(3),.ha-lds-ellipsis-publish div:nth-child(3){-webkit-animation:ha-lds-ellipsis2 .6s infinite;animation:ha-lds-ellipsis2 .6s infinite;left:16px}.ha-lds-ellipsis div:nth-child(4),.ha-lds-ellipsis-load div:nth-child(4),.ha-lds-ellipsis-publish div:nth-child(4){-webkit-animation:ha-lds-ellipsis3 .6s infinite;animation:ha-lds-ellipsis3 .6s infinite;left:30px}@-webkit-keyframes ha-lds-ellipsis1{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes ha-lds-ellipsis1{0%{transform:scale(0)}to{transform:scale(1)}}@-webkit-keyframes ha-lds-ellipsis3{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes ha-lds-ellipsis3{0%{transform:scale(1)}to{transform:scale(0)}}@-webkit-keyframes ha-lds-ellipsis2{0%{transform:translate(0)}to{transform:translate(16px)}}@keyframes ha-lds-ellipsis2{0%{transform:translate(0)}to{transform:translate(16px)}}.ha-cross:after,.ha-cross:before{content:""}.ha-cross:before{transform:skewY(-27deg)}.ha-insertion:before{content:"\2E02"}.ha-insertion:after{content:"\2E03"}.ha-nr:after,.ha-nr:before{content:" \200E\25E6"}.ha-added:after,.ha-added:before,.ha-note:after,.ha-note:before{content:""}.ha-bzg:after{content:"]"}*{scroll-behavior:smooth;-webkit-text-decoration-skip-ink:all;text-decoration-skip-ink:all}html{font-size:15.5px;overflow-y:scroll}body{background-image:url(../img/subtlenet2.png);background-repeat:repeat}.ha-diagdel{display:inline-block!important;position:relative;text-decoration:none!important;-webkit-text-decoration-line:none!important;text-decoration-line:none!important}.ha-diagdel:after,.ha-diagdel:before{bottom:1.4ex;content:"";height:0%;position:absolute;right:0;width:100%}.ha-diagdel:before{border-style:solid;border-width:1px;transform:skewY(-36deg)}.ha-del .ha-del,.ha-del .ha-del :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){-moz-text-decoration-style:double;-webkit-text-decoration-style:double!important;text-decoration-style:double;text-decoration-thickness:1px}.ha-del .ha-del .ha-ul,.ha-del .ha-ul .ha-del,.ha-ul .ha-del .ha-del{text-decoration:line-through underline;-moz-text-decoration-style:double;-webkit-text-decoration-style:double!important;text-decoration-style:double;text-decoration-thickness:1px}.ha-del .ha-ul,.ha-ul .ha-del{text-decoration:line-through underline;text-decoration-skip-ink:auto;-webkit-text-decoration-skip-ink:auto;text-decoration-thickness:1px}.ha-table{font-variant-numeric:tabular-nums!important;overflow:hidden;white-space:nowrap}.ha-hatab-0-2{display:inline;min-width:50%;position:static}.ha-hatab-1-2{display:inline-block;left:50%;min-width:50%;position:absolute}.ha-hatab-0-3{display:inline;min-width:33.333%;position:static}.ha-hatab-1-3{left:33%}.ha-hatab-1-3,.ha-hatab-2-3{display:inline-block;min-width:33.333%;position:absolute}.ha-hatab-2-3{left:66%}.ha-hatab-0-4{display:inline;min-width:25%;position:static}.ha-hatab-1-4{left:25%}.ha-hatab-1-4,.ha-hatab-2-4{display:inline-block;min-width:25%;position:absolute}.ha-hatab-2-4{left:50%}.ha-hatab-3-4{display:inline-block;left:75%;min-width:25%;position:absolute}.ha-hatab-0-5{display:inline;min-width:20%;position:static}.ha-hatab-1-5{left:20%}.ha-hatab-1-5,.ha-hatab-2-5{display:inline-block;min-width:20%;position:absolute}.ha-hatab-2-5{left:40%}.ha-hatab-3-5{left:60%}.ha-hatab-3-5,.ha-hatab-4-5{display:inline-block;min-width:20%;position:absolute}.ha-hatab-4-5{left:80%}.ha-hatab-0-6{display:inline;min-width:16.667%;position:static}.ha-hatab-1-6{left:16.667%}.ha-hatab-1-6,.ha-hatab-2-6{display:inline-block;min-width:16.667%;position:absolute}.ha-hatab-2-6{left:33.333%}.ha-hatab-3-6{left:50%}.ha-hatab-3-6,.ha-hatab-4-6{display:inline-block;min-width:16.667%;position:absolute}.ha-hatab-4-6{left:66.667%}.ha-hatab-5-6{display:inline-block;left:83.333%;min-width:16.667%;position:absolute}.ha-hatab-0-7{display:inline;min-width:14.286%;position:static}.ha-hatab-1-7{left:14.286%}.ha-hatab-1-7,.ha-hatab-2-7{display:inline-block;min-width:14.286%;position:absolute}.ha-hatab-2-7{left:28.571%}.ha-hatab-3-7{left:42.857%}.ha-hatab-3-7,.ha-hatab-4-7{display:inline-block;min-width:14.286%;position:absolute}.ha-hatab-4-7{left:57.143%}.ha-hatab-5-7{left:71.429%}.ha-hatab-5-7,.ha-hatab-6-7{display:inline-block;min-width:14.286%;position:absolute}.ha-hatab-6-7{left:85.714%}.ha-hatab-0-8{display:inline;min-width:12.5%;position:static}.ha-hatab-1-8{left:12.5%}.ha-hatab-1-8,.ha-hatab-2-8{display:inline-block;min-width:12.5%;position:absolute}.ha-hatab-2-8{left:25%}.ha-hatab-3-8{left:37.5%}.ha-hatab-3-8,.ha-hatab-4-8{display:inline-block;min-width:12.5%;position:absolute}.ha-hatab-4-8{left:50%}.ha-hatab-5-8{left:62.5%}.ha-hatab-5-8,.ha-hatab-6-8{display:inline-block;min-width:12.5%;position:absolute}.ha-hatab-6-8{left:75%}.ha-hatab-7-8{display:inline-block;left:87.5%;min-width:12.5%;position:absolute}.ha-hatab-0-9{display:inline;min-width:11.111%;position:static}.ha-hatab-1-9{left:11.111%}.ha-hatab-1-9,.ha-hatab-2-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-2-9{left:22.222%}.ha-hatab-3-9{left:33.333%}.ha-hatab-3-9,.ha-hatab-4-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-4-9{left:44.444%}.ha-hatab-5-9{left:55.555%}.ha-hatab-5-9,.ha-hatab-6-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-6-9{left:66.666%}.ha-hatab-7-9{left:77.777%}.ha-hatab-7-9,.ha-hatab-8-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-8-9{left:88.888%}.ha-hatab-0-10,.ha-hatab-1-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-1-10{left:10%}.ha-hatab-2-10{left:20%}.ha-hatab-2-10,.ha-hatab-3-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-3-10{left:30%}.ha-hatab-4-10{left:40%}.ha-hatab-4-10,.ha-hatab-5-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-5-10{left:50%}.ha-hatab-6-10{left:60%}.ha-hatab-6-10,.ha-hatab-7-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-7-10{left:70%}.ha-hatab-8-10{left:80%}.ha-hatab-8-10,.ha-hatab-9-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-9-10{left:90%}.ha-hatab-0-11,.ha-hatab-1-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-1-11{left:9.091%}.ha-hatab-2-11{left:18.182%}.ha-hatab-2-11,.ha-hatab-3-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-3-11{left:27.273%}.ha-hatab-4-11{left:36.364%}.ha-hatab-4-11,.ha-hatab-5-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-5-11{left:45.455%}.ha-hatab-6-11{left:54.545%}.ha-hatab-6-11,.ha-hatab-7-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-7-11{left:63.636%}.ha-hatab-8-11{left:72.727%}.ha-hatab-8-11,.ha-hatab-9-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-9-11{left:81.818%}.ha-hatab-10-11{display:inline-block;left:90.909%;min-width:9.091%;position:absolute}.ha-hatab-0-12,.ha-hatab-1-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-1-12{left:8.333%}.ha-hatab-2-12{left:16.666%}.ha-hatab-2-12,.ha-hatab-3-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-3-12{left:25%}.ha-hatab-4-12{left:33.333%}.ha-hatab-4-12,.ha-hatab-5-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-5-12{left:41.666%}.ha-hatab-6-12{left:50%}.ha-hatab-6-12,.ha-hatab-7-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-7-12{left:58.333%}.ha-hatab-8-12{left:66.666%}.ha-hatab-8-12,.ha-hatab-9-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-9-12{left:75%}.ha-hatab-10-12{left:83.333%}.ha-hatab-10-12,.ha-hatab-11-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-11-12{left:91.666%}.ha-static table{empty-cells:show}.ha-lettertext .ha-marginalbox .ha-marginal:after,.ha-lettertext .ha-marginalbox .ha-marginal:last-of-type:after,.ha-lettertext .ha-marginalbox:before{content:""}.ha-lettertext .ha-marginalbox.ha-collapsed-box .ha-marginallist .ha-marginal,.ha-tradzhtext .ha-marginalbox.ha-collapsed-box .ha-marginallist .ha-marginal{-webkit-box-orient:vertical;display:-webkit-inline-box}.ha-additions .ha-edits .ha-editentries tr td:nth-of-type(2):after{content:""}@media print{.ha-footer,header{display:none}.ha-letterheadernav{display:none!important}.ha-letterheader{border-style:none!important}.ha-scrollbutton{display:none!important}html{font-size:1rem;line-height:1.5rem}}.hover\:bg-slate-200:hover{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.hover\:text-black:hover{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.hover\:underline:hover{-webkit-text-decoration-line:underline;text-decoration-line:underline}.dark .dark\:border-none{border-style:none}.dark .dark\:border-gray-900{--tw-border-opacity:1;border-color:rgb(17 24 39/var(--tw-border-opacity))}.dark .dark\:bg-slate-900{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.dark .dark\:bg-slate-800{--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}.dark .dark\:pt-2{padding-top:.5rem}.dark .dark\:pb-2{padding-bottom:.5rem}.dark .dark\:text-slate-50{--tw-text-opacity:1;color:rgb(248 250 252/var(--tw-text-opacity))}.dark .dark\:shadow-xl{--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}@media (min-width:700px){.sm\:inline{display:inline}.sm\:hidden{display:none}}@media (min-width:940px){.md\:mb-0{margin-bottom:0}.md\:mt-4{margin-top:1rem}.md\:\!block{display:block!important}.md\:block{display:block}.md\:inline-block{display:inline-block}.md\:inline{display:inline}.md\:flex{display:flex}.md\:hidden{display:none}.md\:\!hidden{display:none!important}.md\:h-16{height:4rem}.md\:min-h-\[4\.5rem\]{min-height:4.5rem}.md\:w-16{width:4rem}.md\:basis-1\/2{flex-basis:50%}.md\:flex-row{flex-direction:row}.md\:items-stretch{align-items:stretch}.md\:gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.md\:px-12{padding-left:3rem;padding-right:3rem}.md\:py-6{padding-bottom:1.5rem;padding-top:1.5rem}.md\:px-9{padding-left:2.25rem;padding-right:2.25rem}.md\:pt-8{padding-top:2rem}.md\:text-3xl{font-size:1.875rem;line-height:2.25rem}.md\:text-lg{font-size:1.15rem;line-height:1.75rem}}@media (min-width:1190px){.desktop\:absolute{position:absolute}.desktop\:right-0{right:0}.desktop\:right-10{right:2.5rem}.desktop\:my-0{margin-bottom:0;margin-top:0}.desktop\:mb-10{margin-bottom:2.5rem}.desktop\:mb-0{margin-bottom:0}.desktop\:mb-8{margin-bottom:2rem}.desktop\:mr-16{margin-right:4rem}.desktop\:block{display:block}.desktop\:flex{display:flex}.desktop\:hidden{display:none}.desktop\:h-16{height:4rem}.desktop\:w-16{width:4rem}.desktop\:max-w-screen-desktop{max-width:1190px}.desktop\:basis-1\/2{flex-basis:50%}.desktop\:flex-row{flex-direction:row}.desktop\:flex-col{flex-direction:column}.desktop\:items-stretch{align-items:stretch}.desktop\:gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.desktop\:whitespace-nowrap{white-space:nowrap}.desktop\:border-b{border-bottom-width:1px}.desktop\:border-slate-300{--tw-border-opacity:1;border-color:rgb(203 213 225/var(--tw-border-opacity))}.desktop\:bg-slate-200{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.desktop\:px-8{padding-left:2rem;padding-right:2rem}.desktop\:pr-72{padding-right:18rem}.desktop\:pr-8{padding-right:2rem}.desktop\:text-2xl{font-size:1.5rem;line-height:2rem}.desktop\:shadow-2xl{--tw-shadow:0 25px 50px -12px rgba(0,0,0,.25);--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}}@media (min-width:1440px){.xl\:h-12{height:3rem}.xl\:w-12{width:3rem}.xl\:text-3xl{font-size:1.875rem;line-height:2.25rem}} \ No newline at end of file diff --git a/HaWeb/wwwroot/pdf/HKB_1.pdf b/HaWeb/wwwroot/pdf/HKB_1.pdf new file mode 100644 index 0000000..250f541 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_1.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_10.pdf b/HaWeb/wwwroot/pdf/HKB_10.pdf new file mode 100644 index 0000000..322cc7e Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_10.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_100.pdf b/HaWeb/wwwroot/pdf/HKB_100.pdf new file mode 100644 index 0000000..0416560 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_100.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_101.pdf b/HaWeb/wwwroot/pdf/HKB_101.pdf new file mode 100644 index 0000000..2393cea Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_101.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_102.pdf b/HaWeb/wwwroot/pdf/HKB_102.pdf new file mode 100644 index 0000000..78ced5d Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_102.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_103.pdf b/HaWeb/wwwroot/pdf/HKB_103.pdf new file mode 100644 index 0000000..d882244 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_103.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_104.pdf b/HaWeb/wwwroot/pdf/HKB_104.pdf new file mode 100644 index 0000000..9b29506 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_104.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_105.pdf b/HaWeb/wwwroot/pdf/HKB_105.pdf new file mode 100644 index 0000000..1c5518d Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_105.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_106.pdf b/HaWeb/wwwroot/pdf/HKB_106.pdf new file mode 100644 index 0000000..15b9a2c Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_106.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_107.pdf b/HaWeb/wwwroot/pdf/HKB_107.pdf new file mode 100644 index 0000000..977f431 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_107.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_108.pdf b/HaWeb/wwwroot/pdf/HKB_108.pdf new file mode 100644 index 0000000..3fff490 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_108.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_109.pdf b/HaWeb/wwwroot/pdf/HKB_109.pdf new file mode 100644 index 0000000..6c3d061 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_109.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_11.pdf b/HaWeb/wwwroot/pdf/HKB_11.pdf new file mode 100644 index 0000000..c69848f Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_11.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_110.pdf b/HaWeb/wwwroot/pdf/HKB_110.pdf new file mode 100644 index 0000000..47b18bd Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_110.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_111.pdf b/HaWeb/wwwroot/pdf/HKB_111.pdf new file mode 100644 index 0000000..d754158 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_111.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_112.pdf b/HaWeb/wwwroot/pdf/HKB_112.pdf new file mode 100644 index 0000000..83887bc Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_112.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_113.pdf b/HaWeb/wwwroot/pdf/HKB_113.pdf new file mode 100644 index 0000000..6a9afad Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_113.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_114.pdf b/HaWeb/wwwroot/pdf/HKB_114.pdf new file mode 100644 index 0000000..2c03afe Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_114.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_115.pdf b/HaWeb/wwwroot/pdf/HKB_115.pdf new file mode 100644 index 0000000..db24cb9 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_115.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_116.pdf b/HaWeb/wwwroot/pdf/HKB_116.pdf new file mode 100644 index 0000000..9299e59 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_116.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_117.pdf b/HaWeb/wwwroot/pdf/HKB_117.pdf new file mode 100644 index 0000000..3f0608f Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_117.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_118.pdf b/HaWeb/wwwroot/pdf/HKB_118.pdf new file mode 100644 index 0000000..8e09861 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_118.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_119.pdf b/HaWeb/wwwroot/pdf/HKB_119.pdf new file mode 100644 index 0000000..591b3bd Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_119.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_12.pdf b/HaWeb/wwwroot/pdf/HKB_12.pdf new file mode 100644 index 0000000..f202152 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_12.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_120.pdf b/HaWeb/wwwroot/pdf/HKB_120.pdf new file mode 100644 index 0000000..332db5c Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_120.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_121.pdf b/HaWeb/wwwroot/pdf/HKB_121.pdf new file mode 100644 index 0000000..c834a7d Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_121.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_122.pdf b/HaWeb/wwwroot/pdf/HKB_122.pdf new file mode 100644 index 0000000..ace812e Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_122.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_123.pdf b/HaWeb/wwwroot/pdf/HKB_123.pdf new file mode 100644 index 0000000..a79bedf Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_123.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_124.pdf b/HaWeb/wwwroot/pdf/HKB_124.pdf new file mode 100644 index 0000000..49e3375 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_124.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_125.pdf b/HaWeb/wwwroot/pdf/HKB_125.pdf new file mode 100644 index 0000000..5c57065 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_125.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_126.pdf b/HaWeb/wwwroot/pdf/HKB_126.pdf new file mode 100644 index 0000000..f1458b8 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_126.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_127.pdf b/HaWeb/wwwroot/pdf/HKB_127.pdf new file mode 100644 index 0000000..132842d Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_127.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_128.pdf b/HaWeb/wwwroot/pdf/HKB_128.pdf new file mode 100644 index 0000000..2402983 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_128.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_129.pdf b/HaWeb/wwwroot/pdf/HKB_129.pdf new file mode 100644 index 0000000..0fcf793 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_129.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_13.pdf b/HaWeb/wwwroot/pdf/HKB_13.pdf new file mode 100644 index 0000000..ec5a634 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_13.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_130.pdf b/HaWeb/wwwroot/pdf/HKB_130.pdf new file mode 100644 index 0000000..9276677 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_130.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_131.pdf b/HaWeb/wwwroot/pdf/HKB_131.pdf new file mode 100644 index 0000000..5dde420 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_131.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_132.pdf b/HaWeb/wwwroot/pdf/HKB_132.pdf new file mode 100644 index 0000000..f0ee7b1 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_132.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_133.pdf b/HaWeb/wwwroot/pdf/HKB_133.pdf new file mode 100644 index 0000000..b34e323 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_133.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_134.pdf b/HaWeb/wwwroot/pdf/HKB_134.pdf new file mode 100644 index 0000000..bc78271 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_134.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_135.pdf b/HaWeb/wwwroot/pdf/HKB_135.pdf new file mode 100644 index 0000000..24339b9 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_135.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_136.pdf b/HaWeb/wwwroot/pdf/HKB_136.pdf new file mode 100644 index 0000000..d666dfa Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_136.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_137.pdf b/HaWeb/wwwroot/pdf/HKB_137.pdf new file mode 100644 index 0000000..17d43c6 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_137.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_138.pdf b/HaWeb/wwwroot/pdf/HKB_138.pdf new file mode 100644 index 0000000..76f2326 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_138.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_139.pdf b/HaWeb/wwwroot/pdf/HKB_139.pdf new file mode 100644 index 0000000..7bc20fd Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_139.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_14.pdf b/HaWeb/wwwroot/pdf/HKB_14.pdf new file mode 100644 index 0000000..1508da6 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_14.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_140.pdf b/HaWeb/wwwroot/pdf/HKB_140.pdf new file mode 100644 index 0000000..4572318 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_140.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_141.pdf b/HaWeb/wwwroot/pdf/HKB_141.pdf new file mode 100644 index 0000000..e9d0105 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_141.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_142.pdf b/HaWeb/wwwroot/pdf/HKB_142.pdf new file mode 100644 index 0000000..72b3603 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_142.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_143.pdf b/HaWeb/wwwroot/pdf/HKB_143.pdf new file mode 100644 index 0000000..7c52af9 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_143.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_144.pdf b/HaWeb/wwwroot/pdf/HKB_144.pdf new file mode 100644 index 0000000..c942c06 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_144.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_145.pdf b/HaWeb/wwwroot/pdf/HKB_145.pdf new file mode 100644 index 0000000..058c7aa Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_145.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_146.pdf b/HaWeb/wwwroot/pdf/HKB_146.pdf new file mode 100644 index 0000000..bde27f2 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_146.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_147.pdf b/HaWeb/wwwroot/pdf/HKB_147.pdf new file mode 100644 index 0000000..683b0bd Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_147.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_148.pdf b/HaWeb/wwwroot/pdf/HKB_148.pdf new file mode 100644 index 0000000..7181b6f Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_148.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_149.pdf b/HaWeb/wwwroot/pdf/HKB_149.pdf new file mode 100644 index 0000000..51291b7 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_149.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_15.pdf b/HaWeb/wwwroot/pdf/HKB_15.pdf new file mode 100644 index 0000000..c71cdeb Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_15.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_150.pdf b/HaWeb/wwwroot/pdf/HKB_150.pdf new file mode 100644 index 0000000..3f71c32 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_150.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_151.pdf b/HaWeb/wwwroot/pdf/HKB_151.pdf new file mode 100644 index 0000000..05e87a8 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_151.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_152.pdf b/HaWeb/wwwroot/pdf/HKB_152.pdf new file mode 100644 index 0000000..bab03b0 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_152.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_153.pdf b/HaWeb/wwwroot/pdf/HKB_153.pdf new file mode 100644 index 0000000..87cce03 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_153.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_154.pdf b/HaWeb/wwwroot/pdf/HKB_154.pdf new file mode 100644 index 0000000..a10961f Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_154.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_155.pdf b/HaWeb/wwwroot/pdf/HKB_155.pdf new file mode 100644 index 0000000..519c548 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_155.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_156.pdf b/HaWeb/wwwroot/pdf/HKB_156.pdf new file mode 100644 index 0000000..102ff1a Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_156.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_157.pdf b/HaWeb/wwwroot/pdf/HKB_157.pdf new file mode 100644 index 0000000..9a1b808 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_157.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_158.pdf b/HaWeb/wwwroot/pdf/HKB_158.pdf new file mode 100644 index 0000000..5f767c2 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_158.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_159.pdf b/HaWeb/wwwroot/pdf/HKB_159.pdf new file mode 100644 index 0000000..29a49f0 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_159.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_16.pdf b/HaWeb/wwwroot/pdf/HKB_16.pdf new file mode 100644 index 0000000..0b4ae3d Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_16.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_160.pdf b/HaWeb/wwwroot/pdf/HKB_160.pdf new file mode 100644 index 0000000..44142f5 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_160.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_161.pdf b/HaWeb/wwwroot/pdf/HKB_161.pdf new file mode 100644 index 0000000..3b9ec74 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_161.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_162.pdf b/HaWeb/wwwroot/pdf/HKB_162.pdf new file mode 100644 index 0000000..521b98d Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_162.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_163.pdf b/HaWeb/wwwroot/pdf/HKB_163.pdf new file mode 100644 index 0000000..524c95a Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_163.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_164.pdf b/HaWeb/wwwroot/pdf/HKB_164.pdf new file mode 100644 index 0000000..6ca62e9 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_164.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_165.pdf b/HaWeb/wwwroot/pdf/HKB_165.pdf new file mode 100644 index 0000000..916ebf1 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_165.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_166.pdf b/HaWeb/wwwroot/pdf/HKB_166.pdf new file mode 100644 index 0000000..c54a2db Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_166.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_167.pdf b/HaWeb/wwwroot/pdf/HKB_167.pdf new file mode 100644 index 0000000..f362d1b Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_167.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_168.pdf b/HaWeb/wwwroot/pdf/HKB_168.pdf new file mode 100644 index 0000000..8ef5202 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_168.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_169.pdf b/HaWeb/wwwroot/pdf/HKB_169.pdf new file mode 100644 index 0000000..1739270 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_169.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_17.pdf b/HaWeb/wwwroot/pdf/HKB_17.pdf new file mode 100644 index 0000000..651c839 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_17.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_170.pdf b/HaWeb/wwwroot/pdf/HKB_170.pdf new file mode 100644 index 0000000..9bdac8e Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_170.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_171.pdf b/HaWeb/wwwroot/pdf/HKB_171.pdf new file mode 100644 index 0000000..b320fff Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_171.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_172.pdf b/HaWeb/wwwroot/pdf/HKB_172.pdf new file mode 100644 index 0000000..1cd281f Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_172.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_173.pdf b/HaWeb/wwwroot/pdf/HKB_173.pdf new file mode 100644 index 0000000..84271f2 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_173.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_174.pdf b/HaWeb/wwwroot/pdf/HKB_174.pdf new file mode 100644 index 0000000..7f1b5a6 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_174.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_175.pdf b/HaWeb/wwwroot/pdf/HKB_175.pdf new file mode 100644 index 0000000..8ce67b0 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_175.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_1751.pdf b/HaWeb/wwwroot/pdf/HKB_1751.pdf new file mode 100644 index 0000000..e6216d6 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_1751.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_1752.pdf b/HaWeb/wwwroot/pdf/HKB_1752.pdf new file mode 100644 index 0000000..3a823a0 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_1752.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_1753.pdf b/HaWeb/wwwroot/pdf/HKB_1753.pdf new file mode 100644 index 0000000..3dd6ee8 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_1753.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_1754.pdf b/HaWeb/wwwroot/pdf/HKB_1754.pdf new file mode 100644 index 0000000..f3a346d Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_1754.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_1755.pdf b/HaWeb/wwwroot/pdf/HKB_1755.pdf new file mode 100644 index 0000000..6e72495 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_1755.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_1756.pdf b/HaWeb/wwwroot/pdf/HKB_1756.pdf new file mode 100644 index 0000000..9c2d7d6 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_1756.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_1758.pdf b/HaWeb/wwwroot/pdf/HKB_1758.pdf new file mode 100644 index 0000000..615717d Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_1758.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_1759.pdf b/HaWeb/wwwroot/pdf/HKB_1759.pdf new file mode 100644 index 0000000..362ef8c Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_1759.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_176.pdf b/HaWeb/wwwroot/pdf/HKB_176.pdf new file mode 100644 index 0000000..5874d4b Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_176.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_1760.pdf b/HaWeb/wwwroot/pdf/HKB_1760.pdf new file mode 100644 index 0000000..9edfd96 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_1760.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_1761.pdf b/HaWeb/wwwroot/pdf/HKB_1761.pdf new file mode 100644 index 0000000..decf3d4 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_1761.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_1762.pdf b/HaWeb/wwwroot/pdf/HKB_1762.pdf new file mode 100644 index 0000000..28551e1 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_1762.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_177.pdf b/HaWeb/wwwroot/pdf/HKB_177.pdf new file mode 100644 index 0000000..a184145 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_177.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_178.pdf b/HaWeb/wwwroot/pdf/HKB_178.pdf new file mode 100644 index 0000000..370bdc5 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_178.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_179.pdf b/HaWeb/wwwroot/pdf/HKB_179.pdf new file mode 100644 index 0000000..a0a6814 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_179.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_18.pdf b/HaWeb/wwwroot/pdf/HKB_18.pdf new file mode 100644 index 0000000..7cad12b Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_18.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_180.pdf b/HaWeb/wwwroot/pdf/HKB_180.pdf new file mode 100644 index 0000000..9981250 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_180.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_181.pdf b/HaWeb/wwwroot/pdf/HKB_181.pdf new file mode 100644 index 0000000..3d47cc9 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_181.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_182.pdf b/HaWeb/wwwroot/pdf/HKB_182.pdf new file mode 100644 index 0000000..b9d4124 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_182.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_183.pdf b/HaWeb/wwwroot/pdf/HKB_183.pdf new file mode 100644 index 0000000..6b16218 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_183.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_184.pdf b/HaWeb/wwwroot/pdf/HKB_184.pdf new file mode 100644 index 0000000..520a4cd Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_184.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_185.pdf b/HaWeb/wwwroot/pdf/HKB_185.pdf new file mode 100644 index 0000000..660fa3a Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_185.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_186.pdf b/HaWeb/wwwroot/pdf/HKB_186.pdf new file mode 100644 index 0000000..8f56ae2 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_186.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_187.pdf b/HaWeb/wwwroot/pdf/HKB_187.pdf new file mode 100644 index 0000000..87cc462 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_187.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_188.pdf b/HaWeb/wwwroot/pdf/HKB_188.pdf new file mode 100644 index 0000000..feaaf2e Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_188.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_189.pdf b/HaWeb/wwwroot/pdf/HKB_189.pdf new file mode 100644 index 0000000..dff4924 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_189.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_19.pdf b/HaWeb/wwwroot/pdf/HKB_19.pdf new file mode 100644 index 0000000..2d2ef90 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_19.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_190.pdf b/HaWeb/wwwroot/pdf/HKB_190.pdf new file mode 100644 index 0000000..937164b Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_190.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_190a.pdf b/HaWeb/wwwroot/pdf/HKB_190a.pdf new file mode 100644 index 0000000..2e4a3de Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_190a.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_191.pdf b/HaWeb/wwwroot/pdf/HKB_191.pdf new file mode 100644 index 0000000..22624b0 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_191.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_192.pdf b/HaWeb/wwwroot/pdf/HKB_192.pdf new file mode 100644 index 0000000..344b351 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_192.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_193.pdf b/HaWeb/wwwroot/pdf/HKB_193.pdf new file mode 100644 index 0000000..b029ec2 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_193.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_194.pdf b/HaWeb/wwwroot/pdf/HKB_194.pdf new file mode 100644 index 0000000..90c6407 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_194.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_195.pdf b/HaWeb/wwwroot/pdf/HKB_195.pdf new file mode 100644 index 0000000..151871f Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_195.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_196.pdf b/HaWeb/wwwroot/pdf/HKB_196.pdf new file mode 100644 index 0000000..d361244 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_196.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_197.pdf b/HaWeb/wwwroot/pdf/HKB_197.pdf new file mode 100644 index 0000000..825e6e5 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_197.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_198.pdf b/HaWeb/wwwroot/pdf/HKB_198.pdf new file mode 100644 index 0000000..da2ad08 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_198.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_199.pdf b/HaWeb/wwwroot/pdf/HKB_199.pdf new file mode 100644 index 0000000..c479cb2 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_199.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_2.pdf b/HaWeb/wwwroot/pdf/HKB_2.pdf new file mode 100644 index 0000000..759009c Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_2.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_20.pdf b/HaWeb/wwwroot/pdf/HKB_20.pdf new file mode 100644 index 0000000..dd52fb6 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_20.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_200.pdf b/HaWeb/wwwroot/pdf/HKB_200.pdf new file mode 100644 index 0000000..bb75ad2 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_200.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_201.pdf b/HaWeb/wwwroot/pdf/HKB_201.pdf new file mode 100644 index 0000000..def9c2e Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_201.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_202.pdf b/HaWeb/wwwroot/pdf/HKB_202.pdf new file mode 100644 index 0000000..87e2d2b Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_202.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_203.pdf b/HaWeb/wwwroot/pdf/HKB_203.pdf new file mode 100644 index 0000000..ced3900 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_203.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_204.pdf b/HaWeb/wwwroot/pdf/HKB_204.pdf new file mode 100644 index 0000000..a144f0a Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_204.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_205.pdf b/HaWeb/wwwroot/pdf/HKB_205.pdf new file mode 100644 index 0000000..54635ce Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_205.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_206.pdf b/HaWeb/wwwroot/pdf/HKB_206.pdf new file mode 100644 index 0000000..71b3dbe Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_206.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_207.pdf b/HaWeb/wwwroot/pdf/HKB_207.pdf new file mode 100644 index 0000000..e99e3dd Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_207.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_208.pdf b/HaWeb/wwwroot/pdf/HKB_208.pdf new file mode 100644 index 0000000..3de13cb Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_208.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_209.pdf b/HaWeb/wwwroot/pdf/HKB_209.pdf new file mode 100644 index 0000000..84e7ec5 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_209.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_21.pdf b/HaWeb/wwwroot/pdf/HKB_21.pdf new file mode 100644 index 0000000..029abcc Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_21.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_210.pdf b/HaWeb/wwwroot/pdf/HKB_210.pdf new file mode 100644 index 0000000..09b9d7a Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_210.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_211.pdf b/HaWeb/wwwroot/pdf/HKB_211.pdf new file mode 100644 index 0000000..f7b95a6 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_211.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_212.pdf b/HaWeb/wwwroot/pdf/HKB_212.pdf new file mode 100644 index 0000000..09870ba Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_212.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_213.pdf b/HaWeb/wwwroot/pdf/HKB_213.pdf new file mode 100644 index 0000000..4ff256a Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_213.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_214.pdf b/HaWeb/wwwroot/pdf/HKB_214.pdf new file mode 100644 index 0000000..4fbaa50 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_214.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_215.pdf b/HaWeb/wwwroot/pdf/HKB_215.pdf new file mode 100644 index 0000000..61ae619 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_215.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_216.pdf b/HaWeb/wwwroot/pdf/HKB_216.pdf new file mode 100644 index 0000000..dfc0903 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_216.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_217.pdf b/HaWeb/wwwroot/pdf/HKB_217.pdf new file mode 100644 index 0000000..2b0e3f5 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_217.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_218.pdf b/HaWeb/wwwroot/pdf/HKB_218.pdf new file mode 100644 index 0000000..28fcd26 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_218.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_219.pdf b/HaWeb/wwwroot/pdf/HKB_219.pdf new file mode 100644 index 0000000..ce3b638 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_219.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_22.pdf b/HaWeb/wwwroot/pdf/HKB_22.pdf new file mode 100644 index 0000000..74ef9ad Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_22.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_220.pdf b/HaWeb/wwwroot/pdf/HKB_220.pdf new file mode 100644 index 0000000..17f314e Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_220.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_221.pdf b/HaWeb/wwwroot/pdf/HKB_221.pdf new file mode 100644 index 0000000..99008ee Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_221.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_222.pdf b/HaWeb/wwwroot/pdf/HKB_222.pdf new file mode 100644 index 0000000..5399ae9 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_222.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_223.pdf b/HaWeb/wwwroot/pdf/HKB_223.pdf new file mode 100644 index 0000000..dc4abd9 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_223.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_224.pdf b/HaWeb/wwwroot/pdf/HKB_224.pdf new file mode 100644 index 0000000..ebe3cd9 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_224.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_225.pdf b/HaWeb/wwwroot/pdf/HKB_225.pdf new file mode 100644 index 0000000..2920884 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_225.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_226.pdf b/HaWeb/wwwroot/pdf/HKB_226.pdf new file mode 100644 index 0000000..a97e2c8 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_226.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_227.pdf b/HaWeb/wwwroot/pdf/HKB_227.pdf new file mode 100644 index 0000000..2a28186 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_227.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_228.pdf b/HaWeb/wwwroot/pdf/HKB_228.pdf new file mode 100644 index 0000000..b746b1a Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_228.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_229.pdf b/HaWeb/wwwroot/pdf/HKB_229.pdf new file mode 100644 index 0000000..0787730 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_229.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_23.pdf b/HaWeb/wwwroot/pdf/HKB_23.pdf new file mode 100644 index 0000000..ca26de0 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_23.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_230.pdf b/HaWeb/wwwroot/pdf/HKB_230.pdf new file mode 100644 index 0000000..737b8d4 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_230.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_231.pdf b/HaWeb/wwwroot/pdf/HKB_231.pdf new file mode 100644 index 0000000..c679f5e Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_231.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_232.pdf b/HaWeb/wwwroot/pdf/HKB_232.pdf new file mode 100644 index 0000000..c6fe0d0 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_232.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_233.pdf b/HaWeb/wwwroot/pdf/HKB_233.pdf new file mode 100644 index 0000000..212e6ba Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_233.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_234.pdf b/HaWeb/wwwroot/pdf/HKB_234.pdf new file mode 100644 index 0000000..a5e3aa3 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_234.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_235.pdf b/HaWeb/wwwroot/pdf/HKB_235.pdf new file mode 100644 index 0000000..e81be7d Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_235.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_236.pdf b/HaWeb/wwwroot/pdf/HKB_236.pdf new file mode 100644 index 0000000..99ceb01 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_236.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_237.pdf b/HaWeb/wwwroot/pdf/HKB_237.pdf new file mode 100644 index 0000000..732d09c Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_237.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_238.pdf b/HaWeb/wwwroot/pdf/HKB_238.pdf new file mode 100644 index 0000000..7d0f98f Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_238.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_239.pdf b/HaWeb/wwwroot/pdf/HKB_239.pdf new file mode 100644 index 0000000..79851e1 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_239.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_24.pdf b/HaWeb/wwwroot/pdf/HKB_24.pdf new file mode 100644 index 0000000..4aa39b1 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_24.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_25.pdf b/HaWeb/wwwroot/pdf/HKB_25.pdf new file mode 100644 index 0000000..cfd8086 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_25.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_26.pdf b/HaWeb/wwwroot/pdf/HKB_26.pdf new file mode 100644 index 0000000..57445d7 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_26.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_27.pdf b/HaWeb/wwwroot/pdf/HKB_27.pdf new file mode 100644 index 0000000..8f95b38 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_27.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_28.pdf b/HaWeb/wwwroot/pdf/HKB_28.pdf new file mode 100644 index 0000000..0db4989 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_28.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_29.pdf b/HaWeb/wwwroot/pdf/HKB_29.pdf new file mode 100644 index 0000000..12796e9 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_29.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_3.pdf b/HaWeb/wwwroot/pdf/HKB_3.pdf new file mode 100644 index 0000000..c58ba37 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_3.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_30.pdf b/HaWeb/wwwroot/pdf/HKB_30.pdf new file mode 100644 index 0000000..bbe3a5c Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_30.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_31.pdf b/HaWeb/wwwroot/pdf/HKB_31.pdf new file mode 100644 index 0000000..ecfb758 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_31.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_32.pdf b/HaWeb/wwwroot/pdf/HKB_32.pdf new file mode 100644 index 0000000..e1c5585 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_32.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_33.pdf b/HaWeb/wwwroot/pdf/HKB_33.pdf new file mode 100644 index 0000000..8766e17 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_33.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_34.pdf b/HaWeb/wwwroot/pdf/HKB_34.pdf new file mode 100644 index 0000000..2e894ba Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_34.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_35.pdf b/HaWeb/wwwroot/pdf/HKB_35.pdf new file mode 100644 index 0000000..d246693 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_35.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_36.pdf b/HaWeb/wwwroot/pdf/HKB_36.pdf new file mode 100644 index 0000000..2b659d0 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_36.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_37.pdf b/HaWeb/wwwroot/pdf/HKB_37.pdf new file mode 100644 index 0000000..f7eb439 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_37.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_38.pdf b/HaWeb/wwwroot/pdf/HKB_38.pdf new file mode 100644 index 0000000..f951d65 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_38.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_39.pdf b/HaWeb/wwwroot/pdf/HKB_39.pdf new file mode 100644 index 0000000..bb018dd Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_39.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_4.pdf b/HaWeb/wwwroot/pdf/HKB_4.pdf new file mode 100644 index 0000000..3f9128a Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_4.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_40.pdf b/HaWeb/wwwroot/pdf/HKB_40.pdf new file mode 100644 index 0000000..3068c04 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_40.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_41.pdf b/HaWeb/wwwroot/pdf/HKB_41.pdf new file mode 100644 index 0000000..11f79d1 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_41.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_42.pdf b/HaWeb/wwwroot/pdf/HKB_42.pdf new file mode 100644 index 0000000..6c1497b Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_42.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_43.pdf b/HaWeb/wwwroot/pdf/HKB_43.pdf new file mode 100644 index 0000000..7ace3c5 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_43.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_44.pdf b/HaWeb/wwwroot/pdf/HKB_44.pdf new file mode 100644 index 0000000..a761946 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_44.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_45.pdf b/HaWeb/wwwroot/pdf/HKB_45.pdf new file mode 100644 index 0000000..c4aeb9e Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_45.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_46.pdf b/HaWeb/wwwroot/pdf/HKB_46.pdf new file mode 100644 index 0000000..6165dd0 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_46.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_47.pdf b/HaWeb/wwwroot/pdf/HKB_47.pdf new file mode 100644 index 0000000..90c885f Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_47.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_48.pdf b/HaWeb/wwwroot/pdf/HKB_48.pdf new file mode 100644 index 0000000..20e3efc Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_48.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_49.pdf b/HaWeb/wwwroot/pdf/HKB_49.pdf new file mode 100644 index 0000000..f13ca76 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_49.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_5.pdf b/HaWeb/wwwroot/pdf/HKB_5.pdf new file mode 100644 index 0000000..71f71bb Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_5.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_50.pdf b/HaWeb/wwwroot/pdf/HKB_50.pdf new file mode 100644 index 0000000..fa59606 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_50.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_51.pdf b/HaWeb/wwwroot/pdf/HKB_51.pdf new file mode 100644 index 0000000..37551cc Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_51.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_52.pdf b/HaWeb/wwwroot/pdf/HKB_52.pdf new file mode 100644 index 0000000..e43732e Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_52.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_53.pdf b/HaWeb/wwwroot/pdf/HKB_53.pdf new file mode 100644 index 0000000..47161c9 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_53.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_54.pdf b/HaWeb/wwwroot/pdf/HKB_54.pdf new file mode 100644 index 0000000..d0feab6 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_54.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_55.pdf b/HaWeb/wwwroot/pdf/HKB_55.pdf new file mode 100644 index 0000000..49f386e Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_55.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_56.pdf b/HaWeb/wwwroot/pdf/HKB_56.pdf new file mode 100644 index 0000000..930ca9c Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_56.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_57.pdf b/HaWeb/wwwroot/pdf/HKB_57.pdf new file mode 100644 index 0000000..683f882 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_57.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_58.pdf b/HaWeb/wwwroot/pdf/HKB_58.pdf new file mode 100644 index 0000000..8f5b0d7 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_58.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_59.pdf b/HaWeb/wwwroot/pdf/HKB_59.pdf new file mode 100644 index 0000000..b90af47 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_59.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_6.pdf b/HaWeb/wwwroot/pdf/HKB_6.pdf new file mode 100644 index 0000000..cad0592 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_6.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_60.pdf b/HaWeb/wwwroot/pdf/HKB_60.pdf new file mode 100644 index 0000000..1fae439 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_60.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_61.pdf b/HaWeb/wwwroot/pdf/HKB_61.pdf new file mode 100644 index 0000000..4296985 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_61.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_62.pdf b/HaWeb/wwwroot/pdf/HKB_62.pdf new file mode 100644 index 0000000..1307a89 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_62.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_63.pdf b/HaWeb/wwwroot/pdf/HKB_63.pdf new file mode 100644 index 0000000..d9a76d7 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_63.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_64.pdf b/HaWeb/wwwroot/pdf/HKB_64.pdf new file mode 100644 index 0000000..473150e Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_64.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_65.pdf b/HaWeb/wwwroot/pdf/HKB_65.pdf new file mode 100644 index 0000000..b31df29 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_65.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_66.pdf b/HaWeb/wwwroot/pdf/HKB_66.pdf new file mode 100644 index 0000000..dc8d8a8 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_66.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_67.pdf b/HaWeb/wwwroot/pdf/HKB_67.pdf new file mode 100644 index 0000000..4f472b2 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_67.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_68.pdf b/HaWeb/wwwroot/pdf/HKB_68.pdf new file mode 100644 index 0000000..92c37e8 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_68.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_69.pdf b/HaWeb/wwwroot/pdf/HKB_69.pdf new file mode 100644 index 0000000..f406f02 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_69.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_7.pdf b/HaWeb/wwwroot/pdf/HKB_7.pdf new file mode 100644 index 0000000..b457eb8 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_7.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_70.pdf b/HaWeb/wwwroot/pdf/HKB_70.pdf new file mode 100644 index 0000000..cd8634f Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_70.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_71.pdf b/HaWeb/wwwroot/pdf/HKB_71.pdf new file mode 100644 index 0000000..abaf5fb Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_71.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_72.pdf b/HaWeb/wwwroot/pdf/HKB_72.pdf new file mode 100644 index 0000000..e92a14e Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_72.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_73.pdf b/HaWeb/wwwroot/pdf/HKB_73.pdf new file mode 100644 index 0000000..bc9f9bc Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_73.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_74.pdf b/HaWeb/wwwroot/pdf/HKB_74.pdf new file mode 100644 index 0000000..9c69961 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_74.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_75.pdf b/HaWeb/wwwroot/pdf/HKB_75.pdf new file mode 100644 index 0000000..c859e36 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_75.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_76.pdf b/HaWeb/wwwroot/pdf/HKB_76.pdf new file mode 100644 index 0000000..0f5f917 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_76.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_77.pdf b/HaWeb/wwwroot/pdf/HKB_77.pdf new file mode 100644 index 0000000..da40617 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_77.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_78.pdf b/HaWeb/wwwroot/pdf/HKB_78.pdf new file mode 100644 index 0000000..e534125 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_78.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_79.pdf b/HaWeb/wwwroot/pdf/HKB_79.pdf new file mode 100644 index 0000000..bd732a8 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_79.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_8.pdf b/HaWeb/wwwroot/pdf/HKB_8.pdf new file mode 100644 index 0000000..85d6bba Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_8.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_80.pdf b/HaWeb/wwwroot/pdf/HKB_80.pdf new file mode 100644 index 0000000..b0399d0 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_80.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_81.pdf b/HaWeb/wwwroot/pdf/HKB_81.pdf new file mode 100644 index 0000000..8f15f62 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_81.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_82.pdf b/HaWeb/wwwroot/pdf/HKB_82.pdf new file mode 100644 index 0000000..200f235 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_82.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_83.pdf b/HaWeb/wwwroot/pdf/HKB_83.pdf new file mode 100644 index 0000000..87e2756 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_83.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_84.pdf b/HaWeb/wwwroot/pdf/HKB_84.pdf new file mode 100644 index 0000000..7bcce8f Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_84.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_85.pdf b/HaWeb/wwwroot/pdf/HKB_85.pdf new file mode 100644 index 0000000..deff19f Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_85.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_86.pdf b/HaWeb/wwwroot/pdf/HKB_86.pdf new file mode 100644 index 0000000..dccfb80 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_86.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_87.pdf b/HaWeb/wwwroot/pdf/HKB_87.pdf new file mode 100644 index 0000000..5b58e76 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_87.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_88.pdf b/HaWeb/wwwroot/pdf/HKB_88.pdf new file mode 100644 index 0000000..166703d Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_88.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_89.pdf b/HaWeb/wwwroot/pdf/HKB_89.pdf new file mode 100644 index 0000000..32576f2 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_89.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_9.pdf b/HaWeb/wwwroot/pdf/HKB_9.pdf new file mode 100644 index 0000000..14d2174 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_9.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_90.pdf b/HaWeb/wwwroot/pdf/HKB_90.pdf new file mode 100644 index 0000000..4446780 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_90.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_91.pdf b/HaWeb/wwwroot/pdf/HKB_91.pdf new file mode 100644 index 0000000..1682175 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_91.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_92.pdf b/HaWeb/wwwroot/pdf/HKB_92.pdf new file mode 100644 index 0000000..2a85bc4 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_92.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_93.pdf b/HaWeb/wwwroot/pdf/HKB_93.pdf new file mode 100644 index 0000000..1e78157 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_93.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_94.pdf b/HaWeb/wwwroot/pdf/HKB_94.pdf new file mode 100644 index 0000000..9138e4e Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_94.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_95.pdf b/HaWeb/wwwroot/pdf/HKB_95.pdf new file mode 100644 index 0000000..67c2b99 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_95.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_96.pdf b/HaWeb/wwwroot/pdf/HKB_96.pdf new file mode 100644 index 0000000..5c79b4e Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_96.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_97.pdf b/HaWeb/wwwroot/pdf/HKB_97.pdf new file mode 100644 index 0000000..f0ef83e Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_97.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_98.pdf b/HaWeb/wwwroot/pdf/HKB_98.pdf new file mode 100644 index 0000000..f5240f8 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_98.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_99.pdf b/HaWeb/wwwroot/pdf/HKB_99.pdf new file mode 100644 index 0000000..0ef5b52 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_99.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_Bibelstellen-Register.pdf b/HaWeb/wwwroot/pdf/HKB_Bibelstellen-Register.pdf new file mode 100644 index 0000000..dc1efc8 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_Bibelstellen-Register.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_Forschungsbibliographie.pdf b/HaWeb/wwwroot/pdf/HKB_Forschungsbibliographie.pdf new file mode 100644 index 0000000..20749dc Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_Forschungsbibliographie.pdf differ diff --git a/HaWeb/wwwroot/pdf/HKB_Register.pdf b/HaWeb/wwwroot/pdf/HKB_Register.pdf new file mode 100644 index 0000000..fbbea46 Binary files /dev/null and b/HaWeb/wwwroot/pdf/HKB_Register.pdf differ