diff --git a/HaWeb/Controllers/BriefeContoller.cs b/HaWeb/Controllers/BriefeContoller.cs index d6ba5a6..17a276a 100644 --- a/HaWeb/Controllers/BriefeContoller.cs +++ b/HaWeb/Controllers/BriefeContoller.cs @@ -5,6 +5,7 @@ using HaWeb.FileHelpers; using HaDocument.Interfaces; using HaXMLReader.Interfaces; using HaDocument.Models; +using System.Xml.Linq; namespace HaWeb.Controllers; @@ -62,20 +63,52 @@ public class Briefecontroller : Controller { if (prevmeta != null) model.MetaData.Prev = (generateMetaViewModel(lib, prevmeta, false), url + prevmeta.Autopsic); if (hands != null && hands.Any()) model.ParsedHands = HaWeb.HTMLHelpers.LetterHelpers.CreateHands(lib, hands); if (editreasons != null && editreasons.Any()) model.ParsedEdits = HaWeb.HTMLHelpers.LetterHelpers.CreateEdits(lib, _readerService, editreasons); - if (tradition != null && !String.IsNullOrWhiteSpace(tradition.Element)) { - var parsedTraditions = HaWeb.HTMLHelpers.LetterHelpers.CreateTraditions(lib, _readerService, marginals, tradition, hands, editreasons); - (model.ParsedTradition, model.ParsedMarginals, model.MinWidthTrad) = (parsedTraditions.sb_tradition.ToString(), parsedTraditions.ParsedMarginals, parsedTraditions.minwidth); - } + model.DefaultCategory = lib.Apps.ContainsKey("-1") ? lib.Apps["-1"].Category : null; + + List<(string Category, List)>? texts = null; if (text != null && !String.IsNullOrWhiteSpace(text.Element)) { - var parsedLetter = HaWeb.HTMLHelpers.LetterHelpers.CreateLetter(lib, _readerService, meta, text, marginals, hands, editreasons); - (model.ParsedText, model.MinWidth) = (parsedLetter.sb_lettertext.ToString(), parsedLetter.minwidth); - if (model.ParsedMarginals != null && parsedLetter.ParsedMarginals != null) model.ParsedMarginals.AddRange(parsedLetter.ParsedMarginals); - else model.ParsedMarginals = parsedLetter.ParsedMarginals; - model.MetaData.Startline = parsedLetter.Startline; - model.MetaData.Startpage = parsedLetter.Startpage; - if (String.IsNullOrWhiteSpace(model.ParsedText)) + var state = HaWeb.HTMLHelpers.LetterHelpers.ParseText(lib, _readerService, text.Element, meta, marginals, hands, editreasons); + // TODO: it is still hardcoded that means + var textid = "0"; + var category = lib.Apps[textid].Category; + var name = lib.Apps[textid].Name; + var t = new Text(id, textid, category, state.minwidth); + t.ParsedMarginals = state.ParsedMarginals; + t.ParsedText = state.sb.ToString(); + t.Title = name; + if (!String.IsNullOrWhiteSpace(t.ParsedText)) { + if (texts == null) texts = new List<(string, List)>(); + if(!texts.Where(x => x.Category == category).Any()) + texts.Add((category, new List() { t })); + else + texts.Where(x => x.Category == category).First().Item2.Add(t); + } else { model.MetaData.HasText = false; + } } + + if (tradition != null && !String.IsNullOrWhiteSpace(tradition.Element)) { + var additions = XElement.Parse(tradition.Element, LoadOptions.PreserveWhitespace).Descendants("app"); + foreach (var a in additions) { + var app = a.HasAttributes && a.Attribute("ref") != null && lib.Apps.ContainsKey(a.Attribute("ref").Value) ? + lib.Apps[a.Attribute("ref").Value] : + null; + if (app != null && !a.IsEmpty) { + var state = HaWeb.HTMLHelpers.LetterHelpers.ParseText(lib, _readerService, a, meta, marginals, hands, editreasons); + var t = new Text(id, app.Index, app.Category, state.minwidth); + t.Title = app.Name; + t.ParsedMarginals = state.ParsedMarginals; + t.ParsedText = state.sb.ToString(); + if (texts == null) texts = new List<(string, List)>(); + if(!texts.Where(x => x.Category == app.Category).Any()) + texts.Add((app.Category, new List() { t })); + else + texts.Where(x => x.Category == app.Category).First().Item2.Add(t); + } + } + } + + model.Texts = texts; // Return return View("~/Views/HKB/Dynamic/Briefe.cshtml", model); diff --git a/HaWeb/Controllers/SucheController.cs b/HaWeb/Controllers/SucheController.cs index dbe4cc6..225843d 100644 --- a/HaWeb/Controllers/SucheController.cs +++ b/HaWeb/Controllers/SucheController.cs @@ -185,8 +185,8 @@ public class SucheController : Controller { foreach (var c in l) { var sb = new StringBuilder(); var rd = _readerService.RequestStringReader(c.Element); - var st = new LetterState(lib, _readerService, lib.Metas[c.Letter], null, null, null); - new HaWeb.HTMLParser.XMLHelper(st, rd, sb, LetterRules.OTagRules, null, LetterRules.CTagRules, LetterRules.TextRules, LetterRules.WhitespaceRules); + var st = new TextState(lib, _readerService, lib.Metas[c.Letter], null, null, null); + new HaWeb.HTMLParser.XMLHelper(st, rd, sb, TextRules.OTagRules, null, TextRules.CTagRules, TextRules.TRules, TextRules.WhitespaceRules); new HaWeb.HTMLHelpers.LinkHelper(st.Lib, rd, sb, false); rd.Read(); list.Add((c, sb.ToString())); diff --git a/HaWeb/HTMLHelpers/LetterHelpers.cs b/HaWeb/HTMLHelpers/LetterHelpers.cs index 9b2cbc8..803323b 100644 --- a/HaWeb/HTMLHelpers/LetterHelpers.cs +++ b/HaWeb/HTMLHelpers/LetterHelpers.cs @@ -12,22 +12,17 @@ using HaWeb.Settings.ParsingState; using HaWeb.Settings.ParsingRules; public static class LetterHelpers { - public static LetterState CreateLetter(ILibrary lib, IReaderService readerService, Meta meta, Letter letter, IEnumerable? marginals, IEnumerable? hands, IEnumerable? edits) { - var rd = readerService.RequestStringReader(letter.Element); - var letterState = new LetterState(lib, readerService, meta, marginals, hands, edits); - new HaWeb.HTMLParser.XMLHelper(letterState, rd, letterState.sb_lettertext, LetterRules.OTagRules, LetterRules.STagRules, LetterRules.CTagRules, LetterRules.TextRules, LetterRules.WhitespaceRules); - rd.Read(); - return letterState; - } + public static TextState ParseText(ILibrary lib, IReaderService readerService, string text, Meta meta, IEnumerable? marginals, IEnumerable? hands, IEnumerable? edits) + => ParseText(lib, readerService, XElement.Parse(text, LoadOptions.PreserveWhitespace), meta, marginals, hands, edits); - public static TraditionState CreateTraditions(ILibrary lib, IReaderService readerService, IEnumerable? marginals, Tradition tradition, IEnumerable? hands, IEnumerable? edits) { - var rd = readerService.RequestStringReader(tradition.Element); - var traditionState = new TraditionState(lib, rd, readerService, marginals, hands, edits); - new HaWeb.HTMLParser.XMLHelper(traditionState, rd, traditionState.sb_tradition, TraditionRules.OTagRules, TraditionRules.STagRules, TraditionRules.CTagRules, TraditionRules.TextRules, TraditionRules.WhitespaceRules); - new HaWeb.HTMLHelpers.LinkHelper(lib, rd, traditionState.sb_tradition); + public static TextState ParseText(ILibrary lib, IReaderService readerService, XElement text, Meta meta, IEnumerable? marginals, IEnumerable? hands, IEnumerable? edits) { + var rd = readerService.RequestReader(text); + var state = new TextState(lib, readerService, meta, marginals, hands, edits); + new HaWeb.HTMLParser.XMLHelper(state, rd, state.sb, TextRules.OTagRules, TextRules.STagRules, TextRules.CTagRules, TextRules.TRules, TextRules.WhitespaceRules); + new HaWeb.HTMLHelpers.LinkHelper(lib, rd, state.sb); rd.Read(); - return traditionState; + return state; } public static List<(string, string, string, string, string, string)> CreateEdits(ILibrary lib, IReaderService readerService, IEnumerable editreasons) { diff --git a/HaWeb/Hamann.xml b/HaWeb/Hamann.xml index e6ab1af..ebe7749 100644 --- a/HaWeb/Hamann.xml +++ b/HaWeb/Hamann.xml @@ -44131,7 +44131,6 @@ sehr. Hans ist wohl u. wird von Tag zu Tage beßer. Leben Sie wohl mit Ihrer Hausmutter u. kleinem Dreiblatt. H. - Mohrungen den 9ten Januar 1776 @@ -97891,7 +97890,6 @@ HErrn / HErrn
    Franz Buchholz
/ Herrn von Welbergen / zu /
    Münster
. den 5. Febr. 86.
-
Kgb. den 6 Febr. 86. diff --git a/HaWeb/Models/BriefeMetaViewModel.cs b/HaWeb/Models/BriefeMetaViewModel.cs index 43a11c7..9f560e1 100644 --- a/HaWeb/Models/BriefeMetaViewModel.cs +++ b/HaWeb/Models/BriefeMetaViewModel.cs @@ -64,8 +64,8 @@ public class BriefeMetaViewModel { } } - public (BriefeMetaViewModel, string)? Next { get; set; } - public (BriefeMetaViewModel, string)? Prev { get; set; } + public (BriefeMetaViewModel Model, string)? Next { get; set; } + public (BriefeMetaViewModel Model, string)? Prev { get; set; } public BriefeMetaViewModel(Meta meta, bool hasMarginals) { diff --git a/HaWeb/Models/BriefeViewModel.cs b/HaWeb/Models/BriefeViewModel.cs index bd9d656..cff2ea9 100644 --- a/HaWeb/Models/BriefeViewModel.cs +++ b/HaWeb/Models/BriefeViewModel.cs @@ -5,18 +5,26 @@ public class BriefeViewModel { public string Id { get; private set; } public string Index { get; private set; } public BriefeMetaViewModel MetaData { get; private set; } + public string? DefaultCategory { get; set; } - private List<(string, string, string)>? _ParsedMarginals; private List<(string, string, string, string, string, string)>? _ParsedEdits; - public List<(string, string, string, string, string)>? _ParsedHands; - - public string? ParsedText { get; set; } - public string? ParsedTradition { get; set; } - public bool MinWidth { get; set; } = false; - public bool MinWidthTrad { get; set; } = false; + private List<(string, string, string, string, string)>? _ParsedHands; + private List<(string Category, List)>? _Texts; + + public List<(string Category, List)>? Texts { + get => _Texts; + set { + if (value != null) + _Texts = value.Select(x => ( + x.Item1, + x.Item2 + )).ToList(); + else _Texts = null; + } + } // From, Until, Reference, Edit, sartpage, startline - public List<(string, string, string, string, string, string)>? ParsedEdits { + public List<(string ParsedStart, string ParsedEnd, string Preview, string Text, string Page, string Line)>? ParsedEdits { get => _ParsedEdits; set { if (value != null) @@ -28,13 +36,12 @@ public class BriefeViewModel { HttpUtility.HtmlAttributeEncode(x.Item5), HttpUtility.HtmlAttributeEncode(x.Item6) )).ToList(); - else - _ParsedEdits = null; + else _ParsedEdits = null; } } // From, Until, Person, startpage, startline - public List<(string, string, string, string, string)>? ParsedHands { + public List<(string ParsedStart, string ParsedEnd, string Person, string Page, string Line)>? ParsedHands { get => _ParsedHands; set { if (value != null) @@ -45,23 +52,7 @@ public class BriefeViewModel { HttpUtility.HtmlAttributeEncode(x.Item4), HttpUtility.HtmlAttributeEncode(x.Item5) )).ToList(); - else - _ParsedHands = null; - } - } - - // Page, Line, Element - public List<(string, string, string)>? ParsedMarginals { - get => _ParsedMarginals; - set { - if (value != null) - _ParsedMarginals = value.Select(x => ( - HttpUtility.HtmlEncode(x.Item1), - HttpUtility.HtmlEncode(x.Item2), - x.Item3 - )).ToList(); - else - _ParsedMarginals = null; + else _ParsedHands = null; } } diff --git a/HaWeb/Models/Text.cs b/HaWeb/Models/Text.cs new file mode 100644 index 0000000..6f0bd08 --- /dev/null +++ b/HaWeb/Models/Text.cs @@ -0,0 +1,43 @@ +namespace HaWeb.Models; +using System.Web; + +public class Text { + public string Id { get; private set; } + public string Number { get; private set; } + public bool MinWidth { get; private set; } + public string Category { get; private set; } + public string? ParsedText { get; set; } + + private string? _Title; + private List<(string, string, string)>? _ParsedMarginals; + + public List<(string Page, string Line, string Text)>? ParsedMarginals { + get => _ParsedMarginals; + set { + if (value != null) + _ParsedMarginals = value.Select(x => ( + HttpUtility.HtmlEncode(x.Item1), + HttpUtility.HtmlEncode(x.Item2), + x.Item3 + )).ToList(); + else + _ParsedMarginals = null; + } + } + + public string? Title { + get => _Title; + set { + if (!String.IsNullOrWhiteSpace(value)) { + _Title = value; + } else _Title = null; + } + } + + public Text(string id, string number, string category, bool minwidth) { + Id = id; + Number = number; + Category = category; + MinWidth = minwidth; + } +} \ No newline at end of file diff --git a/HaWeb/README.md b/HaWeb/README.md index 3460a13..761006a 100644 --- a/HaWeb/README.md +++ b/HaWeb/README.md @@ -89,4 +89,12 @@ A TODO SEO Description & Titel A TODO fixed width briefe kommentar bisschen nach links 306, 309 Liste für Janina/Luca: -tabellen ok, ausser 939 \ No newline at end of file +tabellen ok, ausser 939 + +KOmmentare verschobem 202 Anhang +458 leeren lettertext löschen +935 leeren lettertext löschen + +min-width 673 1150 +doppel- empfänder sender 876 +1075 zwischentitel \ No newline at end of file diff --git a/HaWeb/Settings/CSSClassesSettings.cs b/HaWeb/Settings/CSSClassesSettings.cs index 6c2bb2d..1109603 100644 --- a/HaWeb/Settings/CSSClassesSettings.cs +++ b/HaWeb/Settings/CSSClassesSettings.cs @@ -9,7 +9,8 @@ public static class CSSClasses { public const string SUBSECTIONCLASS = "ha-subsection"; // XML: public const string TRADITIONCLASS = "ha-tradition"; // XML: public const string MARGINALCLASS = "ha-marginal"; // XML: - public const string LETTERCLASS = "ha-lettertext"; // XML: + public const string INDEXEDTEXTCONTAINERCLASS = "ha-textcontainer"; + public const string INDEXEDTEXTCLASS = "ha-text"; // Comments: public const string LEMMACLASS = "ha-lemma"; // XML: @@ -50,7 +51,7 @@ public static class CSSClasses { public const string TABLECLASS = "ha-table"; public const string TABCLASS = "ha-hatab-"; // TODO: GEN public const string CROSSEDDASHCLASS = "ha-diagdel"; - public const string TEXTCLASS = "ha-text"; + public const string TEXTCLASS = "ha-literal"; public const string BZGCLASS = "ha-bzg"; public const string ZHCLASS = "ha-zh"; @@ -60,7 +61,6 @@ public static class CSSClasses { public const string MARGINALLISTCLASS = "ha-marginallist"; public const string TRADLINECOUNTCLASS = "ha-tradlinecount"; public const string TRADCOMMENTCOLUMNCLASS = "ha-tradcommentcolumn"; - public const string TRADZHTEXTCLASS = "ha-tradzhtext"; public const string TRADZHTEXTBOXCLASS = "ha-tradtextbox"; // Zeilen: diff --git a/HaWeb/Settings/ParsingRules/EditRules.cs b/HaWeb/Settings/ParsingRules/EditRules.cs index a8dc2a6..d95a1ff 100644 --- a/HaWeb/Settings/ParsingRules/EditRules.cs +++ b/HaWeb/Settings/ParsingRules/EditRules.cs @@ -40,11 +40,7 @@ public static class EditRules { ( ( x, _) => x.Name == "zh", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ZHCLASS)) ), ( ( x, _) => x.Name == "emph", (sb, tag, _) => { sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.EMPHCLASS)); } ), ( ( x, _) => x.Name == "app", (sb, tag, _) => { sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.APPCLASS)); } ), - ( ( x, _) => x.Name == "subsection", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.SUBSECTIONCLASS, tag["id"])) ), - ( ( x, _) => x.Name == "kommentar", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.COMMENTCLASS, tag["id"])) ), ( ( x, _) => x.Name == "editreason", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.EDITREASONCLASS)) ), - ( ( x, _) => x.Name == "subsection", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.LETTERCLASS)) ), - ( ( x, _) => x.Name == "letterTradition", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.TRADITIONCLASS)) ), ( ( x, _) => x.Name == "marginal", (sb, tag, reader) => { sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.MARGINALCLASS)); reader.State.active_skipwhitespace = !reader.State.active_skipwhitespace; @@ -83,11 +79,7 @@ public static class EditRules { ( ( x, _) => x.Name == "zh", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), ( ( x, _) => x.Name == "emph", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), ( ( x, _) => x.Name == "app", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "subsection", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "kommentar", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), ( ( x, _) => x.Name == "editreason", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "subsection", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "letterTradition", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), ( ( x, _) => x.Name == "marginal", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), ( ( x, _) => x.Name == "tabs", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), ( ( x, _) => x.Name == "tab", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), diff --git a/HaWeb/Settings/ParsingRules/LetterRules.cs b/HaWeb/Settings/ParsingRules/TextRules.cs similarity index 84% rename from HaWeb/Settings/ParsingRules/LetterRules.cs rename to HaWeb/Settings/ParsingRules/TextRules.cs index 68927d6..b43d666 100644 --- a/HaWeb/Settings/ParsingRules/LetterRules.cs +++ b/HaWeb/Settings/ParsingRules/TextRules.cs @@ -3,12 +3,12 @@ using System.Text; using System.Web; using HaWeb.Settings; -using TagFuncList = List<(Func, bool>, Action>)>; -using TextFuncList = List<(Func, bool>, Action>)>; -using WhitespaceFuncList = List<(Func, bool>, Action>)>; +using TagFuncList = List<(Func, bool>, Action>)>; +using TextFuncList = List<(Func, bool>, Action>)>; +using WhitespaceFuncList = List<(Func, bool>, Action>)>; // TODO: stringbuilder als Rückgabeparameter des XMHelpers ist eigentlich auch Part vom State -public class LetterRules { +public class TextRules { private static readonly string DEFAULTELEMENT = HaWeb.Settings.HTML.DEFAULTELEMENT; // Parsing Rules for Letters @@ -51,11 +51,14 @@ public class LetterRules { ( ( x, _) => x.Name == "bzg", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.BZGCLASS)) ), ( ( x, _) => x.Name == "zh", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ZHCLASS)) ), ( ( x, _) => x.Name == "emph", (sb, tag, _) => { sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.EMPHCLASS)); } ), - ( ( x, _) => x.Name == "subsection", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.SUBSECTIONCLASS, tag["id"])) ), - ( ( x, _) => x.Name == "kommentar", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.COMMENTCLASS, tag["id"])) ), ( ( x, _) => x.Name == "editreason", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.EDITREASONCLASS)) ), - ( ( x, _) => x.Name == "subsection", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.LETTERCLASS)) ), - ( ( x, _) => x.Name == "letterTradition", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.TRADITIONCLASS)) ), + ( ( x, _) => x.Name == "letterText", (sb, tag, _) => { + + // TODO Workaround, instead of + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.APPCLASS + " " + CSSClasses.APPCLASS + "-0")); + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.INDEXEDTEXTCONTAINERCLASS)); + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.INDEXEDTEXTCLASS)); + } ), ( ( x, _) => x.Name == "marginal", (sb, tag, reader) => { sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.MARGINALCLASS, "m-" + tag["index"])); reader.State.active_skipwhitespace = !reader.State.active_skipwhitespace; @@ -80,12 +83,15 @@ public class LetterRules { }), // Tradition specific: - ( ( x, _) => x.Name == "app", (sb, tag, reader) => { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.APPCLASS)); + ( ( x, _) => x.Name == "app", (sb, tag, reader) => { + if (!String.IsNullOrWhiteSpace(tag["ref"])) + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.APPCLASS + " " + CSSClasses.APPCLASS + "-" + tag["ref"])); + else sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.APPCLASS)); reader.State.activelinecount = false; } ), ( ( x, _) => x.Name == "ZHText", (sb, tag, reader) => { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.TRADZHTEXTCLASS)); + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.INDEXEDTEXTCONTAINERCLASS)); + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.INDEXEDTEXTCLASS)); reader.State.activelinecount = true; }) }; @@ -124,11 +130,14 @@ public class LetterRules { ( ( x, _) => x.Name == "bzg", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), ( ( x, _) => x.Name == "zh", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), ( ( x, _) => x.Name == "emph", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "subsection", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "kommentar", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), ( ( x, _) => x.Name == "editreason", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "subsection", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "letterTradition", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), + ( ( x, _) => x.Name == "letterText", (sb, tag, _) => { + // Hacky, to clear floats and absolute positioned elements: + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement("br")); + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); + } ), ( ( x, _) => x.Name == "marginal", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), ( ( x, _) => x.Name == "tabs", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), ( ( x, _) => x.Name == "tab", (sb, tag, reader) => { @@ -143,12 +152,15 @@ public class LetterRules { reader.State.activelinecount = true; } ), ( ( x, _) => x.Name == "ZHText", (sb, tag, reader) => { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); + reader.State.currline = "-1"; + reader.State.currpage = "-1"; reader.State.activelinecount = false; + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); }) }; - public static readonly TextFuncList TextRules = new TextFuncList() { + public static readonly TextFuncList TRules = new TextFuncList() { ( ( x, _) => true, (sb, txt, reader) => { sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.TEXTCLASS)); if (reader.OpenTags.Where(x => x.Name == "del").Any()) @@ -159,7 +171,7 @@ public class LetterRules { })}; public static readonly TagFuncList STagRules = new TagFuncList() { - ( (x, _) => x.Name == "page", (sb, tag, reader) => reader.State.currpage = tag["index"] ), + ( (x, _) => x.Name == "page", (sb, tag, reader) => reader.State.currpage = tag["index"] ), ( (x, _) => x.Name == "line", (sb, tag, reader) => { if(!String.IsNullOrWhiteSpace(tag["tab"]) || !String.IsNullOrWhiteSpace(tag["type"])) { reader.State.mustwrap = (false, true); @@ -205,6 +217,12 @@ public class LetterRules { } else if (reader.State.currline == "-1" && !String.IsNullOrWhiteSpace(tag["index"])) { reader.State.Startline = tag["index"]; reader.State.currline = tag["index"]; + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ZHLINECOUNTCLASS, reader.State.currpage + "-" + reader.State.currline)); + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ZHPAGECLASS + " " + CSSClasses.FIRSTPAGECLASS)); + if (reader.State.currline == "1") sb.Append("S. " + reader.State.currpage); + else sb.Append(reader.State.currpage + "/" + reader.State.currline); + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); + sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); reader.State.pagebreak = false; } @@ -225,9 +243,9 @@ public class LetterRules { // In Marginal, the Root-Element () is somehow parsed, // so we don't need to enclose it in a seperate div. var rd = reader.State.ReaderService.RequestStringReader(marginal.Element); - new HaWeb.HTMLParser.XMLHelper(reader.State, rd, sb, LetterRules.OTagRules, null, LetterRules.CTagRules, LetterRules.TextRules, LetterRules.WhitespaceRules); + new HaWeb.HTMLParser.XMLHelper(reader.State, rd, sb, ParsingRules.TextRules.OTagRules, null, ParsingRules.TextRules.CTagRules, ParsingRules.TextRules.TRules, ParsingRules.TextRules.WhitespaceRules); new HaWeb.HTMLHelpers.LinkHelper(reader.State.Lib, rd, sb, false); - new HaWeb.HTMLParser.XMLHelper(reader.State, rd, sb2, LetterRules.OTagRules, null, LetterRules.CTagRules, LetterRules.TextRules, LetterRules.WhitespaceRules); + new HaWeb.HTMLParser.XMLHelper(reader.State, rd, sb2, ParsingRules.TextRules.OTagRules, null, ParsingRules.TextRules.CTagRules, ParsingRules.TextRules.TRules, ParsingRules.TextRules.WhitespaceRules); new HaWeb.HTMLHelpers.LinkHelper(reader.State.Lib, rd, sb2, false); rd.Read(); } diff --git a/HaWeb/Settings/ParsingRules/TraditionRules.cs b/HaWeb/Settings/ParsingRules/TraditionRules.cs deleted file mode 100644 index cf04a05..0000000 --- a/HaWeb/Settings/ParsingRules/TraditionRules.cs +++ /dev/null @@ -1,269 +0,0 @@ -using System.ComponentModel; -namespace HaWeb.Settings.ParsingRules; -using System.Text; -using System.Web; -using HaWeb.Settings; - -using TagFuncList = List<(Func, bool>, Action>)>; -using TextFuncList = List<(Func, bool>, Action>)>; -using WhitespaceFuncList = List<(Func, bool>, Action>)>; - -public static class TraditionRules { - private static readonly string DEFAULTELEMENT = HaWeb.Settings.HTML.DEFAULTELEMENT; - - - // Parsing Rules for Letters - // General rules (for the lettertext column, also for parsing the marginals, awa tradtions and editreasons) - public static readonly TagFuncList OTagRules = new TagFuncList() { - ( ( x, _) => x.Name == "align" && x["pos"] == "center", (sb, tag, reader) => { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ALIGNCENTERCLASS)); - reader.State.mustwrap = (true, true); - } ), - ( ( x, _) => x.Name == "align" && x["pos"] == "right", (sb, tag, reader) => { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ALIGNRIGHTCLASS)); - reader.State.mustwrap = (true, true); - }), - ( ( x, _) => x.Name == "added", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ADDEDCLASS)) ), - ( ( x, _) => x.Name == "sal", (sb, tag, reader) => { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.SALCLASS)); - reader.State.mustwrap = (true, true); - }), - ( ( x, _) => x.Name == "aq", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.AQCLASS)) ), - ( ( x, _) => x.Name == "super", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.SUPERCLASS)) ), - ( ( x, _) => x.Name == "del", (sb, tag, reader) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.DELCLASS)) ), - ( ( x, _) => x.Name == "nr", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.NRCLASS)) ), - ( ( x, _) => x.Name == "note", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.NOTECLASS)) ), - ( ( x, _) => x.Name == "ul", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ULCLASS)) ), - ( ( x, _) => x.Name == "anchor" && !String.IsNullOrWhiteSpace(x["ref"]), (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ANCHORCLASS)) ), - ( ( x, _) => x.Name == "fn" && !String.IsNullOrWhiteSpace(x["index"]), (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.FNCLASS)) ), - ( ( x, _) => x.Name == "dul", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.DULCLASS)) ), - ( ( x, _) => x.Name == "ful", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.FULCLASS)) ), - ( ( x, _) => x.Name == "up", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.UPCLASS)) ), - ( ( x, _) => x.Name == "sub", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.SUBCLASS)) ), - ( ( x, _) => x.Name == "tul", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.TULCLASS)) ), - ( ( x, _) => x.Name == "insertion", (sb, tag,_) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.INSERTIONCLASS)) ), - ( ( x, _) => x.Name == "header", (sb, tag, reader) => { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.HEADERCLASS)); - reader.State.mustwrap = (true, true); - }), - ( ( x, _) => x.Name == "lemma", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.LEMMACLASS)) ), - ( ( x, _) => x.Name == "eintrag", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ENTRYCLASS)) ), - ( ( x, _) => x.Name == "titel", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.TITLECLASS)) ), - ( ( x, _) => x.Name == "bzg", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.BZGCLASS)) ), - ( ( x, _) => x.Name == "zh", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ZHCLASS)) ), - ( ( x, _) => x.Name == "emph", (sb, tag, _) => { sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.EMPHCLASS)); } ), - ( ( x, _) => x.Name == "app", (sb, tag, _) => { sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.APPCLASS)); } ), - ( ( x, _) => x.Name == "subsection", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.SUBSECTIONCLASS, tag["id"])) ), - ( ( x, _) => x.Name == "kommentar", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.COMMENTCLASS, tag["id"])) ), - ( ( x, _) => x.Name == "editreason", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.EDITREASONCLASS)) ), - ( ( x, _) => x.Name == "subsection", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.LETTERCLASS)) ), - ( ( x, _) => x.Name == "letterTradition", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.TRADITIONCLASS)) ), - ( ( x, _) => x.Name == "marginal", (sb, tag, reader) => { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.MARGINALCLASS, "m-" + tag["index"])); - reader.State.active_skipwhitespace = !reader.State.active_skipwhitespace; - }), - ( ( x, _) => x.Name == "tabs", (sb, tag, reader) => { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.TABLECLASS)); - // Tabs work with percentages, so we need a static width of the conttainer: - reader.State.minwidth = true; - } ), - ( ( x, _) => x.Name == "tab" && !String.IsNullOrWhiteSpace(x["value"]), (sb, tag, reader) => { - reader.State.mustwrap = (true, true); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.TABCLASS + tag["value"])); - }), - ( ( x, _) => x.Name == "edit" && !String.IsNullOrWhiteSpace(x["ref"]), (sb, tag, _) => { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.EDITMARKERCLASS, "ea-" + tag["ref"])); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - }), - ( ( x, _) => x.Name == "hand", (sb, tag, _) => { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.HANDMARKERCLASS, "ha-" + tag["ref"])); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.HANDCLASS)); - }), - - // Tradition specific: - ( ( x, _) => x.Name == "app", (sb, tag, _) => { sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.APPCLASS)); } ), - ( ( x, _) => x.Name == "ZHText", (sb, tag, reader) => { - reader.State.sb_tradition.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.TRADZHTEXTCLASS)); - reader.State.active_trad = true; - }) - }; - - public static readonly TagFuncList CTagRules = new TagFuncList() { - ( ( x, _) => x.Name == "align", (sb, tag, reader) => { - reader.State.mustwrap = (true, true); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - }), - ( ( x, _) => x.Name == "added", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "sal", (sb, tag, reader) => { - reader.State.mustwrap = (true, true); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - }), - ( ( x, _) => x.Name == "aq", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "super", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "del", (sb, tag, reader) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "nr", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "note", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "ul", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "anchor", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "fn", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "dul", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "up", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "ful", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "sub", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "tul", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "insertion", (sb, tag,_) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "header", (sb, tag, reader) => { - reader.State.mustwrap = (true, true); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - }), - ( ( x, _) => x.Name == "lemma", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "eintrag", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "titel", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "bzg", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "zh", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "emph", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "app", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "subsection", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "kommentar", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "editreason", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "subsection", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "letterTradition", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "marginal", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "tabs", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "tab", (sb, tag, reader) => { - reader.State.mustwrap = (true, true); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - }), - ( ( x, _) => x.Name == "hand", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - - // Tradition specifics - ( ( x, _) => x.Name == "app", (sb, tag, _) => sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)) ), - ( ( x, _) => x.Name == "ZHText", (sb, tag, reader) => { - reader.State.sb_tradition.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - reader.State.active_trad = false; - }) - }; - - public static readonly TextFuncList TextRules = new TextFuncList() { - ( ( x, _) => true, (sb, txt, reader) => { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.TEXTCLASS)); - if (reader.OpenTags.Where(x => x.Name == "del").Any()) - sb.Append(HttpUtility.HtmlEncode(txt.Value).Replace("–", "<" + DEFAULTELEMENT + " class=\"" + CSSClasses.CROSSEDDASHCLASS + "\">–")); - else - sb.Append(HttpUtility.HtmlEncode(txt.Value)); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - })}; - - public static readonly TagFuncList STagRules = new TagFuncList() { - ( (x, _) => x.Name == "page", (sb, tag, reader) => reader.State.currpage = tag["index"] ), - ( (x, _) => x.Name == "line", (sb, tag, reader) => { - if(!String.IsNullOrWhiteSpace(tag["tab"]) || !String.IsNullOrWhiteSpace(tag["type"])) { - reader.State.mustwrap = (false, true); - } - - // Tradition specific: only if in zhtext - if (reader.State.active_trad) { - // This is NOT the beginning of the text, so we set a br, and then, linecount - if(reader.State.currline != "-1") { - if (!reader.State.mustwrap.Item2) - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement("br", CSSClasses.ZHBREAKCLASS)); - else - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement("br")); - reader.State.mustwrap = (false, false); - - // Linecount - if(!String.IsNullOrWhiteSpace(tag["index"])) { - reader.State.currline = tag["index"]; - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ZHLINECOUNTCLASS, reader.State.currpage + "-" + reader.State.currline)); - - // Fall 1: Neue Seite - if (reader.State.currline == "1") { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ZHPAGECLASS, "")); - sb.Append("S. " + reader.State.currpage); - } - - // Fall 2: Neue Zeile, teilbar durch 5 - else if (Int32.TryParse(tag["index"], out var _) && Int32.Parse(tag["index"]) % 5 == 0) { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ZHLINECLASS, "")); - sb.Append(tag["index"]); - } - - // Fall 3: Neue Zeile, nicht teilbar durch 5, deswegen versteckt - else { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ZHLINECLASS + " " + CSSClasses.HIDDENZHLINECOUNT, "")); - sb.Append(tag["index"]); - } - - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - } - } else if (reader.State.currline == "-1" && !String.IsNullOrWhiteSpace(tag["index"])) { - reader.State.Startline = tag["index"]; - reader.State.currline = tag["index"]; - - // Tradition specifics: the first linecount must be shown - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.ZHLINECOUNTCLASS + " " + CSSClasses.FIRSTLINECLASS, reader.State.currpage + "-" + reader.State.currline)); - sb.Append("S. " + reader.State.currpage + " / " + reader.State.currline); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - } - - // Marginalien, only for lines with a linenumber - if(reader.State.Marginals != null && !String.IsNullOrWhiteSpace(tag["index"])) { - var margs = reader.State.Marginals.Where(x => x.Page == reader.State.currpage && x.Line == reader.State.currline); - if (margs != null && margs.Any()) - { - if(reader.State.ParsedMarginals == null) reader.State.ParsedMarginals = new List<(string, string, string)>(); - var sb2 = new StringBuilder(); - margs = margs.OrderBy(x => Int32.Parse(x.Index)); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.COMMENTMARKERCLASS, "ma-" + reader.State.currpage + "-" + reader.State.currline)); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.MARGINGALBOXCLASS)); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.MARGINALLISTCLASS)); - foreach (var marginal in margs) - { - // In Marginal, the Root-Element () is somehow parsed, - // so we don't need to enclose it in a seperate div. - var rd = reader.State.ReaderService.RequestStringReader(marginal.Element); - new HaWeb.HTMLParser.XMLHelper(reader.State, rd, sb, TraditionRules.OTagRules, null, TraditionRules.CTagRules, TraditionRules.TextRules, TraditionRules.WhitespaceRules); - new HaWeb.HTMLHelpers.LinkHelper(reader.State.Lib, rd, sb, false); - new HaWeb.HTMLParser.XMLHelper(reader.State, rd, sb2, TraditionRules.OTagRules, null, TraditionRules.CTagRules, TraditionRules.TextRules, TraditionRules.WhitespaceRules); - new HaWeb.HTMLHelpers.LinkHelper(reader.State.Lib, rd, sb2, false); - rd.Read(); - } - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - reader.State.ParsedMarginals.Add((reader.State.currpage, reader.State.currline, sb2.ToString())); - } - } - - // Line type=line - if(tag["type"] == "line") { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.LINELINECLASS)); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - reader.State.mustwrap = (false, true); - } - - // Line tab= - if(!String.IsNullOrWhiteSpace(tag["tab"])) { - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateElement(DEFAULTELEMENT, CSSClasses.LINEINDENTCLASS + tag["tab"])); - sb.Append(HaWeb.HTMLHelpers.TagHelpers.CreateEndElement(DEFAULTELEMENT)); - if (tag["tab"] != "1") reader.State.mustwrap = (false, true); - } - } - - // Tradition specific: only do this if not in ZHText - if (!reader.State.active_trad) { - sb.Append("
"); - } - } - )}; - - public static readonly WhitespaceFuncList WhitespaceRules = new WhitespaceFuncList() { - ( ( _, _) => true, ( sb, txt, reader) => { - if (reader.State.active_skipwhitespace) - sb.Append(txt.Value); - else - reader.State.active_skipwhitespace = !reader.State.active_skipwhitespace; - })}; -} \ No newline at end of file diff --git a/HaWeb/Settings/ParsingState/LetterState.cs b/HaWeb/Settings/ParsingState/TextState.cs similarity index 86% rename from HaWeb/Settings/ParsingState/LetterState.cs rename to HaWeb/Settings/ParsingState/TextState.cs index e531b5c..dd7a909 100644 --- a/HaWeb/Settings/ParsingState/LetterState.cs +++ b/HaWeb/Settings/ParsingState/TextState.cs @@ -9,7 +9,7 @@ using System.Collections.Immutable; using System.Linq; using System.Xml.Linq; -public class LetterState : HaWeb.HTMLParser.IState { +public class TextState : HaWeb.HTMLParser.IState { // Input internal ILibrary Lib; internal IReaderService ReaderService; @@ -43,12 +43,12 @@ public class LetterState : HaWeb.HTMLParser.IState { internal bool activelinecount; // Results - internal StringBuilder sb_lettertext; + internal StringBuilder sb; internal List<(string, string, string)>? ParsedMarginals; internal string? Startline; internal string? Startpage = null; - public LetterState(ILibrary lib, IReaderService readerService, Meta meta, IEnumerable? marginals, IEnumerable? hands, IEnumerable? edits) { + public TextState(ILibrary lib, IReaderService readerService, Meta meta, IEnumerable? marginals, IEnumerable? hands, IEnumerable? edits) { Lib = lib; ReaderService = readerService; Meta = meta; @@ -60,7 +60,7 @@ public class LetterState : HaWeb.HTMLParser.IState { public void SetupState() { - sb_lettertext = new StringBuilder(); + sb = new StringBuilder(); active_skipwhitespace = true; currline = "-1"; mustwrap = (false, false); diff --git a/HaWeb/Settings/ParsingState/TraditionState.cs b/HaWeb/Settings/ParsingState/TraditionState.cs deleted file mode 100644 index 04e4c83..0000000 --- a/HaWeb/Settings/ParsingState/TraditionState.cs +++ /dev/null @@ -1,55 +0,0 @@ -namespace HaWeb.Settings.ParsingState; -using System.Text; -using HaXMLReader.Interfaces; -using HaDocument.Models; -using HaDocument.Interfaces; -using System.Collections.Immutable; - -public class TraditionState : HaWeb.HTMLParser.IState { - - internal ILibrary Lib; - internal IReaderService ReaderService; - - internal IEnumerable? Marginals; - internal IEnumerable? Hands; - internal IEnumerable? Edits; - - // State - // Must we skip all of the upcoming whitespace? - internal bool active_skipwhitespace; - // Is there a semantically important line break, left or right of the current line? - internal (bool, bool) mustwrap; - // What's the current line? - internal string currline; - // What's the current page? - internal string currpage; - // Does the container need a min-widt, so percentages are useful (tables) - internal bool minwidth; - // Is there an active_zhtext - internal bool active_trad; - - internal StringBuilder sb_tradition; // Überlieferung - internal List<(string, string, string)>? ParsedMarginals; - internal string Startline; - - internal IReader rd_tradition; - - public TraditionState(ILibrary lib, IReader reader, IReaderService readerService, IEnumerable? marginals, IEnumerable? hands, IEnumerable? edits) { - Lib = lib; - rd_tradition = reader; - Marginals = marginals; - ReaderService = readerService; - Hands = hands; - Edits = edits; - SetupState(); - } - - public void SetupState() { - sb_tradition = new StringBuilder(); - - active_trad = false; - active_skipwhitespace = true; - currline = "-1"; - currpage = string.Empty; - } -} \ No newline at end of file diff --git a/HaWeb/Views/HKB/Dynamic/Briefe.cshtml b/HaWeb/Views/HKB/Dynamic/Briefe.cshtml index 8994a15..d3d9801 100644 --- a/HaWeb/Views/HKB/Dynamic/Briefe.cshtml +++ b/HaWeb/Views/HKB/Dynamic/Briefe.cshtml @@ -1,12 +1,12 @@ @model BriefeViewModel; @{ - var minwidth = ""; + @* var minwidth = ""; if (Model.MinWidth) minwidth = "ha-minwidth"; var minwidthtrads = ""; if (Model.MinWidthTrad) - minwidthtrads = "ha-minwidth"; -} + minwidthtrads = "ha-minwidth"; *@ +} @@ -14,16 +14,14 @@ @await Html.PartialAsync("/Views/Shared/_LetterHead.cshtml", (Model.MetaData, true, false))
- @if (!String.IsNullOrWhiteSpace(Model.ParsedText)) + @foreach (var app in Model.Texts) { - Brieftext - @if (Model.ParsedMarginals != null) - { - Stellenkommentar - } + @if (app.Category != Model.DefaultCategory) { @app.Category } } - Überlieferung & Textkritik - PDF + @if (Model.Texts != null && Model.Texts.Where(x => x.Category == Model.DefaultCategory).Any()) { + @Model.DefaultCategory + } + PDF
@if (Model.MetaData.Next != null || Model.MetaData.Prev != null) @@ -32,7 +30,7 @@ @if (Model.MetaData.Prev != null) { - @Model.MetaData.Prev.Value.Item1.Meta.Autopsic ◀ + @Model.MetaData.Prev.Value.Model.Meta.Autopsic ◀ } @@ -43,7 +41,7 @@ @if (Model.MetaData.Next != null) { - ▶ @Model.MetaData.Next.Value.Item1.Meta.Autopsic + ▶ @Model.MetaData.Next.Value.Model.Meta.Autopsic }
@@ -51,99 +49,94 @@ - -
-
-
- @if (Model.MetaData.Startline == "1") { -
S. @Html.Raw(Model.MetaData.Startpage)
- } else { -
@Html.Raw(Model.MetaData.Startpage)/@Html.Raw(Model.MetaData.Startline)
- } -
- @Html.Raw(@Model.ParsedText) - @* It's not beautiful but it's a hack to keep the last comment within parent element boundaries: *@ -
-
-
- - @if (Model.ParsedMarginals != null) +
+ @foreach (var app in Model.Texts) { -
- - @foreach (var marginal in Model.ParsedMarginals) - { - - - - + @if (app.Category != Model.DefaultCategory) { +
+ @foreach (var text in app.Item2) + { +
+ @if (app.Item2.Count > 1 && !String.IsNullOrWhiteSpace(text.ParsedText) && !String.IsNullOrWhiteSpace(text.Title) ) { +

@text.Title

} -
@marginal.Item1/@marginal.Item2@Html.Raw(@marginal.Item3)
-
+ @if (!String.IsNullOrWhiteSpace(text.ParsedText)) { @Html.Raw(text.ParsedText) } +
+ } +
+ } } -
-
- @if (Model.ParsedTradition != null) - { - @Html.Raw(Model.ParsedTradition) - } -
- - @if (Model.ParsedHands != null && Model.ParsedHands.Any()) - { -
-
Zusätze fremder Hand
-
- - @foreach (var hand in Model.ParsedHands) - { - - - - - } -
- @* Not beautiful, but here's whitespace in between otherwise *@ -
@hand.Item1
@if(!String.IsNullOrEmpty(hand.Item2)){
–@hand.Item2
} -
@Html.Raw(@hand.Item3)
+ @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) + { +
+ @if (!String.IsNullOrWhiteSpace(text.ParsedText) && !String.IsNullOrWhiteSpace(text.Title) ) { +

@text.Title

+ } + @if (!String.IsNullOrWhiteSpace(text.ParsedText)) { @Html.Raw(text.ParsedText) }
-
- } + } - @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.
-
- - @foreach (var edit in Model.ParsedEdits) - { - - - - - - } -
-
@edit.Item1
@if(!String.IsNullOrEmpty(edit.Item2)){
–@edit.Item2
} -
- @if (!String.IsNullOrWhiteSpace(edit.Item3)) - { - - @Html.Raw(@edit.Item3)] - - } - - @Html.Raw(@edit.Item4) -
+ @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)
+
+
+ } + + @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.
+
+
+ + @foreach (var edit in Model.ParsedEdits) + { + + + + + + } +
+
@edit.ParsedStart
@if(!String.IsNullOrEmpty(edit.ParsedEnd)){
–@edit.ParsedEnd
} +
+ @if (!String.IsNullOrWhiteSpace(edit.Text)) + { + + @Html.Raw(@edit.Preview)] + + } + + @Html.Raw(@edit.Text) +
+
+
+
+ }
} -
\ No newline at end of file diff --git a/HaWeb/Views/Shared/_HKBLayout.cshtml b/HaWeb/Views/Shared/_HKBLayout.cshtml index 8bfbd53..a6ca1d1 100644 --- a/HaWeb/Views/Shared/_HKBLayout.cshtml +++ b/HaWeb/Views/Shared/_HKBLayout.cshtml @@ -1,24 +1,21 @@  - + @await Html.PartialAsync("/Views/Shared/_Head.cshtml") - -
-
- @await Html.PartialAsync("/Views/Shared/_HKBMenu.cshtml") -
- @RenderBody() -
-
-
- @await Html.PartialAsync("/Views/Shared/_Footer.cshtml") -
-
- @await Html.PartialAsync("/Views/Shared/_ScrollButton.cshtml") + +
+ @await Html.PartialAsync("/Views/Shared/_HKBMenu.cshtml") +
+ @RenderBody() +
+
+ @await Html.PartialAsync("/Views/Shared/_Footer.cshtml")
+
+ @await Html.PartialAsync("/Views/Shared/_ScrollButton.cshtml") @await RenderSectionAsync("JavaScript", false) diff --git a/HaWeb/wwwroot/css/letter.css b/HaWeb/wwwroot/css/letter.css index 4bd603b..070ab85 100644 --- a/HaWeb/wwwroot/css/letter.css +++ b/HaWeb/wwwroot/css/letter.css @@ -24,19 +24,19 @@ @apply bg-slate-50 dark:bg-slate-900 dark:shadow-xl } - .ha-lettertext { - @apply bg-slate-50 dark:bg-slate-900 border-slate-200 sm:border-l-2 sm:dark:border-none + .ha-text { + @apply bg-slate-50 dark:bg-slate-900 border-slate-200 sm:border-l-2 sm:dark:border-none } .ha-marginals { @apply bg-slate-50 dark:bg-slate-900 } - .ha-additions { + .ha-defaulttab { @apply bg-slate-50 dark:bg-slate-900 } - .ha-additions .ha-edits .ha-editentries table tr:nth-child(even) { + .ha-defaulttab .ha-edits .ha-editentries table tr:nth-child(even) { @apply bg-slate-100 dark:bg-slate-900 } @@ -49,23 +49,19 @@ @apply sm:bg-slate-50 sm:dark:bg-slate-900 } - .ha-tradzhtext .ha-marginal::before, - .ha-lettertext .ha-marginal:before { + .ha-text .ha-marginal::before { @apply bg-hamannSlate-500 dark:bg-slate-500 } - .ha-tradzhtext .ha-marginalbox, - .ha-lettertext .ha-marginalbox { + .ha-text .ha-marginalbox { @apply bg-slate-50 dark:bg-slate-900 } - .ha-tradzhtext .ha-marginalbox.ha-expanded-box .ha-marginallist, - .ha-lettertext .ha-marginalbox.ha-expanded-box .ha-marginallist { + .ha-text .ha-marginalbox.ha-expanded-box .ha-marginallist { @apply shadow-md dark:shadow-lg pb-1 bg-slate-100 dark:bg-slate-600 } - .ha-tradzhtext .ha-btn-collapsed-box, - .ha-lettertext .ha-btn-collapsed-box { + .ha-text .ha-btn-collapsed-box { @apply text-slate-700 hover:text-slate-900 dark:text-white dark:hover:text-gray-200 } @@ -110,149 +106,35 @@ @apply inline-block caps-allpetite } - .ha-letterbody { - @apply flex flex-row flex-nowrap rounded-b-sm + .ha-tab { + @apply max-w-[52rem] pt-2 } - .ha-lettertext { - @apply max-w-[38rem] desktop:max-w-[52rem] sm:shrink-0 ml-4 sm:ml-12 px-4 pt-4 pb-8 relative flow-root font-serif leading-[1.48] numeric-mediaeval + .ha-tab .ha-appcontainer { + @apply ml-6 md:ml-16 mb-4 pb-3 font-serif numeric-mediaeval } - .ha-marginals { - @apply hidden max-w-3xl ml-4 md:ml-12 px-4 py-4 relative leading-[1.48] numeric-mediaeval + .ha-app { + } - .ha-marginals table td { - @apply align-text-top - } - - .ha-marginals .ha-marginalfromto { - @apply whitespace-nowrap text-sm font-semibold pr-4 - } - - .ha-marginals .ha-marginaltext .ha-bzg { - @apply inline - } - - .ha-marginals .ha-marginaltext a { - @apply underline decoration-dotted hover:decoration-solid - } - - .ha-additions .ha-tradition div { - @apply inline - } - - .ha-additions .ha-tradition { - @apply max-w-4xl - } - - .ha-additions { - @apply ml-4 md:ml-12 px-4 pt-4 pb-4 relative font-serif leading-[1.48] numeric-mediaeval - } - - .ha-additions .ha-app { - @apply !block font-bold pt-6 - } - - .ha-additions .ha-app + br { - @apply hidden - } - - .ha-additions .ha-tradition .ha-app:first-child { - @apply pt-0 - } - - .ha-additions .ha-tradition { - @apply hyphenate - } - - .ha-additions .ha-tradition .ha-tradzhtext { - @apply !flow-root font-serif relative w-fit -ml-4 pl-4 unhyphenate - } - - .ha-additions .ha-tradition a { - @apply !underline decoration-dotted hover:decoration-solid - } - - .ha-additions .ha-hands { - @apply pt-6 - } - - .ha-additions .ha-hands .ha-handstitle { + .ha-appcontainer h3 { @apply font-bold } - .ha-additions .ha-hands .ha-handentries .ha-handfrom, - .ha-additions .ha-hands .ha-handentries .ha-handto { - @apply inline text-sm font-semibold whitespace-nowrap + .ha-appcontainer a { + @apply underline decoration-dotted decoration-slate-800 hover:decoration-solid hover:decoration-slate-900 } - .ha-additions .ha-hands .ha-handentries .ha-handperson { - @apply inline pl-4 whitespace-nowrap + .ha-textcontainer { + @apply flex -ml-6 -mt-2 -mb-3 md:-ml-16 } - .ha-additions .ha-edits .ha-editstitle { - @apply font-bold + .ha-text { + @apply pt-2 pb-3 max-w-[38rem] desktop:max-w-[52rem] sm:shrink-0 ml-4 sm:ml-12 px-4 relative flow-root font-serif leading-[1.48] numeric-mediaeval } - .ha-additions .ha-edits .ha-editentries .ha-editfromto { - @apply whitespace-nowrap - } - - .ha-additions .ha-edits .ha-editentries .ha-editfrom, - .ha-additions .ha-edits .ha-editentries .ha-editto { - @apply inline text-sm font-semibold whitespace-nowrap - } - - .ha-additions .ha-edits .ha-editentries .ha-editreference { - @apply whitespace-nowrap - } - - .ha-additions .ha-edits .ha-editentries .ha-editreference div { - @apply inline - } - - .ha-additions .ha-edits { - @apply pt-6 max-w-4xl - } - - .ha-additions .ha-edits .ha-editstitle { - @apply font-bold - } - - .ha-additions .ha-edits .ha-editsinfo { - @apply pb-4 hyphenate - } - - .ha-additions .ha-edits .ha-editentries tr td { - @apply align-text-top - } - - .ha-additions .ha-edits .ha-editentries .ha-editreas div { - @apply inline font-sans - } - - .ha-additions .ha-edits .ha-editentries .ha-editfromto { - @apply pr-1 pl-1 - } - - .ha-additions .ha-edits .ha-editentries .ha-editreference { - @apply border-r-2 pl-1 pr-3 text-sm - } - - .ha-additions .ha-edits .ha-editentries .ha-editreference br { - @apply hidden - } - - .ha-additions .ha-edits .ha-editentries .ha-editreas { - @apply pl-3 w-full - } - - .ha-additions .ha-edits .ha-editentries .ha-editreas .ha-zh * { - @apply !font-serif - } - - .ha-lettertext div { + .ha-text div { @apply inline } @@ -261,7 +143,7 @@ } .ha-linecount { - @apply sm:absolute sm:right-full sm:mr-2 sm:text-right text-xs sm:mt-1 font-sans select-none whitespace-nowrap + @apply sm:absolute sm:right-full sm:mr-2 sm:text-right text-xs sm:mt-[.35rem] font-sans select-none whitespace-nowrap } .ha-linecount .ha-zhline { @@ -281,43 +163,117 @@ @apply !hidden } - .ha-tradzhtext .ha-marginal::before, - .ha-lettertext .ha-marginal::before { + .ha-text .ha-marginal::before { @apply absolute top-[0.2rem] bottom-[0.1rem] left-[0.1rem] w-0.5 content-[''] } - .ha-tradzhtext .ha-marginalbox, - .ha-lettertext .ha-marginalbox { + .ha-text .ha-marginalbox { @apply hidden select-none hover:select-auto hyphenate pl-1 md:inline-block absolute left-full ml-6 desktop:ml-16 mt-1 w-[16rem] desktop:w-[28rem] text-sm leading-tight rounded-sm font-sans } - .ha-tradzhtext .ha-marginalbox .ha-marginallist, - .ha-lettertext .ha-marginalbox .ha-marginallist { + .ha-text .ha-marginalbox .ha-marginallist { @apply text-sm leading-tight flex flex-wrap gap-x-6 pr-1 } - .ha-tradzhtext .ha-marginalbox .ha-marginallist .ha-marginal, - .ha-lettertext .ha-marginalbox .ha-marginallist .ha-marginal { + .ha-text .ha-marginalbox .ha-marginallist .ha-marginal { @apply pl-2 inline relative } - .ha-tradzhtext .ha-marginalbox .ha-marginallist .ha-marginal a, - .ha-lettertext .ha-marginalbox .ha-marginallist .ha-marginal a { + .ha-text .ha-marginalbox .ha-marginallist .ha-marginal a { @apply !underline decoration-dotted hover:decoration-solid } - .ha-tradzhtext .ha-marginalbox .ha-marginallist .ha-marginal, - .ha-lettertext .ha-marginalbox .ha-marginallist .ha-marginal, - .ha-tradzhtext .ha-marginalbox .ha-marginallist .ha-marginal *, - .ha-lettertext .ha-marginalbox .ha-marginallist .ha-marginal * { + .ha-text .ha-marginalbox .ha-marginallist .ha-marginal, + .ha-text .ha-marginalbox .ha-marginallist .ha-marginal * { @apply min-h-0 min-w-0 overflow-ellipsis overflow-hidden } - .ha-tradzhtext .ha-btn-collapsed-box, - .ha-lettertext .ha-btn-collapsed-box { + .ha-text .ha-btn-collapsed-box { @apply absolute left-full ml-4 desktop:ml-[3.4rem] hidden md:inline-block cursor-pointer leading-none mt-0.5 } + .ha-defaulttab .ha-hands { + @apply ml-6 md:ml-16 + } + + .ha-defaulttab .ha-hands .ha-handstitle { + @apply font-bold + } + + .ha-defaulttab .ha-hands .ha-handentries .ha-handfrom, + .ha-defaulttab .ha-hands .ha-handentries .ha-handto { + @apply inline text-sm font-semibold whitespace-nowrap + } + + .ha-defaulttab .ha-hands .ha-handentries .ha-handperson { + @apply inline pl-4 whitespace-nowrap + } + + .ha-defaulttab .ha-edits .ha-editstitle { + @apply font-bold + } + + .ha-defaulttab .ha-edits .ha-editentries .ha-editfromto { + @apply whitespace-nowrap + } + + .ha-defaulttab .ha-edits .ha-editentries .ha-editfrom, + .ha-defaulttab .ha-edits .ha-editentries .ha-editto { + @apply inline text-sm font-semibold whitespace-nowrap + } + + .ha-defaulttab .ha-edits .ha-editentries .ha-editreference { + @apply whitespace-nowrap + } + + .ha-defaulttab .ha-edits .ha-editentries .ha-editreference div { + @apply inline + } + + .ha-defaulttab .ha-edits { + @apply max-w-4xl ml-6 md:ml-16 + } + + .ha-defaulttab .ha-edits .ha-editentries { + @apply md:-mr-36 + } + + .ha-defaulttab .ha-edits .ha-editstitle { + @apply font-bold + } + + .ha-defaulttab .ha-edits .ha-editsinfo { + @apply pb-4 hyphenate + } + + .ha-defaulttab .ha-edits .ha-editentries tr td { + @apply align-text-top + } + + .ha-defaulttab .ha-edits .ha-editentries .ha-editreas div { + @apply inline font-sans + } + + .ha-defaulttab .ha-edits .ha-editentries .ha-editfromto { + @apply pr-1 pl-1 + } + + .ha-defaulttab .ha-edits .ha-editentries .ha-editreference { + @apply border-r-2 pl-1 pr-3 text-sm + } + + .ha-defaulttab .ha-edits .ha-editentries .ha-editreference br { + @apply hidden + } + + .ha-defaulttab .ha-edits .ha-editentries .ha-editreas { + @apply pl-3 w-full + } + + .ha-defaulttab .ha-edits .ha-editentries .ha-editreas .ha-zh * { + @apply !font-serif + } +/* .ha-minwidth .ha-tradzhtext, .ha-lettertext.ha-minwidth { @apply min-w-[44rem] desktop:min-w-[52rem] @@ -330,7 +286,7 @@ .ha-lettertext.ha-minwidth .ha-aligncenter { @apply absolute left-1/3 whitespace-nowrap -translate-x-1/2 - } + } */ } .ha-lettertext .ha-marginalbox:before { diff --git a/HaWeb/wwwroot/css/output.css b/HaWeb/wwwroot/css/output.css index 101c2ec..624f76f 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))}.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))}.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}}.hide{display:none!important}.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-text,.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:960px){.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:960px){.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;position:absolute;right:0}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}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:3rem;width:100%}@media (min-width:960px){.ha-static{padding-left:4rem;padding-right: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-add a{--tw-border-opacity:1;border-color:rgb(106 130 158/var(--tw-border-opacity));border-radius:.25rem;border-width:1px}.ha-register .ha-register-head .ha-register-add a:hover{--tw-border-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);border-color:rgb(50 112 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-register .ha-register-head .ha-register-add a .ha-register-add-plusbutton{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity));border-bottom-left-radius:.25rem;border-color:rgb(106 130 158/var(--tw-border-opacity));border-right-width:1px;border-top-left-radius:.25rem}.ha-register .ha-register-head .ha-register-add a:hover .ha-register-add-plusbutton{--tw-border-opacity:1;--tw-text-opacity:1;border-color:rgb(50 112 184/var(--tw-border-opacity));color:rgb(30 69 112/var(--tw-text-opacity))}.ha-register .ha-register-head .ha-register-add a .ha-register-add-text{margin-left:.25rem}.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:960px){.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{bottom:.33rem;display:inline-block;margin-left:.5rem;position:relative}.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;margin-bottom:1.5rem;margin-top:-1rem;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-size:1.25rem;font-weight:700;line-height:1.75rem;line-height:1;padding-bottom:.125rem;padding-left:.5rem;padding-right:.5rem}.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{font-family:Biolinum,sans-serif;margin-bottom:1.5rem;margin-top:-.25rem}.ha-register .ha-register-head form button,.ha-register .ha-register-head form input{border-width:1px;padding-left:.25rem;padding-right:.25rem}.ha-register .ha-register-head .ha-register-nav{font-family:Biolinum,sans-serif}.ha-register .ha-register-head .ha-register-nav a{display:inline-block;margin-right:.25rem;padding-left:.25rem;padding-right:.25rem}@media (min-width:960px){.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:960px){.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:960px){.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:960px){.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:960px){.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-lettertext{--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-lettertext{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}@media (min-width:700px){.ha-lettertext{border-left-width:2px}.dark .ha-lettertext{border-style:none}}.ha-marginals{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-marginals{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-additions{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-additions{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-additions .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-additions .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-lettertext .ha-marginal:before,.ha-tradzhtext .ha-marginal:before{--tw-bg-opacity:1;background-color:rgb(43 97 158/var(--tw-bg-opacity))}.dark .ha-lettertext .ha-marginal:before,.dark .ha-tradzhtext .ha-marginal:before{--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}.ha-lettertext .ha-marginalbox,.ha-tradzhtext .ha-marginalbox{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-lettertext .ha-marginalbox,.dark .ha-tradzhtext .ha-marginalbox{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-lettertext .ha-marginalbox.ha-expanded-box .ha-marginallist,.ha-tradzhtext .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-lettertext .ha-marginalbox.ha-expanded-box .ha-marginallist,.dark .ha-tradzhtext .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-lettertext .ha-btn-collapsed-box,.ha-tradzhtext .ha-btn-collapsed-box{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-lettertext .ha-btn-collapsed-box:hover,.ha-tradzhtext .ha-btn-collapsed-box:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-lettertext .ha-btn-collapsed-box,.dark .ha-tradzhtext .ha-btn-collapsed-box{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .ha-lettertext .ha-btn-collapsed-box:hover,.dark .ha-tradzhtext .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:960px){.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:960px){.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-letterbody{border-bottom-left-radius:.125rem;border-bottom-right-radius:.125rem;display:flex;flex-direction:row;flex-wrap:nowrap}.ha-lettertext{display:flow-root;font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;line-height:1.48;margin-left:1rem;max-width:38rem;padding:1rem 1rem 2rem;position:relative}@media (min-width:700px){.ha-lettertext{flex-shrink:0;margin-left:3rem}}@media (min-width:1190px){.ha-lettertext{max-width:52rem}}.ha-marginals{display:none;font-variant-numeric:oldstyle-nums;line-height:1.48;margin-left:1rem;max-width:48rem;padding:1rem;position:relative}@media (min-width:960px){.ha-marginals{margin-left:3rem}}.ha-marginals table td{vertical-align:text-top}.ha-marginals .ha-marginalfromto{font-size:.85rem;font-weight:600;line-height:1.25rem;padding-right:1rem;white-space:nowrap}.ha-marginals .ha-marginaltext .ha-bzg{display:inline}.ha-marginals .ha-marginaltext a{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-marginals .ha-marginaltext a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-additions .ha-tradition div{display:inline}.ha-additions .ha-tradition{max-width:56rem}.ha-additions{font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;line-height:1.48;margin-left:1rem;padding:1rem;position:relative}@media (min-width:960px){.ha-additions{margin-left:3rem}}.ha-additions .ha-app{display:block!important;font-weight:700;padding-top:1.5rem}.ha-additions .ha-app+br{display:none}.ha-additions .ha-tradition .ha-app:first-child{padding-top:0}.ha-additions .ha-tradition{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.ha-additions .ha-tradition .ha-tradzhtext{display:flow-root!important;font-family:Libertine,serif;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;margin-left:-1rem;padding-left:1rem;position:relative;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.ha-additions .ha-tradition a{-webkit-text-decoration-line:underline!important;text-decoration-line:underline!important;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-additions .ha-tradition a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-additions .ha-hands{padding-top:1.5rem}.ha-additions .ha-hands .ha-handstitle{font-weight:700}.ha-additions .ha-hands .ha-handentries .ha-handfrom,.ha-additions .ha-hands .ha-handentries .ha-handto{display:inline;font-size:.85rem;font-weight:600;line-height:1.25rem;white-space:nowrap}.ha-additions .ha-hands .ha-handentries .ha-handperson{display:inline;padding-left:1rem;white-space:nowrap}.ha-additions .ha-edits .ha-editentries .ha-editfromto{white-space:nowrap}.ha-additions .ha-edits .ha-editentries .ha-editfrom,.ha-additions .ha-edits .ha-editentries .ha-editto{display:inline;font-size:.85rem;font-weight:600;line-height:1.25rem;white-space:nowrap}.ha-additions .ha-edits .ha-editentries .ha-editreference{white-space:nowrap}.ha-additions .ha-edits .ha-editentries .ha-editreference div{display:inline}.ha-additions .ha-edits{max-width:56rem;padding-top:1.5rem}.ha-additions .ha-edits .ha-editstitle{font-weight:700}.ha-additions .ha-edits .ha-editsinfo{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;padding-bottom:1rem}.ha-additions .ha-edits .ha-editentries tr td{vertical-align:text-top}.ha-additions .ha-edits .ha-editentries .ha-editreas div{display:inline;font-family:Biolinum,sans-serif}.ha-additions .ha-edits .ha-editentries .ha-editfromto{padding-left:.25rem;padding-right:.25rem}.ha-additions .ha-edits .ha-editentries .ha-editreference{border-right-width:2px;font-size:.85rem;line-height:1.25rem;padding-left:.25rem;padding-right:.75rem}.ha-additions .ha-edits .ha-editentries .ha-editreference br{display:none}.ha-additions .ha-edits .ha-editentries .ha-editreas{padding-left:.75rem;width:100%}.ha-additions .ha-edits .ha-editentries .ha-editreas .ha-zh *{font-family:Libertine,serif!important}.ha-lettertext 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:.25rem;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-lettertext .ha-marginal:before,.ha-tradzhtext .ha-marginal:before{--tw-content:"";bottom:.1rem;content:var(--tw-content);left:.1rem;position:absolute;top:.2rem;width:.125rem}.ha-lettertext .ha-marginalbox,.ha-tradzhtext .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-lettertext .ha-marginalbox:hover,.ha-tradzhtext .ha-marginalbox:hover{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}@media (min-width:960px){.ha-lettertext .ha-marginalbox,.ha-tradzhtext .ha-marginalbox{display:inline-block}}@media (min-width:1190px){.ha-lettertext .ha-marginalbox,.ha-tradzhtext .ha-marginalbox{margin-left:4rem;width:28rem}}.ha-lettertext .ha-marginalbox .ha-marginallist,.ha-tradzhtext .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-lettertext .ha-marginalbox .ha-marginallist .ha-marginal,.ha-tradzhtext .ha-marginalbox .ha-marginallist .ha-marginal{display:inline;padding-left:.5rem;position:relative}.ha-lettertext .ha-marginalbox .ha-marginallist .ha-marginal a,.ha-tradzhtext .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-lettertext .ha-marginalbox .ha-marginallist .ha-marginal a:hover,.ha-tradzhtext .ha-marginalbox .ha-marginallist .ha-marginal a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-lettertext .ha-marginalbox .ha-marginallist .ha-marginal,.ha-lettertext .ha-marginalbox .ha-marginallist .ha-marginal *,.ha-tradzhtext .ha-marginalbox .ha-marginallist .ha-marginal,.ha-tradzhtext .ha-marginalbox .ha-marginallist .ha-marginal *{min-height:0;min-width:0;overflow:hidden;text-overflow:ellipsis}.ha-lettertext .ha-btn-collapsed-box,.ha-tradzhtext .ha-btn-collapsed-box{cursor:pointer;display:none;left:100%;line-height:1;margin-left:1rem;margin-top:.125rem;position:absolute}@media (min-width:960px){.ha-lettertext .ha-btn-collapsed-box,.ha-tradzhtext .ha-btn-collapsed-box{display:inline-block}}@media (min-width:1190px){.ha-lettertext .ha-btn-collapsed-box,.ha-tradzhtext .ha-btn-collapsed-box{margin-left:3.4rem}}.ha-lettertext.ha-minwidth,.ha-minwidth .ha-tradzhtext{min-width:44rem}@media (min-width:1190px){.ha-lettertext.ha-minwidth,.ha-minwidth .ha-tradzhtext{min-width:52rem}}.ha-lettertext.ha-minwidth .ha-alignright,.ha-minwidth .ha-tradzhtext .ha-alignright{float:right;margin-right:20%}.ha-lettertext.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-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;height:100%;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:960px){.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:960px){.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:960px){.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:960px){.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:960px){.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:960px){.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:960px){.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:960px){.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:960px){.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}.absolute{position:absolute}.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{bottom:0}.clear-both{clear:both}.mx-auto{margin-left:auto;margin-right:auto}.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}.\!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}.flow-root{display:flow-root}.hidden{display:none}.h-10{height:2.5rem}.h-full{height:100%}.h-8{height:2rem}.min-h-screen{min-height:100vh}.w-10{width:2.5rem}.\!w-full{width:100%!important}.w-full{width:100%}.w-8{width:2rem}.w-auto{width:auto}.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-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))}.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))}.\!p-2{padding:.5rem!important}.px-12{padding-left:3rem;padding-right:3rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.px-9{padding-left:2.25rem;padding-right:2.25rem}.\!px-3{padding-left:.75rem!important;padding-right:.75rem!important}.py-3{padding-bottom:.75rem;padding-top:.75rem}.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}.pb-1{padding-bottom:.25rem}.pb-24{padding-bottom:6rem}.pb-3{padding-bottom:.75rem}.pr-3{padding-right:.75rem}.pb-4{padding-bottom:1rem}.pt-4{padding-top:1rem}.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-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))}.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-md{--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)}.dark .dark\:shadow-md,.dark .dark\:shadow-xl{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.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)}@media (min-width:700px){.sm\:inline{display:inline}.sm\:hidden{display:none}}@media (min-width:960px){.md\:mb-0{margin-bottom:0}.md\:mt-4{margin-top:1rem}.md\:inline{display:inline}.md\:flex{display:flex}.md\:hidden{display:none}.md\:h-16{height:4rem}.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\: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))}.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))}.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:960px){.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:960px){.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;position:absolute;right:0}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}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:3rem;width:100%}@media (min-width:960px){.ha-static{padding-left:4rem;padding-right: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-add a{--tw-border-opacity:1;border-color:rgb(106 130 158/var(--tw-border-opacity));border-radius:.25rem;border-width:1px}.ha-register .ha-register-head .ha-register-add a:hover{--tw-border-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);border-color:rgb(50 112 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-register .ha-register-head .ha-register-add a .ha-register-add-plusbutton{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity));border-bottom-left-radius:.25rem;border-color:rgb(106 130 158/var(--tw-border-opacity));border-right-width:1px;border-top-left-radius:.25rem}.ha-register .ha-register-head .ha-register-add a:hover .ha-register-add-plusbutton{--tw-border-opacity:1;--tw-text-opacity:1;border-color:rgb(50 112 184/var(--tw-border-opacity));color:rgb(30 69 112/var(--tw-text-opacity))}.ha-register .ha-register-head .ha-register-add a .ha-register-add-text{margin-left:.25rem}.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:960px){.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{bottom:.33rem;display:inline-block;margin-left:.5rem;position:relative}.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;margin-bottom:1.5rem;margin-top:-1rem;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-size:1.25rem;font-weight:700;line-height:1.75rem;line-height:1;padding-bottom:.125rem;padding-left:.5rem;padding-right:.5rem}.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{font-family:Biolinum,sans-serif;margin-bottom:1.5rem;margin-top:-.25rem}.ha-register .ha-register-head form button,.ha-register .ha-register-head form input{border-width:1px;padding-left:.25rem;padding-right:.25rem}.ha-register .ha-register-head .ha-register-nav{font-family:Biolinum,sans-serif}.ha-register .ha-register-head .ha-register-nav a{display:inline-block;margin-right:.25rem;padding-left:.25rem;padding-right:.25rem}@media (min-width:960px){.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:960px){.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:960px){.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:960px){.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:960px){.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-text{border-left-width:2px}.dark .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:960px){.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:960px){.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;padding-top:.5rem}.ha-tab .ha-appcontainer{font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;margin-bottom:1rem;margin-left:1.5rem;padding-bottom:.75rem}@media (min-width:960px){.ha-tab .ha-appcontainer{margin-left:4rem}}.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-bottom:-.75rem;margin-left:-1.5rem;margin-top:-.5rem}@media (min-width:960px){.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:960px){.ha-text .ha-marginalbox{display:inline-block}}@media (min-width:1190px){.ha-text .ha-marginalbox{margin-left:4rem;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:.125rem;position:absolute}@media (min-width:960px){.ha-text .ha-btn-collapsed-box{display:inline-block}}@media (min-width:1190px){.ha-text .ha-btn-collapsed-box{margin-left:3.4rem}}.ha-defaulttab .ha-hands{margin-left:1.5rem}@media (min-width:960px){.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:960px){.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-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;height:100%;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:960px){.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:960px){.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:960px){.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:960px){.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:960px){.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:960px){.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:960px){.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:960px){.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:960px){.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}.absolute{position:absolute}.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{bottom:0}.clear-both{clear:both}.mx-auto{margin-left:auto;margin-right:auto}.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}.\!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}.h-10{height:2.5rem}.h-full{height:100%}.h-8{height:2rem}.min-h-screen{min-height:100vh}.w-10{width:2.5rem}.\!w-full{width:100%!important}.w-full{width:100%}.w-8{width:2rem}.w-auto{width:auto}.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-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))}.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))}.\!p-2{padding:.5rem!important}.px-12{padding-left:3rem;padding-right:3rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.px-9{padding-left:2.25rem;padding-right:2.25rem}.\!px-3{padding-left:.75rem!important;padding-right:.75rem!important}.py-3{padding-bottom:.75rem;padding-top:.75rem}.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}.pb-1{padding-bottom:.25rem}.pr-3{padding-right:.75rem}.pb-3{padding-bottom:.75rem}.pb-24{padding-bottom:6rem}.pb-4{padding-bottom:1rem}.pt-4{padding-top:1rem}.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-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))}.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-md{--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)}.dark .dark\:shadow-md,.dark .dark\:shadow-xl{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.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)}@media (min-width:700px){.sm\:inline{display:inline}.sm\:hidden{display:none}}@media (min-width:960px){.md\:mb-0{margin-bottom:0}.md\:mt-4{margin-top:1rem}.md\:inline{display:inline}.md\:flex{display:flex}.md\:hidden{display:none}.md\:h-16{height:4rem}.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\: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/css/shared.css b/HaWeb/wwwroot/css/shared.css index 7814d57..be1267b 100644 --- a/HaWeb/wwwroot/css/shared.css +++ b/HaWeb/wwwroot/css/shared.css @@ -78,7 +78,7 @@ @apply !font-serif !text-xs !font-semibold } - .ha-text { + .ha-literal { @apply inline } diff --git a/HaWeb/wwwroot/js/briefe.js b/HaWeb/wwwroot/js/briefe.js index 2044494..1e65695 100644 --- a/HaWeb/wwwroot/js/briefe.js +++ b/HaWeb/wwwroot/js/briefe.js @@ -1,92 +1,23 @@ -// Code specifically for the letter view -const showhidebutton = function ( - buttonid, - divid, - buttonlist, - divlist, - starthidden -) { - let button = document.getElementById(buttonid); - let div = document.getElementById(divid); +// // Code specifically for the letter view +let activetab = null; +let activetabbtn = null; +let tabbtnlist = document.querySelectorAll(".ha-tabbtn"); +let tablist = document.querySelectorAll(".ha-tab"); - if (starthidden && div !== null) { - div.classList.add("hide"); - } +for (let i = 0; i < tabbtnlist.length; i++) { + tablist[i].classList.add("hidden"); + tabbtnlist[i].addEventListener("click", () => { + if (activetab != null) + activetab.classList.add("hidden"); + if (activetabbtn != null) + activetabbtn.classList.remove("active"); - if (!starthidden && button !== null) { - button.classList.add("active"); - } + tablist[i].classList.remove("hidden"); + tabbtnlist[i].classList.add("active"); + activetab = tablist[i]; + activetabbtn = tabbtnlist[i]; + }); +} - if (button !== null) { - button.addEventListener("click", function () { - for (let btn of buttonlist) { - let inactivebutton = document.getElementById(btn); - if (inactivebutton !== null) inactivebutton.classList.remove("active"); - } - - for (let element of divlist) { - let hiddenelement = document.getElementById(element); - if (hiddenelement !== null) { - hiddenelement.classList.add("hide") - hiddenelement.classList.remove("flow-root"); - }; - } - - if (button !== null) button.classList.add("active"); - if (div !== null) { - div.classList.add("flow-root"); - div.classList.remove("hide"); - } - }); - } -}; - -// Letter View: Show / Hide Tabs -let buttonlist = ["ha-lettertextbtn", "ha-additionsbtn", "ha-marginalsbtn"]; -let divlist = ["ha-lettertext", "ha-additions", "ha-marginals"]; - -if (this.document.getElementById("ha-lettertextbtn") !== null) { - showhidebutton( - "ha-lettertextbtn", - "ha-lettertext", - buttonlist, - divlist, - false - ); - showhidebutton( - "ha-additionsbtn", - "ha-additions", - buttonlist, - divlist, - true - ); - showhidebutton( - "ha-marginalsbtn", - "ha-marginals", - buttonlist, - divlist, - true - ); -} else { - showhidebutton( - "ha-lettertextbtn", - "ha-lettertext", - buttonlist, - divlist, - true - ); - showhidebutton( - "ha-additionsbtn", - "ha-additions", - buttonlist, - divlist, - false - ); - showhidebutton( - "ha-marginalsbtn", - "ha-marginals", - buttonlist, - divlist, - true - ); -} \ No newline at end of file +if (tabbtnlist.length > 0) + tabbtnlist[0].click(); \ No newline at end of file diff --git a/HaWeb/wwwroot/js/marginals.js b/HaWeb/wwwroot/js/marginals.js index 7b5150b..52e6908 100644 --- a/HaWeb/wwwroot/js/marginals.js +++ b/HaWeb/wwwroot/js/marginals.js @@ -133,11 +133,11 @@ const overlappingcollapsebox = function (selector, hoverfunction) { const marginalboxwidthset = function () { let lt = document.getElementById("ha-letterbody"); if (lt !== null) { - let mg = lt.querySelectorAll(".ha-lettertext .ha-marginalbox"); + let mg = lt.querySelectorAll(".ha-text .ha-marginalbox"); if (mg.length > 0) { let ltbcr = lt.getBoundingClientRect(); let mgbcr = mg[0].getBoundingClientRect(); - let nw = ltbcr.right - mgbcr.left - 18; + let nw = ltbcr.right - mgbcr.left - 20; for (let element of mg) { element.style.width = nw + "px"; @@ -152,14 +152,14 @@ const collapseboxes = function () { overlappingcollapsebox(".ha-neuzeit .ha-letlinks", true); overlappingcollapsebox(".ha-forschung .ha-letlinks", true); overlappingcollapsebox(".ha-commentlist .ha-letlinks", true); - overlappingcollapsebox(".ha-lettertext .ha-marginalbox", true); + overlappingcollapsebox(".ha-text .ha-marginalbox", true); }; marginalboxwidthset(); collapseboxes(); -var doit; -this.window.addEventListener("resize", function () { - this.clearTimeout(doit); - marginalboxwidthset(); - doit = this.setTimeout(collapseboxes, 250); -}); +// var doit; +// this.window.addEventListener("resize", function () { +// this.clearTimeout(doit); +// marginalboxwidthset(); +// doit = this.setTimeout(collapseboxes, 250); +// });