commit 553247cdfb5382da1893e1a91a637ee38e0d985d Author: maik Date: Tue Aug 18 15:32:41 2026 +0200 erster brauchbarer stand. diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..361cc1c --- /dev/null +++ b/.dockerignore @@ -0,0 +1,13 @@ +# Build-Artefakte (werden im Container frisch erzeugt) +public/ +resources/ +.hugo_build.lock + +# Nicht veröffentlichte Design-Quellen (OTF/EPS/Prototyp) – für den Build unnötig +themes/op-dz/design-source/ + +# VCS / OS / Editor +.git/ +.gitignore +.DS_Store +*.log diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..5a57668 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,13 @@ +*.jpg filter=lfs diff=lfs merge=lfs -text +*.jpeg filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.gif filter=lfs diff=lfs merge=lfs -text +*.webp filter=lfs diff=lfs merge=lfs -text +*.ico filter=lfs diff=lfs merge=lfs -text +*.woff filter=lfs diff=lfs merge=lfs -text +*.woff2 filter=lfs diff=lfs merge=lfs -text +*.otf filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.eot filter=lfs diff=lfs merge=lfs -text +*.eps filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6693baa --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +# Hugo build artefacts +/public/ +/resources/_gen/ +.hugo_build.lock + +# OS / Editor +.DS_Store +Thumbs.db diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e6418a1 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +# syntax=docker/dockerfile:1 + +# ---- Stage 1: Hugo-Build (Assets sind lokal gevendort, kein Netz nötig) ---- +FROM hugomods/hugo:exts AS build +WORKDIR /src +COPY . . +# baseURL wirkt nur auf canonical/sitemap; für Produktion echte Domain setzen. +ARG HUGO_BASEURL=https://map.offener-prozess.de/ +RUN hugo --gc --minify --baseURL "${HUGO_BASEURL}" + +# ---- Stage 2: statisches Ausliefern mit nginx ---- +FROM nginx:1.27-alpine +COPY --from=build /src/public /usr/share/nginx/html +COPY deploy/nginx.conf /etc/nginx/conf.d/default.conf +EXPOSE 80 +HEALTHCHECK --interval=30s --timeout=3s --start-period=5s \ + CMD wget -qO- http://127.0.0.1/ >/dev/null 2>&1 || exit 1 diff --git a/README.md b/README.md new file mode 100644 index 0000000..0f6d35f --- /dev/null +++ b/README.md @@ -0,0 +1,84 @@ +# Offener Prozess – Interaktive Karte (Hugo) + +Hugo-Neubau von [map.offener-prozess.de](https://map.offener-prozess.de/) +(Ablösung des alten WordPress/Listable-Setups). Interaktive Karte der +Schauplätze des NSU-Komplexes mit **Leaflet + OpenStreetMap** (statt der alten +Google-Maps-/Mapbox-Einbindung), im Layout ans Original angelehnt (Split-View: +Kartenliste links, Karte rechts), umgesetzt mit dem Theme +[`themes/op-dz/`](themes/op-dz/) (UIkit 3, Schrift *ABC Favorit*, alle Assets +lokal/DSGVO-konform). + +## Starten + +```bash +hugo server # Vorschau: http://localhost:1313 +hugo --gc --minify # Produktions-Build nach ./public +``` + +Voraussetzung: **Hugo Extended ≥ 0.116**. + +## Inhalt + +**118 Schauplätze** wurden von der Altseite importiert (112 mit Koordinaten, +6 ohne – erscheinen als Cards, aber nicht als Marker), verteilt auf **18 +Kategorien** (Mordanschläge, Raubüberfälle, Aufenthaltsorte, Wohnungen des Trios, +Fanzines, Unterstützende, Behörden …). Texte, Adressen, Koordinaten, Quellen und +Bilder stammen von map.offener-prozess.de. + +## Struktur + +``` +hugo.toml Konfiguration: Taxonomie, Menüs, Kartenkacheln, Params +data/kategorien.yaml Kategorie → Markerfarbe (Reihenfolge = Filter-Reihenfolge) +content/ + _index.md Startseite (= Karten-Explorer) + schauplaetze// je Schauplatz ein Page-Bundle (index.md + optional cover.*) + so-funktionierts.md, ueber.md +layouts/index.html Startseite → Explorer-Partial +themes/op-dz/ + layouts/partials/ + explorer.html Split-View (Liste + Suche + Filter + Karte) + karte.html Karten-Container + eingebettete Marker-Daten (JSON) + schauplatz-card.html gelbe Card (mit data-Attributen für JS-Filter) + layouts/schauplaetze/ list.html (Explorer) + single.html (Detail mit Sidebar) + layouts/_default/term.html Kategorie-Seite (gefilterter Explorer) + assets/js/map.js Leaflet: Cluster, Kategorie-Filter, Textsuche, Card↔Marker + static/vendor/ leaflet, markercluster, uikit (alle lokal) +``` + +## Einen Schauplatz anlegen + +Neuer Ordner `content/schauplaetze//index.md`: + +```yaml +--- +title: "Titel" +subtitle: "Namen / Kurzkontext" +date: 2004-02-25 +kategorien: ["Mordanschläge"] # muss zu data/kategorien.yaml passen +lat: 54.1104949 +lng: 12.1544098 +address: "Straße Nr, PLZ Ort" +datum: "25.02.2004" # optionales Anzeige-Datum in der Sidebar +quelle: "Quellenangabe" +featured: true # optional → „Tipp!"-Markierung +--- + +Fließtext … +``` + +Der Punkt erscheint automatisch auf allen Karten (Start, Kategorie) und bekommt +eine Detailseite mit Mini-Karte + „Anfahrt per OpenStreetMap". Ein Bild +`cover.jpg` im selben Ordner wird als Card-/Kopfbild genutzt. + +## Karte / Kacheln + +Standard: OpenStreetMap. Eigener Tile-Server (OSM-Usage-Policy!) in `hugo.toml` +unter `[params.map]` (`tileURL`, `attribution`). 118 Marker werden per +Leaflet.markercluster gebündelt; Farbe = Kategorie (`data/kategorien.yaml`). + +## Erneut importieren + +Der Import-Script (WP-Job-Manager-AJAX `jm-ajax/get_listings/` + Detailseiten) +liegt unter `scratchpad/import.py`. Erneut ausführbar, überschreibt die Bundles +unter `content/schauplaetze/` (das `_index.md` bleibt). diff --git a/Todo.md b/Todo.md new file mode 100644 index 0000000..566fdb6 --- /dev/null +++ b/Todo.md @@ -0,0 +1,13 @@ +Todo + + +- + +- Ich möchte dass du Externe Quellen (Links) in Externe Quellen umbenennst und die Links ausführbar machst, sie sollen in einen neuen Tab geöffnet werden. Ich möchte der website aber einen URL parameter mitgeben können zb kiosk=true dann sollen die links nicht anklickbar sein. + +- Ich möchte dass die website keine externen cdn nutzt auch nicht von open street maps, kannst du die karte von deutschland lokal mit ins repo legen ? + +- Ich möchte dass du dass Hugothemplate so anlegst dass es mehrsprachig ist erstmal Deutsch Englisch bereite es aber so vor dass ich später noch andere sprachen hinzufügen kann + + +du kannst dich mal mit ssh key nsudz auf root@it.nsudz.de einloggen und projekt nach ~/docker/map-offenerprozess-hugo schieben und dann die docker compose ausführen ... \ No newline at end of file diff --git a/content/_index.de.md b/content/_index.de.md new file mode 100644 index 0000000..3f83b53 --- /dev/null +++ b/content/_index.de.md @@ -0,0 +1,10 @@ +--- +title: "Offener Prozess – Interaktive Karte" +heroTitle: 'Die Spuren des NSU-Komplexes' +heroLead: "Eine interaktive Dokumentation von Schauplätzen des NSU-Komplexes" +--- + +Diese Karte macht sichtbar, wo sich der NSU bewegte, wer ihn unterstützte und wo +seine Taten Menschen trafen. Wählen Sie über die Filter eine Kategorie oder +klicken Sie direkt auf einen Punkt, um mehr über den jeweiligen Schauplatz zu +erfahren. diff --git a/content/_index.en.md b/content/_index.en.md new file mode 100644 index 0000000..0798186 --- /dev/null +++ b/content/_index.en.md @@ -0,0 +1,9 @@ +--- +title: "Offener Prozess – Interactive Map" +heroTitle: 'The traces of the NSU complex' +heroLead: "An interactive documentation of sites of the NSU complex" +--- + +This map makes visible where the NSU moved, who supported it and where its crimes +affected people. Use the filters to choose a category, or click a point directly +to learn more about the respective location. diff --git a/content/datenschutz.de.md b/content/datenschutz.de.md new file mode 100644 index 0000000..a42d5f9 --- /dev/null +++ b/content/datenschutz.de.md @@ -0,0 +1,393 @@ +--- +title: "Datenschutzinformation" +--- + +Nachfolgend möchten wir Sie über unsere Datenschutzerklärung informieren. Sie finden hier Informationen über die Erhebung und Verwendung persönlicher Daten bei der Nutzung unserer Webseite. Wir beachten dabei das für Deutschland geltende Datenschutzrecht. Sie können diese Erklärung jederzeit auf unserer Webseite abrufen. + +Verantwortlicher im Sinne der Datenschutzgrundverordnung (DSGVO) ist: + +Offener Prozess gGmbH +Zietenstraße 2a +09130 Chemnitz + +**E-Mail:** info@offener-prozess.de + +**Vertreten durch die Geschäftsführerinnen:** +Dr. Nora Krzywinski, Esther Gerstenberg + +Wir bemühen uns, eine geschlechtergerechte Sprache zu verwenden. Teilweise verwenden wir für die vereinfachte Leseführung nur die männliche Form von Begriffen wie Benutzer statt Benutzende, Benutzer:innen oder Benutzerinnen und Benutzer. Wenn wir nur die männliche Form verwenden, soll der Begriff dennoch alle Geschlechter mit einschließen. + +Wir fassen an dieser Stelle einmal die allgemeinen Rechte zusammen, die Ihnen nach der DSGVO mit Blick auf Ihre bei uns verarbeiteten personenbezogenen Daten zustehen. Für die Erklärung der Rechtsbegriffe verweisen wir auf die geltenden Definitionen in der DSGVO (siehe dort Artikel 4). Sollte etwas unverständlich bleiben, fragen Sie gerne bei uns nach. + +Sie dürfen sich bei einer Aufsichtsbehörde für den Datenschutz, z.B. der Berliner Datenschutzbeauftragten, über datenschutzrechtliche Sachverhalte bei uns beschweren. + +Jede Form der Verarbeitung personenbezogener Daten setzt eine Rechtsgrundlage voraus, die uns diese Verarbeitung gestattet. Die Rechtsgrundlage ergibt sich in erster Linie aus dem Zweck, zu dem die Daten verarbeitet werden. Die Rechtmäßigkeit innerhalb einer Rechtsgrundlage bemisst sich regelmäßig nach dem konkreten Umfang der Datenverarbeitung und nach den von uns ergriffenen Maßnahmen zum Schutz Ihrer Daten. + +Rechtsgrundlagen für die Datenverarbeitung ergeben sich aus Artikel 6 Absatz 1 DSGVO und für besonders schützenswerte Daten wie z.B. Gesundheitsdaten aus Artikel 9 Absatz 2 DSGVO. Diese beiden Vorschriften nennen die Vorbereitung oder Erfüllung von vertraglichen, gesetzlichen oder auch gesellschaftlichen Pflichten als wichtigste Rechtsgrundlagen für die Datenverarbeitung. Daneben erfolgen viele Datenverarbeitungen in unserem berechtigten Interesse, wenn nicht mit Blick auf die konkreten Umstände die Interessen der Betroffenen überwiegen. Sollte eine der zuvor genannten Arten von Rechtsgrundlage einschlägig sein, bedarf die Verarbeitung keiner weiteren Zustimmung von Ihnen. + +Außerdem kann eine Datenverarbeitung auf Grundlage einer Einwilligung von Ihnen erfolgen (Artikel 7 DSGVO) oder für Personen unter 16 Jahren bei der Nutzung von Diensten der Informationsgesellschaft (z.B. Internetseiten, Onlinespielen, Social-Media-Plattformen) von den Kindern bzw. Jugendlichen in Verbindung mit der Zustimmung eines Erziehungsberechtigten (Artikel 8 DSGVO). + +**Wir weisen an dieser Stelle ausdrücklich darauf hin, dass sich keins unserer einwilligungsbedürftigen Onlineangebote an Personen unter 16 Jahren richtet.** + +Teilweise ergibt sich unsere Pflicht, Sie um Ihre Einwilligung zu bitten, nicht oder nicht allein aus der DSGVO sondern aus dem Telekommunikation-Digitale-Dienste-Datenschutzgesetz (TDDDG) oder dem Gesetz gegen den unlauteren Wettbewerb (UWG). Die Pflichten aus diesen Gesetzen haben wir berücksichtigt, ohne im Folgenden ausdrücklich darauf hinzuweisen. + +Findet eine Datenübertragung in einen Staat außerhalb des Europäischen Wirtschaftsraums (EWR) statt, stellen wir sicher, dass der Datenschutz im Sinne der Artikel 44 – 49 DSGVO gesichert ist. Eine solche Übertragung nach außerhalb des EWRs nennt man im Datenschutzrecht einen Drittstaatentransfer. + +Cookies sind eine bestimmte Form von Texteinträgen, die von Ihrem Browser auf Ihrem Gerät gespeichert werden, wenn Sie eine Internetseite aufrufen. In einem Cookie können unterschiedliche Informationen gespeichert werden. Teilweise speichert ein Cookie nur ein Ja oder Nein („true“ oder „false“) oder eine Landeskennung wie „de“ für deutsche Sprache; teilweise wird eine Zeichenfolge gespeichert, die eine eindeutige Identifizierung des Browsers beim erneuten Aufrufen der Internetseite ermöglicht (eine sogenannte Cookie-ID). + +Das Recht Cookies zu setzen bemisst sich nicht allein nach der DSGVO, sondern primär nach § 25 TDDDG. Die Norm unterscheidet zwischen für den Betrieb des Onlineangebots unbedingt erforderlichen (essenziellen) Cookies und solchen, die es nicht sind. Essenzielle Cookies dürfen auch ohne Einwilligung gesetzt werden, nicht-essenzielle Cookies setzen jedoch immer ein Einverständnis voraus – selbst wenn das nach der DSGVO nicht erforderlich ist (z.B. wenn ein berechtigtes Interesse als Rechtsgrundlage vorliegt oder die Daten nicht personenbezogen sind). + +Bevor wir nicht-essenzielle Cookies auf Ihrem Endgerät speichern, fragen wir Sie entsprechend den Vorgaben des § 25 TDDDG nach Ihrem Einverständnis. + +Der Zweck eines jeden Cookies sowie die Rechtsgrundlage für dessen Einsatz nach der DSGVO ergeben sich aus der nachfolgenden Beschreibung der einzelnen Datenverarbeitung. + +Ihnen stehen verschiedene Wege offen, die Annahme von Cookies auf Ihrem Gerät zu unterbinden: + +Der Standardfall bei vielen Onlineangeboten ist, dass Sie beim Aufruf des Angebots über einen Einwilligungsmanager entscheiden, welche Cookies Sie zulassen und welche nicht. Da wir unsere Seiten ohne einwilligungspflichtige Cookies betreiben, verzichten wir auf einen für unsere Angebote unnötigen Einwilligungsmanager. + +Grundsätzlich können Sie Ihren Browser so einstellen, dass er nie Cookies annimmt. Durch einen solchen vollständigen Ausschluss gehen Ihnen mit großer Wahrscheinlichkeit Funktionen verloren, die auf Cookies beruhen und die Sie eigentlich gerne zulassen würden oder die gar nicht zustimmungspflichtig sind. + +Sie können Internetseiten im Privatmodus Ihres Browsers aufrufen. Der Privatmodus blockiert ebenfalls das Setzen von Cookies in Ihrem Browserspeicher bzw. löscht alle Cookies automatisch am Ende der Sitzung (Session). + +Einige Browser bzw. Browser-Plug-Ins bieten Ihnen Möglichkeit, differenziertere Voreinstellungen zu treffen, welche Cookies Sie grundsätzlich standardmäßig akzeptieren wollen und welche nicht. + +Ein Spezialfall: Google bietet ein Browser-Plug-In an, das das Setzen der verschiedenen Cookies von Google unterbindet. Das entsprechende Plug-In finden Sie hier: [https://tools.google.com/dlpage/gaoptout?hl=de](https://tools.google.com/dlpage/gaoptout?hl=de) + +6.1** Besuch unserer Internetseiten** + +**6.1.1 Bereitstellen unserer Internetseiten ** + +**Beschreibung:** Damit ein Webserver unsere Internetseite Ihrem Browser zur Verfügung stellen kann, muss der Server technische Daten über Ihr dafür genutztes Gerät, Ihren Browser und Ihren Internetzugang erfassen. Man spricht hier von dem sogenannten Logfile oder Weblog. Das sind die gleichen Daten, die Sie bei jeder Internetseite zwingend hinterlassen, die Sie aufrufen. Im Mittelpunkt steht die IP-Adresse, von der aus Sie unsere Seiten aufrufen. An diese Internetadresse schickt der Webserver Ihnen die Daten, die Sie sehen wollen. + +**Datenkategorien: **IP-Adresse, von der aus unsere Seite aufgerufen wurde; Datum und Uhrzeit des Zugriffs; Objekte auf unserer Website, die im Browser aufgerufen werden; Art und Version des Internetbrowsers; Art und Version des Betriebssystem + +**Datenempfänger (ggf. Drittstaatentransfer):** Unser Hosting-Dienstleister, der über einen Auftragsverarbeitungsvertrag auf den Datenschutz verpflichtet ist. Ein Drittstaatentransfer findet hierdurch nicht statt.. Im Falle von Angriffen auf unsere Seiten Weitergabe an von uns beauftragte Forensiker und Ermittlungsbehörden. Ein Drittstaatentransfer findet hierbei nicht statt. + +**Zweck + Rechtsgrundlage:** Bereitstellung unserer Internetseite sowie Nachforschungen, sollte es zu einem unrechtmäßigen Zugriff auf unsere Webseiten kommen (z.B. einen Hackerangriff). Rechtsgrundlage ist ein berechtigtes Interesse, da der Betrieb einer Website ohne die Erfassung des Weblogs nicht möglich ist. Für den speziellen Falle eines Angriffs auf unsere Internetseite steht uns ein berechtigtes Interesse zu, den Ermittlern Indizien dafür bieten zu können, wie sich der Angriff abgespielt hat. + +Speicherdauer: 7 Tage + +**6.1.2 Analyse des Nutzungsverhaltens (Matomo)** Beschreibung: Auf unserer Internetseite setzen wir den Webanalysedienst Matomo ein. Matomo erstellt in unserem Auftrag anhand der erhobenen Informationen statistische Reports über die Aktivitäten auf unserer Internetseite, die regionale Herkunft der Besucher und technische Eckwerte der Geräte, mit denen unsere Seiten besucht werden. + +Wir haben Matomo so eingestellt, dass IP-Adressen nur gekürzt weiterverarbeitet werden, um eine direkte Personenbeziehbarkeit einzuschränken. Durch die IP-Anonymisierung wird das Ende Ihre IP-Adresse direkt nach der Erfassung durch Nullen ersetzt. + +Wir nutzen Matomo ohne Cookies. Matomo erstellt aber anhand technischer Parameter ihres Endgeräts und Ihres Browsers einen sogenannten digitalen Fingerabdruck Ihres Geräts als einen sogenannten Hash-Wert. Der digitale Fingerabdruck gibt uns die Möglichkeit, Nutzungspfade innerhalb unserer Internetseiten nachvollziehen zu können. Der Hash-Wert wird von Matomo mit einem zusätzlichen Wert versehen (Salt genannt) und anschließend nur für 24 Stunden gespeichert. Diese Kombination aus Hash-Wert mit Salt und kurzer Speicherzeit hat zur Folge, dass wir Ihr Gerät nur innerhalb von 24 Stunden wiedererkennen. Bei einer Rückkehr später als 24 Stunden ist das für uns ein vollkommen unbekannter und insoweit neuer Besuch. + +Es ist uns auch nicht möglich, hinter dem Hashwert eine konkrete Person zu erkennen, wenn Sie uns nicht parallel informieren, wann exakt Sie in welcher Weise unsere Internetseiten genutzt haben. + +Wir geben die Daten aus Matomo an keinen Dritten weiter. Insbesondere führen wir die Daten nicht mit den Daten von Werbenetzwerken zusammen oder setzen sie in anderer Weise für Marketingzwecke ein. + +Neben den Aktivitäten auf unserer Internetseite dokumentieren wir über Matomo auch, welche Internetlinks Sie in unseren Newslettern aufrufen. Auch hier erkennen wir Sie nicht als konkrete Person wieder, sondern können nur nachvollziehen, welche Internetlinks unsere Newsletter-Empfänger zum Anklicken motivieren und welchen weiteren Weg Sie anschließend über unsere Internetseite nehmen. + +Weitere Informationen zu Matomo finden Sie auf https://matomo.org/matomo-cloud-privacy-policy/. + +**Datenkategorien:** IP-Adresse, über die das Gerät online geht, bis zu ihrer umgehenden Anonymisierung; an die IP-Adresse anknüpfend Ort oder Land sowie Internet Service Provider für den Internetzugang; Datum und Uhrzeit des Zugriffs; Objekte auf unserer Website, die im Browser aufgerufen (angeklickt) werden; Art und Version des Internetbrowsers; Art und Version des Betriebssystem; Internetseiten, die zuvor und als nächstes angeklickt werden; digitaler Fingerabdruck des Endgeräts mit ergänzendem Zufallswert (Salt) + +**Datenempfänger (ggf. Drittstaatentransfer):** InnoCraft Ltd, 7 Waterloo Quay PO625, 6140 Wellington, New Zealand. Uns gegenüber ist InnoCraft (der Betreiber von Matomo Cloud) zur Beachtung des Datenschutzes über einen Vertrag zur Auftragsverarbeitung nach Artikel 28 DSGVO verpflichtet. Die durch die Cookies gesammelten Informationen werden an Server im EWR übertragen und dort gespeichert, so dass technisch kein Drittstaatentransfer stattfindet. Rechtlich ist der Drittstaatentransfer an InnoCraft als neuseeländischem Unternehmen abgesichert über den Angemessenheitsbeschluss der EU für Neuseeland. + +**Zweck + Rechtsgrundlage:** Der Zweck dieser Nutzungsanalyse ist es, dass wir unser Internetangebot anhand der Analyseerkenntnisse weiter verbessern können. + +Rechtsgrundlage ist ein berechtigtes Interesse, das sich daraus ergibt, dass der Personenbezug der erfassten Daten durch das Anonymisieren der IP-Adressen und den Einsatz des Hashwerts mit Salt und kurzer Speicherzeit stark reduziert wird und die Daten von uns nicht mit weiteren Datensammlungen kombiniert werden. + +Speicherdauer: 24 Stunden (anschließend entfällt die Wiedererkennbarkeit über den Hashwert mit Salt) + +**6.1.3 Bot-Schutzmechanismus (Google reCAPTCHA)** + +**Beschreibung:** Mit Blick auf die Anmeldungen zu unserem Newsletter nutzen wir den Dienst reCAPTCHA von Google zur Überprüfung, ob Sie ein Mensch oder ein sogenannter Bot sind. reCAPTCHA ermöglicht eine Unterscheidung zwischen menschlichen und automatisierten, missbräuchlichen Eingaben. Durch die Nutzung des reCAPTCHA -Dienstes werden Daten über Sie an Google übertragen. Google setzt dazu die Cookies _GRECAPTCHA (Ablaufzeit: 6 Monate), AEC (Ablaufzeit: 6 Monate) und __Secure-ENID (Ablaufzeit: 1 Jahr) in den Speicher Ihres Browsers sowie Werte für die Schlüssel r::a und r::f in den lokalen Speicher ihres Browsers. + +Die Datenverarbeitung durch reCAPTCHA erfolgt gemäß den Datenschutzinformationen von Google: https://policies.google.com/privacy + +Wir erhalten von Google keine Daten über Ihr Nutzungsverhalten. + +**Datenkategorien:** IP-Adresse, von der aus die Seite aufgerufen wird; Datum und Uhrzeit des Zugriffs; Art und Version des Internetbrowsers; Art und Version des Betriebssystem; in Cookies und Local-Storage-Keys gespeicherte Google-IDs, aber auch die Mausbewegungen im Bereich der reCAPTCHA -Checkbox + +**Datenempfänger (ggf. Drittstaatentransfer):** Google LLC, für uns als europäische Organisation ansprechbar über Google Ireland Ltd, Gordon House, Barrow Street, Dublin 4, Ireland. Soweit Google Daten in Drittstaaten überträgt, garantiert Google einen Umgang mit den Daten auf EU-Datenschutzniveau durch den Abschluss von Standarddatenschutzklauseln. Zudem hat das Unternehmen sich nach den Standards des US-EU-Privacy-Shields zertifiziert, so dass die Datenübertragungen vom Adäquanzbeschluss der EU-Kommission zu Datentransfers in die USA aus Juli 2023 abgedeckt sind. + +**Zweck + Rechtsgrundlage:** Absicherung unserer Newsletterregistrierung gegen Angriffe durch Bots. Rechtsgrundlage hinsichtlich der Datenweitergabe ist ein berechtigtes Interesse, da an der Sicherung unserer Infrastruktur ein hohes Interesse besteht. + +**Speicherdauer:** Die Speicherdauer liegt im Verantwortungsbereich von Google. Eine Datenlöschung bei uns ist nicht erforderlich, da wir durch den Einsatz von reCAPTCHA keine Daten von Ihnen erfassen. + +**6.1.4 Online-Schriften (Google Fonts)** + +**Beschreibung:** Um eine individuelle Gestaltung unserer Internetseiten zu ermöglichen, nutzen wir sogenannte Webfonts. Diese Schriften lädt Ihr Browser zur Darstellung unserer Seiten aus dem Internet, wenn die Schriften noch nicht von einem vorherigen Besuch einer Seite mit dieser Schrift im Speicher Ihres Browsers geladen sind. + +Grundsätzlich stehen Schriften direkt auf unserem eigenem Server zur Verfügung. Insoweit handelt es sich nicht um eine eigenständige Verarbeitung, die über die Verarbeitung „Bereitstellen unserer Internetseiten“ hinausgeht. Teilweise greifen wir auf Schriften von externen Servern zu, in unserem Fall bei der Nutzung der Schutzmechanismen über Googles reCAPTCHA-Technologie, die Schriften von Google (Google Fonts) nachlädt. + +Für den Download der Schriften von den Google-Schriftservern (gstatic.com) muss Ihre IP-Adresse an Google übertragen werden, da anders eine Übertragung des Datenpakets nicht möglich ist. Google erhält im unmittelbaren Zusammenhang mit dem Schriften-Download keine weiteren Daten von Ihnen. + +**Datenkategorien:** IP-Adresse, von der aus Ihr Gerät ins Internet geht, Zeitpunkt + +**Datenempfänger (ggf. Drittstaatentransfer): **Google LLC, für uns als europäische Organisation ansprechbar über Google Ireland Ltd, Gordon House, Barrow Street, Dublin 4, Irland. Soweit Google Daten in Drittstaaten überträgt, garantiert Google einen Umgang mit den Daten auf EU-Datenschutzniveau durch den Abschluss von Standarddatenschutzklauseln. Zudem hat das Unternehmen sich nach den Standards des US-EU-Privacy-Shields zertifiziert, so dass die Datenübertragungen vom Adäquanzbeschluss der EU-Kommission zu Datentransfers in die USA aus Juli 2023 abgedeckt sind. + +**Zweck + Rechtsgrundlage:** Bereitstellung von Google Fonts als Teil der reCAPTCHA-Sicherheitsmechanismen. Rechtsgrundlage ist ein berechtigtes Interesse, da im Rahmen des Schriften-Downloads allein die IP-Adresse ihres Geräts übertragen wird ohne weitere Referenzen zu Ihrer Nutzung des Internets. + +**Speicherdauer:** Die Speicherdauer liegt im Verantwortungsbereich von Google. Eine Datenlöschung bei uns ist nicht möglich, da wir durch den Einsatz von Google Fonts keine Daten von Ihnen erfassen. + +**6.2 Newsletter und Kontaktemanagement** + +**6.2.1 Newsletter-Anmeldung** + +**Beschreibung:** Sie können sich für unseren E-Mail-Newsletter anmelden. Dafür müssen Sie nur eine E-Mail-Adresse angeben. + +Wenn Sie sich online für den Newsletter anmelden, erhalten Sie an die von Ihnen angegebene Adresse eine E-Mail geschickt, in der wir Sie um eine Bestätigung Ihrer Anmeldung bitten. Damit wollen wir vermeiden, dass Sie von jemanden für unseren Newsletter angemeldet werden, der keinen Zugriff auf diese Adresse hat oder haben sollte. Dieses zweistufige Verfahren nennt sich Double-Opt-in für doppelte Einwilligung. + +Mit der Anmeldung zu unserem Newsletter willigen Sie sowohl datenschutzrechtlich wie wettbewerbsrechtlich ein, dass wir Ihnen E-Mails zu dem auf der Anmeldeseite beschriebenen Themen schicken dürfen. + +Sie können Ihre Anmeldung und damit Ihre Einwilligung jederzeit für die Zukunft widerrufen. Das ist über den entsprechenden Link am Ende jedes von uns verschickten Newsletters möglich. + +Wir erfassen die Nutzung unseres Newsletters über sogenannte Zähl-Pixel und Kampagnen-URLs für die Internetlinks im Newsletter. Das Zählpixel ruft unseren Newsletter-Server auf, wenn Sie die E-Mail öffnen. Der Aufruf der Internetlinks im Newsletter wird über die Kampagnenzuordnung in unserer Webanalyse (Matomo) erfasst. + +Das Anmeldeformular auf unserer Seite setzt einen Session-Cookie (automatische Löschung, wenn Sie den Browser schließen) mit dem Namen __cfruid. + +**Datenkategorien:** E-Mail-Adresse, Dokumentation der E-Mail-Verifikation (Double Opt-in), Zeitpunkt Ihrer Anmeldung; Nutzungsdaten (Öffnen der E-Mail + Klicken auf Internetlinks) + +**Datenempfänger (ggf. Drittstaatentransfer):** Unser Dienstleister für den Newsletter-Versand, der über einen Auftragsverarbeitungsvertrag auf den Datenschutz verpflichtet ist. Ein Drittstaatentransfer findet nicht statt. + +**Zweck + Rechtsgrundlage:** Bereitstellen eines E-Mail-Newsletters und Optimierung unserer Newsletter-Inhalte. Rechtsgrundlage ist Ihre Einwilligung. + +**Speicherdauer:** Nach Widerruf Ihrer Einwilligung werden Ihre Daten unmittelbar gelöscht. + +**6.2.2 Kontaktedatenbank (CRM)** + +**Beschreibung:** Wir pflegen Ihre Daten in einer Kontaktedatenbank im Sinne eines Customer Relation Management (CRM). Im CRM speichern wir Ihre Kontaktdaten sowie die Historie Ihrer Kundenbeziehung mit uns. Aus dem CRM steuern wir auch die Kommunikation über Newsletter mit Ihnen. + +**Datenkategorien:** Kontaktdaten (Name, E-Mail-Adresse, Telefonnummer, Adresse), Veranstaltungsteilnahmen, Newsletter-Einwilligungen + +**Datenempfänger (ggf. Drittstaatentransfer): **Unser Dienstleister für den Betrieb des CRM, der über einen Auftragsverarbeitungsvertrag auf den Datenschutz verpflichtet ist. Ein Drittstaatentransfer findet nicht statt. + +**Zweck + Rechtsgrundlage:** Nutzung eines CRM-Systems, das uns eine ganzheitliche Betreuung unserer Kontakte von der Kontaktaufnahme über das Veranstaltungsmanagement hinweg bis zum Newsletterversand ermöglicht. Rechtsgrundlage ist ein berechtigtes Interesse, da die Nutzung des CRM das Serviceniveau steigert und Kosten senkt. + +**Speicherdauer: **Bis zum Widerruf Ihrer Newsletter-Einwilligung oder Ihrem Widerspruch gegen die Speicherung Ihrer Daten. + +**6.3 Webshop ** + +- + +**6.4 Veranstaltungen** + +**6.4.1 Veranstaltungsbuchung** + +Beschreibung: Sie können sich auf unserer Internetseite für Veranstaltungen anmelden. Je nach Art der Veranstaltung und deren organisatorischer Bedürfnisse erheben wir über das Anmeldeformular die jeweils erforderlichen Daten. Die Veranstaltungsteilnahme verwalten wir über unsere Kontaktedatenbank (CRM). + +Die Bestätigung Ihrer Buchung und je nach Bedarf weitere Informationen zu der Veranstaltung erhalten Sie per E-Mail. + +Datenkategorien: gebuchte Veranstaltung, Name der teilnehmenden Person, Name der buchenden Person, E-Mail-Adresse, Ihre Anmerkungen im Freitextfeld; ergänzend Daten, die für die Durchführung der Veranstaltung von Bedeutung sind wie z.B. Angaben zu Lebensmittelunverträglichkeiten bei Veranstaltungen mit Bewirtung + +Datenempfänger (ggf. Drittstaatentransfer): Unser Dienstleister für den Betrieb des CRM, der über einen Auftragsverarbeitungsvertrag auf den Datenschutz verpflichtet ist. Ein Drittstaatentransfer findet nicht statt. + +Zweck + Rechtsgrundlage: Anmeldung zu Veranstaltungen. Rechtsgrundlage ist die Vertragserfüllung Ihrer Veranstaltungsteilnahme. + +Speicherdauer: Die Speicherzeiten sind abhängig von der Art der Finanzierung der Veranstaltung. Für kostenpflichtige Veranstaltungen sind die Buchungsunterlagen gemäß Steuerrecht acht Jahre aufzubewahren. Bei geförderten Veranstaltungen ergibt sich die Dokumentationspflicht aus den jeweiligen Vorgaben des Fördermittelgebers. + +**6.4.2 Foto-, Ton- und Filmaufnahmen** + +Beschreibung: Bei Veranstaltungen erstellen wir je nach Bedarf Foto-, Ton- und Filmaufnahmen. Die Aufnahmen dienen zum einen der Dokumentation unserer Arbeit sowohl für Organisationen, die unsere Arbeit finanziell fördern, wie für die wissenschaftliche Begleitung unserer Arbeit. Zum anderen nutzen wir Aufnahmen für unsere Öffentlichkeitsarbeit über unsere Internetseite, unsere Newsletter, unsere Publikationen, für Presseveröffentlichungen und über unsere Social-Media-Kanäle. + +Bei der Rechtsgrundlage ist je nach Rolle der betroffenen Person zu unterschieden zwischen Vertragserfüllung (greift für vortragende und moderierende Personen), berechtigtem Interesse (greift für Konstellationen nach § 23 Kunsturhebergesetz, KUG) und Einwilligung. + +Bei Menschen, deren Aufgabe das öffentliche Auftreten für uns ist, wie z.B. von uns engagierten Vortragenden oder Moderierenden, umfasst der Auftrag auch die Dokumentation ihrer Arbeit für uns durch entsprechende Aufnahmen. + +Für bestimmte Lebenssachverhalte definiert § 23 KUG, dass Personen Foto- und Filmaufnahmen zu dulden haben. Das betrifft Personen der Zeitgeschichte; Personen, die nur Beiwerk zu einer größeren Szene sind; Personen, die an Versammlungen und Aufmärschen teilnehmen, und Fälle, in denen die Aufnahmen in Kunstwerke integriert werden. Die durch § 23 KUG rechtmäßigen Aufnahmen sind für uns Aufnahmen, die unter ein berechtigtes Interesse nach der DSGVO fallen. Mit Blick auf diese Aufnahmen steht den Betroffenen ein Widerspruchsrecht nach Art. 21 DSGVO zu. + +Da uns die Rücksicht auf die Interessen der Teilnehmenden an unseren Veranstaltungen wichtig ist, weisen wir bei Veranstaltungen mit Aufnahmen darauf hin, in welcher Weise und in welchem Umfang Aufnahmen erfolgen. Zusätzlich bemühen wir uns, ausdrückliche Einwilligungen von den Anwesenden einzuholen. Wir bemühen uns je nach den tatsächlichen Gegebenheiten der Veranstaltung einen Modus einzurichten, der den für uns Aufnehmenden deutlich macht, welche Personen in Aufnahmen und deren Nutzung eingewilligt haben und welche nicht. Solche Maßnahmen können farblich markierte Namensschilder, Bänder oder andere Arten von Markierungen sein. Zu den Maßnahmen zählt bei Onlineveranstaltungen auch der Hinweis vor Aufnahmen, die eigene Kamera oder das eigene Mikrofon zu deaktivieren. + +Soweit Sie feststellen, dass wir Aufnahmen mit Ihnen verwenden, die Ihren Interessen widersprechen, sprechen Sie uns direkt an. Wir bemühen uns dann umgehend um Lösungen, um einen Zustand mit Rücksicht auf Ihre Interessen herzustellen. + +Datenkategorien: Foto; ggf. Name der Person im Rahmen des Dateinamens bzw. der Fotobeschreibung + +Datenempfänger (ggf. Drittstaatentransfer): Abhängig von den genutzten Kommunikationswegen können Aufnahmen an externe Medien weitergegeben werden. Die Nutzung durch Externe erfolgt dann im Rahmen von deren eigener presse- und datenschutzrechtlicher Verantwortung. Bei einer Veröffentlichung über unsere Internetseite oder unseren Newsletter erhalten unsere entsprechenden Hosting-Dienstleister Zugang zu den Aufnahmen, dies jedoch im geschützten Rahmen einer Auftragsverarbeitung. + +Wenn wir Aufnahmen über unsere Social-Media-Kanäle sowie über Videohosting-Plattformen für die Einbindung in unsere Internetseite veröffentlichen, erhalten die jeweiligen Betreiber Zugang zu den Aufnahmen. Zum Umgang mit den Aufnahmen greifen je nach Plattform teilweise Auftragsverarbeitungsverträge und teilweise deren Nutzungsbedingungen. Auch mit Blick auf einen ständigen technischen, wirtschaftlichen und rechtlichen Wandel, können wir nicht zuverlässig prognostizieren, wie die Plattformen im Rahmen ihrer eigenen Nutzung der Aufnahmen mit diesen umgehen und in welchem Umfang die Aufnahmen zum + +Modellen genutzt werden. Hierzu stehen die Plattformen aus dem KI-Recht der Europäischen Union in der Pflicht zu informieren. + +Ein Drittstaatentransfer ist denkbar bei der Nutzung internationaler Social-Media- und Streaming-Plattformen. Meist geht es hierbei um Transfers in die USA, die unter den entsprechenden Angemessenheitsbeschluss der EU-Kommission fallen. Wir verweisen insoweit auf die Angaben zu unseren Social-Media-Profilen und dem Videohosting an anderer Stelle dieser Datenschutzinformation. + +Zweck + Rechtsgrundlage: Die Erstellung, Speicherung und Veröffentlichung von Foto-, Ton- und Videoaufnahmen dient sowohl der Dokumentation unserer Arbeit für Geldgeber und Forschung wie der für unsere Art von Arbeit wesentlichen Öffentlichkeitsarbeit. + +Die Rechtsgrundlage ist abhängig von der Rolle der aufgenommenen Person und der Art der Aufnahme Vertragserfüllung, berechtigtes Interesse oder Einwilligung. Siehe hierzu die Erklärungen in der Beschreibung der Verarbeitungstätigkeit. + +**Speicherdauer:** +Aufnahmen, für die uns eine Einwilligung vorliegt, speichern wir bis zum Widerruf der Einwilligung oder bis zum Wegfall der Wirkung der Einwilligung durch Zeitablauf. Für Aufnahmen, die unter ein berechtigtes Interesse oder Vertragserfüllung fallen, prüfen wir regelmäßig, ob das Interesse an einer Veröffentlichung noch gegeben ist. Aufnahmen, die wir bei Plattformen hochgeladen haben, löschen wir nach Bedarf soweit die Plattformen uns das Löschen ermöglichen. + +**6.5 Unsere Social-Media-Profile ** + +**6.5.1 Facebook und Instagram ** + +**Beschreibung:** Wir betreiben bei Facebook und Instagram Unternehmensprofile (auch Fanpage genannt). So eine Fanpage ermöglicht es uns, unsere Organisation bei Facebook bzw. Instagram vorzustellen, mit Ihnen auf dieser Social-Media-Plattform in Kontakt zu treten und über Anzeigen auf diesen Plattformen auf unsere Leistungen und Angebote hinzuweisen. + +Meta stellt uns über die Nutzung unserer Fanpage Analysedaten zur Verfügung (Page Insights oder Seiten-Insights genannt). Dadurch gewinnen wir einen Eindruck davon, wie erfolgreich die einzelnen unserer Kommunikationsmaßnahmen sind. + +Zu den Details der Datenverarbeitung bei Meta gilt die Datenschutzinformation von Meta: https://www.facebook.com/about/privacy + +Entsprechend einem Urteil des Europäischen Gerichtshofs erfolgt die Nutzung dieser Analysedaten in einer gemeinsamen Verantwortung mit Meta nach Artikel 26 DSGVO. Meta hat entsprechend eine Vereinbarung zur gemeinsamen Verantwortung zur Verfügung gestellt (https://www.facebook.com/legal/terms/page_controller_addendum). Meta hat in der Vereinbarung die alleinige Verantwortung für alle Fragen der Datenverarbeitung übernommen. Wenn Sie Ihre Rechte aus der DSGVO mit Blick auf die in Page Insights verarbeiteten Daten in Anspruch nehmen wollen, sollten Sie sich direkt über Ihr Meta-Konto an Meta wenden. Entsprechend den gesetzlichen Regeln zur gemeinsamen Verantwortung steht es Ihnen aber auch frei, sich mit Ihrem Anliegen an uns zu wenden. Wir würden Ihr Anliegen dann an Meta weiterreichen. + +**Datenkategorien:** Meta-Benutzername; Kommentare, Likes und Seitenaufrufe innerhalb von Facebook bzw. Instagram sowie Zeitpunkt der Aktion + +**Datenempfänger (ggf. Drittstaatentransfer): **Meta Platforms Inc., für uns als europäische Organisation ansprechbar über Meta Platforms Ireland Ltd., 4 Grand Canal Square, Grand Canal Harbour, Dublin 2, Irland. Meta garantiert einen Umgang mit den Daten auf EU-Datenschutzniveau durch den Abschluss von Standarddatenschutzklauseln. Zudem hat das Unternehmen sich nach den Standards des US-EU-Privacy-Shields zertifiziert, so dass die Datenübertragungen vom Adäquanzbeschluss der EU-Kommission zu Datentransfers in die USA aus Juli 2023 abgedeckt sind. + +**Zweck + Rechtsgrundlage:** Analyse des Nutzungsverhaltens auf unserer Fanpage bzw. unserem Instagram-Profil. Rechtsgrundlage ist die Einwilligung, die Sie im Rahmen Ihre Meta-Registrierung erteilt haben. + +**Speicherdauer: **Die Speicherdauer liegt im Verantwortungsbereich von Meta. + +**6.5.2 LinkedIn ** + +**Beschreibung:** Wir betreiben bei LinkedIn ein Unternehmensprofil. So ein LinkedIn-Profil ermöglicht es uns, unsere Organisation bei LinkedIn vorzustellen, mit Ihnen auf dieser Social-Media-Plattform in Kontakt zu treten und über Anzeigen auf dieser Plattformen auf unsere Leistungen und Angebote hinzuweisen. + +LinkedIn stellt uns über die Nutzung unserer Profilseite Analysedaten zur Verfügung. Dadurch gewinnen wir einen Eindruck davon, wie erfolgreich die einzelnen unserer Kommunikationsmaßnahmen sind. + +Zu den Details der Datenverarbeitung bei LinkedIn gilt die Datenschutzinformation von LinkedIn: https://www.linkedin.com/legal/privacy-policy + +**Datenkategorien:** LinkedIn-Benutzername; Kommentare, Likes und Seitenaufrufe innerhalb von LinkedIn sowie Zeitpunkt der Aktion + +**Datenempfänger (ggf. Drittstaatentransfer):** LinkedIn Corp., für uns als europäische Organisation ansprechbar über LinkedIn Ireland Unlimited Company, Wilton Place, Dublin 2, Irland. LinkedIn garantiert einen Umgang mit den Daten auf EU-Datenschutzniveau durch den Abschluss von Standarddatenschutzklauseln. Zudem hat das Unternehmen sich nach den Standards des US-EU-Privacy-Shields zertifiziert, so dass die Datenübertragungen vom Adäquanzbeschluss der EU-Kommission zu Datentransfers in die USA aus Juli 2023 abgedeckt sind. + +**Zweck + Rechtsgrundlage:** Analyse des Nutzungsverhaltens auf unserem LinkedIn-Profil. Rechtsgrundlage ist die Einwilligung, die Sie im Rahmen Ihre LinkedIn-Registrierung erteilt haben. Speicherdauer: Die Speicherdauer liegt im Verantwortungsbereich von LinkedIn. + +**6.6 Lieferanten und Dienstleister ** + +**6.6.1 Geschäftsbeziehung** + +**Beschreibung:** Von unseren Lieferanten und Dienstleistern, die Selbstständige oder Personengesellschaften sind, oder unseren Ansprechpartnern bei solchen Organisationen, verarbeiten wir als Kunde personenbezogene Daten, um mit Ihnen über die Abwicklung des Auftrags kommunizieren zu können. Neben der inhaltlichen Kommunikation werden Ihre Daten typischerweise verarbeitet in den gesondert beschriebenen Verarbeitungen unserer „Allgemeinen Infrastruktur“ (siehe dort). + +**Datenkategorien:** Kontakt-, Vertrags- und Rechnungsdaten + +**Datenempfänger (ggf. Drittstaatentransfer): **Steuerberater, Wirtschaftsprüfer, Rechtsanwälte in ihrer Funktion als Berufsgeheimnisträger. + +**Zweck + Rechtsgrundlage: **Ordnungsgemäße Geschäftsführung. Rechtsgrundlagen sind sowohl Vertragserfüllung wie gesetzliche Pflichten und berechtigte Interessen. + +**Speicherdauer: **Rechnungsdaten sind gemäß Steuerrecht 10 Jahre aufzubewahren; Vertragsdaten sind je nach Art des Vertrags unterschiedlich lang aufzubewahren. Bei Urheberrechten reichen solche Fristen bis zu 70 Jahre über den Tod des Urhebers hinaus. + +**6.6.2 Nennung in Publikationen ** + +**Beschreibung: **In von uns veröffentlichten Publikationen nennen wir Autorinnen und Autoren entsprechend dem Recht der Urheber auf ihre Nennung namentlich. Die Nennung erstreckt sich auch auf die begleitende Marketing- und Öffentlichkeitsarbeit. Soweit Autorinnen und Autoren eine in Bezug auf die Veröffentlichung relevante Institution repräsentieren, wird auch die Zugehörigkeit zu dieser Institution genannt. Bei einigen Publikationen werden als Service für die Leserinnen und Leser auch berufliche Kontaktdaten der Autorinnen und Autoren veröffentlicht. + +**Datenkategorien: **Name, akademische Titel; teilweise Institution und berufliche Kontaktdaten + +**Datenempfänger (ggf. Drittstaatentransfer): **keine + +**Zweck + Rechtsgrundlage: **Kenntlichmachung der Urheberschaft. Rechtsgrundlage ist für den Namen Erfüllung des Autorenvertrags. Für die Kontaktdaten ist die Rechtsgrundlage ein berechtigtes Interesse, da hier nur berufliche Kontaktdaten zu fachrelevanten Ansprechpartnern veröffentlicht werden. + +**Speicherdauer: **Nach Auslieferung gedruckter Publikationen ist eine nachträgliche Löschung durch uns nicht möglich. + +**6.7 Stellenbesetzungen** + +**6.7.1 Bewerbungen** + +**Beschreibung: **Bewerben Sie sich bei uns auf eine Stelle, verarbeiten wir Ihre Bewerbungsunterlagen bis zum Abschluss des Bewerbungsverfahrens ausschließlich zur Entscheidung über Ihre Einstellung. Den Zugang zu Ihren Unterlagen beschränken wir auf die Personen, die wir sinnvollerweise in die Entscheidung über Ihre Einstellung einbeziehen. + +Kommt es zu einer Einstellung, gehen Ihre Bewerbungsunterlagen in Ihre Personalakte über. Kommt es nicht zu einer Einstellung, werden wir Sie entweder um Ihre Einwilligung in die Aufnahme in unseren Kandidatenpool bitten oder Ihre Unterlagen zurückschicken oder vernichten, sobald nach dem Antidiskriminierungsrecht nicht mehr mit Widerspruch gegen unsere Entscheidung zu rechnen ist. + +**Datenkategorien: **Name + Kontaktdaten (E-Mail, Telefon, Anschrift), Foto, Profil-URL in beruflichen Netzwerken (z.B. Xing); Angaben im Bewerbungsschreiben, im Lebenslauf, in Zeugnissen und Referenzen, Ausbildungsnachweise und berufliche Qualifikationen, Notizen zu Bewerbungsgesprächen (telefonisch und persönlich), ggf. Ergebnisse aus Einstellungstests + +**Datenempfänger (ggf. Drittstaatentransfer): **Microsoft als unser Dienstleister für das Hosting unserer E-Mail-Postfächer und Dateispeicher. Microsoft Ireland Operations Ltd., One Microsoft Place, South County Business Park, Leopardstown, Dublin 18 D18 P521, Irland; Microsoft ist über einen Auftragsverarbeitungsvertrag auf den Datenschutz verpflichtet. Soweit die EU-Tochter Daten an die US-Mutter Microsoft Corp. oder andere Microsoft-Gesellschaften überträgt, garantiert Microsoft einen Umgang mit den Daten auf EU-Datenschutzniveau durch den Abschluss von Standarddatenschutzklauseln. Zudem hat das Unternehmen sich nach den Standards des US-EU-Privacy-Shields zertifiziert, so dass die Datenübertragungen vom Adäquanzbeschluss der EU-Kommission zu Datentransfers in die USA aus Juli 2023 abgedeckt sind. + +**Zweck + Rechtsgrundlage: **Entscheidungsgrundlage für Stellenbesetzung. Rechtsgrundlage ist Vorbereitung einer Vertragserfüllung (Arbeitsvertrag) und im Anschluss ein berechtigtes Interesse an der Abwehr von Widersprüchen gegen ablehnende Entscheidungen. Speicherdauer: 6 Monate nach Abschluss des ursprünglichen Bewerbungsverfahrens + +**6.7.2 Kandidatenpool** + +**Beschreibung: **Sollten wir Ihnen aktuell keine passende Stelle anbieten können, Sie aber bei künftig zu besetzenden Stellen erneut im Auswahlprozess berücksichtigen wollen, bitten wir um Ihr Einverständnis Ihre Bewerbungsunterlagen über den Abschluss des aktuellen Bewerbungsverfahrens hinaus aufbewahren zu dürfen. Sollten wir mehr als zwei Jahre nicht auf Sie zurückkommen können, werden wir Ihre Einwilligung zur weiteren Aufbewahrung erneut einholen oder Ihre Unterlagen zurückschicken bzw. löschen. + +**Datenkategorien: **Name + Kontaktdaten (E-Mail, Telefon, Anschrift), Foto, Profil-URL in beruflichen Netzwerken (z.B. Xing); Angaben im Bewerbungsschreiben, im Lebenslauf, in Zeugnissen und Referenzen, Ausbildungsnachweise und berufliche Qualifikationen, Notizen zu Bewerbungsgesprächen (telefonisch und persönlich), ggf. Ergebnisse aus Einstellungstests + +**Datenempfänger (ggf. Drittstaatentransfer): **Microsoft als unser Dienstleister für das Hosting unserer E-Mail-Postfächer und Dateispeicher. Microsoft Ireland Operations Ltd., One Microsoft Place, South County Business Park, Leopardstown, Dublin 18 D18 P521, Irland; Microsoft ist über einen Auftragsverarbeitungsvertrag auf den Datenschutz verpflichtet. Soweit die EU-Tochter Daten an die US-Mutter Microsoft Corp. oder andere Microsoft-Gesellschaften überträgt, garantiert Microsoft einen Umgang mit den Daten auf EU-Datenschutzniveau durch den Abschluss von Standarddatenschutzklauseln. Zudem hat das Unternehmen sich nach den Standards des US-EU-Privacy-Shields zertifiziert, so dass die Datenübertragungen vom Adäquanzbeschluss der EU-Kommission zu Datentransfers in die USA aus Juli 2023 abgedeckt sind. + +**Zweck + Rechtsgrundlage: **Entscheidungsgrundlage für künftige Stellenbesetzung. Rechtsgrundlage ist Einwilligung. Speicherdauer: 2 Jahre seit letztem Kontakt bzw. letzter Einwilligung + +**6.8 Allgemeine Infrastruktur** + +**6.8.1 E-Mail-Postfach, Kontaktverzeichnis, Kalender** + +**Beschreibung: **Für E-Mail, Kontaktverzeichnis und Kalender nutzen wir Exchange-Konten, die diese Datengruppen gebündelt erfassen. E-Mails, die Sie uns schicken oder von uns erhalten, Ihre Kontaktdaten und Termine mit Ihnen werden sowohl auf den Servern unseres Hostinganbieters gespeichert wie als lokale Kopie auf den Endgeräten, die mit wir mit unseren entsprechenden Konten verbunden haben. + +**Datenkategorien: **Name, Kontaktdaten (E-Mail, Telefon, Adresse, Fax), Ihr Unternehmen, Geschäftsfeld Ihres Unternehmens, Ihre Stellenbezeichnung, Ihr Zuständigkeitsbereich, Ort, Zeit und Umstand der Kontaktaufnahme sowie ggf. besondere Hinweise zu Ihrer Erreichbarkeit oder den angesprochenen geschäftlichen Themen; Zeitpunkt des Versands bzw. Empfangs einer E-Mail; Inhalt der E-Mail (Texte, Dokumente, Bilder, sonstige Dateien); sonstige typische Metadaten einer E-Mail + +**Datenempfänger (ggf. Drittstaatentransfer):** Microsoft Ireland Operations Ltd., One Microsoft Place, South County Business Park, Leopardstown, Dublin 18 D18 P521, Irland; Microsoft ist über einen Auftragsverarbeitungsvertrag auf den Datenschutz verpflichtet. Soweit die EU-Tochter Daten an die US-Mutter Microsoft Corp. oder andere Microsoft-Gesellschaften überträgt, garantiert Microsoft einen Umgang mit den Daten auf EU-Datenschutzniveau durch den Abschluss von Standarddatenschutzklauseln. Zudem hat das Unternehmen sich nach den Standards des US-EU-Privacy-Shields zertifiziert, so dass die Datenübertragungen vom Adäquanzbeschluss der EU-Kommission zu Datentransfers in die USA aus Juli 2023 abgedeckt sind. + +**Zweck + Rechtsgrundlage: **Nutzung von miteinander synchronisiertem E-Mail-Postfach, Kalender und Kontaktverzeichnis. Die Rechtsgrundlage ist berechtigtes Interesse, da ohne eine solche digitale Infrastruktur die Teilhabe am modernen Geschäftsleben nicht in vertretbar effizienter Weise möglich wäre. + +**Speicherdauer: **Wir speichern die E-Mails und Einträge so lange, wie es zur Erfüllung eines Zwecks notwendig ist. Je nach Inhalt einer E-Mail, Geschäftsbeziehung zu einem Kontakt oder Hintergrund zu einem Termin können das sehr unterschiedliche Zwecke sein; dementsprechend vielfältig sind die Aufbewahrungsfristen. + +Ein Beispiel: Wenn Ihre E-Mail der Vorbereitung eines Vertragsabschlusses dient, greift die Pflicht aus dem Handelsgesetzbuch (HGB) Geschäftsbriefe sechs Jahre lang aufzubewahren. + +**6.8.2 Videokonferenz (Teams) ** + +**Beschreibung**: Nehmen Sie an einer Videokonferenz mit uns teil, zu der wir (technisch) eingeladen haben, liegt die Verantwortung für die Datenverarbeitung durch diese Kommunikation bei uns. Wir nutzen für Videokonferenzen Microsoft Teams. Wenn wir zu einer Konferenz einladen, verschicken wir mit dem Termin eine auf die konkrete Konferenz bezogene Teams-URL. + +Sie können an einer Teams-Videokonferenz teilnehmen über die Teams-App für Mobilgeräte oder Desktop/Laptop oder über Ihren Internetbrowser. + +Eine Teilnahme als Gast ist möglich, so dass Sie kein eigenes Microsoft-Benutzerkonto benötigen. Sie werden bei der Einwahl in die Konferenz gebeten, sich einen Teilnehmernamen für die Konferenz zu geben, um z.B. Wortmeldungen im Chat während der Konferenz Ihrer Person zuordnen zu können. Hier können Sie auch Fantasienamen verwenden. + +Teams fragt nach Ihrem Einverständnis, auf Ihr Mikrofon und Ihre Kamera zuzugreifen. Jede dieser Berechtigungen können Sie erteilen, müssen Sie aber nicht, wenn Sie z.B. einer Konferenz ohne aktive Teilnahme folgen wollen. + +Teams bietet Ihnen neben Audio und Video ergänzende Funktionen: ein begleitender Chat für den Austausch in Textform, Wortmeldungen über Symbolicons, Profilpflege (Profilbild, weitere Kontaktdaten), künstliches Hintergrundbild. Konferenzen können aufgezeichnet werden. Soll eine Konferenz aufgenommen werden, informieren wir zuvor alle Teilnehmenden darüber und starten die Aufnahme erst, wenn alle Teilnehmenden ihr Einverständnis mit der Aufzeichnung erklärt haben. Audioaufzeichnungen können von Microsoft für uns in eine Textdatei transkribiert werden. + +Soweit keine ausdrücklich vereinbarte Aufzeichnung stattfindet, wird die Konferenz von uns in keiner Weise gespeichert. Nach Beendigung der Konferenz kann auf die Inhalte einer nicht aufgezeichneten Konferenz nicht mehr zugegriffen werden. Das entspricht insoweit Telefongesprächen, die nicht aufgezeichnet wurden. + +Jedem Teilnehmer ist es technisch möglich, mit Mitteln außerhalb von Teams Screenshots oder eine Aufzeichnung der Konferenz im Ganzen oder in Teilen herzustellen. Ein solches Verhalten ohne entsprechende Abstimmung mit allen Teilnehmenden stellt einen Datenschutzverstoß der handelnden Person dar und liegt, wenn es sich dabei nicht um einen unserer Beschäftigten handelt, außerhalb unserer Verantwortung. Heimliche Aufzeichnungen des gesprochenen Worts können eine Straftat nach § 201 StGB darstellen. Wir behalten uns rechtliche Schritte jeder Art gegenüber Personen vor, die ihre Teilnahme an einer Videokonferenz zu datenschutzfeindlichem Verhalten nutzen. + +Soweit es um Datenverarbeitungen geht, die nicht im unmittelbaren Zusammenhang mit der konkreten Konferenz stehen, liegt die Verantwortung nicht bei uns sondern direkt bei Microsoft. Das gilt z.B. für den Download der Teams-App. Indem Sie die Teams-App auf Ihr Endgerät laden, begründen Sie insoweit eine eigenständige Rechtsbeziehung zwischen sich und Microsoft. Teilweise liegt Verantwortung auch bei Ihnen bzw. der Organisation, die Ihnen Ihr persönliches Teams-Benutzerkonto zur Verfügung stellt. + +Der Datentransfer zwischen Ihrem Endgerät und dem Teams-Server setzt voraus, dass Microsoft die IP-Adresse zur Kenntnis nimmt, über die Sie während der Videokonferenz online sind. Die Server erfassen darüber hinaus alle Arten von Daten, die bei der Nutzung von Telemediendiensten regelmäßig anfallen. + +Informationen zum Datenschutz bei Microsoft finden Sie hier: https://privacy.microsoft.com/de-de/privacystatement + +**Datenkategorien: **Benutzername, Teilnahmezeiten, Video- bzw. Audiosignal, Video- bzw. Audioaufzeichnung (nur mit Einwilligung), Audiotranskript (nur nach Aufzeichnung), Aktionen im Chat, Status Wortmeldung, Profildaten (Profilbild, Kontaktdaten, Hintergrundbild), Telefonnummer (bei Teilnahme per Telefon); weitere Datenkategorien wie IP-Adresse oder E-Mail-Adresse werden von Microsoft in eigener Verantwortung verarbeitet. + +**Datenempfänger (ggf. Drittstaatentransfer): **Microsoft Ireland Operations Ltd., One Microsoft Place, South County Business Park, Leopardstown, Dublin 18 D18 P521, Irland; Microsoft ist über einen Auftragsverarbeitungsvertrag auf den Datenschutz verpflichtet. Soweit die EU-Tochter Daten an die US-Mutter Microsoft Corp. oder andere Microsoft-Gesellschaften überträgt, garantiert Microsoft einen Umgang mit den Daten auf EU-Datenschutzniveau durch den Abschluss von Standarddatenschutzklauseln. Zudem hat das Unternehmen sich nach den Standards des US-EU-Privacy-Shields zertifiziert, so dass die Datenübertragungen vom Adäquanzbeschluss der EU-Kommission zu Datentransfers in die USA aus Juli 2023 abgedeckt sind. + +**Zweck + Rechtsgrundlage: **Nutzung einer Videokonferenz. Rechtsgrundlage ist je nach Inhalt des Gesprächs Vorbereitung oder Erfüllung eines Vertrags oder ein berechtigtes Interesse am Austausch mit Ihnen. Für Aufzeichnungen ist Einwilligung die Rechtsgrundlage. + +**Speicherdauer: **Soweit keine Aufzeichnung stattfindet, werden alle Daten mit Abschluss der Konferenz gelöscht. Wurde die Konferenz aufgezeichnet, wird die Aufzeichnung gelöscht sobald der letzte Zweck erreicht wurde, zu dem die Aufzeichnung erstellt wurde. + +**6.8.3 IT-Administration ** + +**Beschreibung: **Wir nehmen für die Administration, Wartung und Pflege unserer Informationstechnologie Dienstleister in Anspruch. Diese Dienstleister beschäftigen sich nicht inhaltlich mit den bei uns verarbeiteten personenbezogenen Daten. Aber bei der Pflege von Datenbanken und anderen Systemeinheiten kann es dazu kommen, dass Personendaten von den Dienstleistern zur Kenntnis genommen werden. Alle unsere Dienstleister sind über entsprechende Verträge ausdrücklich und entsprechend der Sensibilität der Daten, auf die sie Zugriff nehmen können, auf die Vertraulichkeit verpflichtet worden. + +**Datenkategorien: **Jede Art von Daten + +**Datenempfänger (ggf. Drittstaatentransfer): **IT-Dienstleister, die über einen Auftragsverarbeitungsvertrag oder eine andere Form der Vertraulichkeitsverpflichtung auf den Datenschutz verpflichtet sind. Ein Drittstaatentransfer findet nicht statt. + +**Zweck + Rechtsgrundlage: **Inanspruchnahme kompetenter Dienstleister für professionelle IT-Administration. Rechtsgrundlage ist ein berechtigtes Interesse, da die Dienstleister über adäquate Vertraulichkeitsverpflichtungen auf den Datenschutz verpflichtet wurden. + +**Speicherdauer: **Eine eigenständige Speicherung findet nicht statt. + +**6.8.4 Dateispeicherung ** + +**Beschreibung**: Neben der Datenerfassung in einzelnen (zuvor beschriebenen) Datenbanken speichern wir Dokumente auf unseren Speichermedien. Das umfasst typischerweise Office-Dokumente (Word, Excel, Powerpoint), PDF-Dateien, Bilder, Filme, Layouts, sonstige Formate von Text-, Tabellen- und Präsentations-Dateien sowie letztlich jede Art von Datei, deren Einsatz im Rahmen unserer Geschäftsprozesse angebracht ist. + +Die Datenschutzfragen zum Inhalt der Dateien richtet sich nach den jeweils einschlägigen Verarbeitungszwecken. Parallel ergibt sich durch die Speicherung der Dateien und die regelmäßig daran anhaftenden Metadaten (primär die Erstellersignatur) eine eigenständige Verarbeitung. Office-Dokumente enthalten insbesondere personenbezogene Metadaten, wenn gemeinsam an ihnen gearbeitet wird (Kollaboration) und dafür die Kommentar- und Notizfunktionen sowie der Änderungsmodus genutzt werden. + +Wir nutzen Microsoft 365 als Cloud-Lösung für die Dateispeicherung (in Teams, Sharepoint bzw. OneDrive). Umfassende Informationen über die Verwendung der von Microsoft erfassten Daten finden Sie in den Datenschutzinformationen von Microsoft (https://privacy.microsoft.com/de-de/privacystatement). + +**Datenkategorien: **Jede Art von Daten, hier aber Fokus auf Metadaten: Signatur des Dateierstellers, Signaturen von Dateibearbeitern (auch in Kommentaren + Notizen); Zeitpunkt der Erstellung, Bearbeitung bzw. Speicherung + +**Datenempfänger (ggf. Drittstaatentransfer): **Microsoft Ireland Operations Ltd., One Microsoft Place, South County Business Park, Leopardstown, Dublin 18 D18 P521, Irland; Microsoft ist über einen Auftragsverarbeitungsvertrag auf den Datenschutz verpflichtet. Soweit die EU-Tochter Daten an die US-Mutter Microsoft Corp. oder andere Microsoft-Gesellschaften überträgt, garantiert Microsoft einen Umgang mit den Daten auf EU-Datenschutzniveau durch den Abschluss von Standarddatenschutzklauseln. Zudem hat das Unternehmen sich nach den Standards des US-EU-Privacy-Shields zertifiziert, so dass die Datenübertragungen vom Adäquanzbeschluss der EU-Kommission zu Datentransfers in die USA aus Juli 2023 abgedeckt sind. + +**Zweck + Rechtsgrundlage: **Dateispeicherung in einem Hochleistungsrechenzentrum sowie Einsatz moderner Suchfunktionalitäten. Rechtsgrundlage ist ein berechtigtes Interesse, da die Verarbeitung im Rahmen einer Auftragsverarbeitung erfolgt. Speicherdauer: Abhängig von der Speicherzeit für die einzelne Datei + +**6.8.5 Rechtsverfolgung ** + +**Beschreibung: **Für den Fall, dass wir in eine rechtliche Auseinandersetzung mit Ihnen geraten, geben wir Daten zu Ihrer Person und den Umständen der Auseinandersetzung an Rechtsanwälte und ggf. an Behörden oder Gerichte weiter. + +**Datenkategorien: **Name, Kontaktdaten, Angaben zum Streitgegenstand + +**Datenempfänger (ggf. Drittstaatentransfer): **Rechtsanwälte, Behörden, Gerichte, Gerichtsvollzieher. Alle Empfänger sind als staatliche Einrichtung oder als Berufsgeheimnisträger auf die Vertraulichkeit verpflichtet. Ein Drittstaatentransfer findet nicht statt. + +**Zweck + Rechtsgrundlage: **Rechtsverfolgung. Rechtsgrundlage ist das berechtigte Interesse daran, bei Bedarf Rechtsbeistand bei Anwälten und ggf. Behörden oder Gerichten zu suchen. + +**Speicherdauer: **Die genannten Empfänger Ihrer Daten verarbeiten diese nach ihren eigenen Vorgaben in dem Umfang, wie es zur Erfüllung der jeweiligen Aufgabe erforderlich ist. Wir speichern die Daten zu einer rechtlichen Auseinandersetzung bis zum endgültigen Abschluss der Auseinandersetzung inklusive aller einschlägigen Verjährungs- und Widerspruchsfristen. Sollte die Wiederholung einer vergleichbaren Auseinandersetzung mit Ihnen oder anderen Personen denkbar sein, speichern wir zumindest die verfahrensentscheidenden Unterlagen – ggf. in anonymisierter Form – entsprechend länger. + +**6.8.6 Datenschutzmanagement ** + +**Beschreibung: **Machen Sie uns gegenüber Ihre Rechte aus dem Datenschutz geltend, dokumentieren wir die damit einhergehende Kommunikation und Prozesse in unserer Datenschutzmanagementanwendung. + +**Datenkategorien: **Name, Kontaktdaten, Angaben zum Datenschutzbegehren + +**Datenempfänger (ggf. Drittstaatentransfer): **Unser Datenschutzbeauftragter, der gesetzlich auf die Vertraulichkeit verpflichtet ist, sitzt im EWR. Unser Dienstleister für die Cloud-Anwendung für das Datenschutzmanagement, der über einen Auftragsverarbeitungsvertrag auf den Datenschutz verpflichtet ist, sitzt im EWR. Ein Drittstaatentransfer findet nicht statt so. + +**Zweck + Rechtsgrundlage: **Datenschutzmanagement. Rechtsgrundlage ist die gesetzliche Rechenschaftspflicht aus der DSGVO. + +**Speicherdauer: **Wir speichern die Daten zu einer rechtlichen Auseinandersetzung bis zum endgültigen Abschluss der Auseinandersetzung inklusive aller einschlägigen Verjährungs- und Widerspruchsfristen. Sollte die Wiederholung einer vergleichbaren Auseinandersetzung mit Ihnen oder anderen Personen denkbar sein, speichern wir zumindest die verfahrensentscheidenden Unterlagen – ggf. in anonymisierter Form – entsprechend länger. + +Letzte Aktualisierung: März 2026 diff --git a/content/datenschutz.en.md b/content/datenschutz.en.md new file mode 100644 index 0000000..ef0a397 --- /dev/null +++ b/content/datenschutz.en.md @@ -0,0 +1,393 @@ +--- +title: "Privacy policy" +--- + +Below we would like to inform you about our privacy policy. Here you will find information about the collection and use of personal data when using our website. We comply with the data protection law applicable in Germany. You can access this statement on our website at any time. + +The Controller within the meaning of the General Data Protection Regulation (GDPR) is: + +Offener Prozess gGmbH +Zietenstraße 2a +09130 Chemnitz + +**E-mail:** info@offener-prozess.de + +**Represented by the managing directors:** +Dr. Nora Krzywinski, Esther Gerstenberg + +We endeavour to use gender-fair language. In some places, for the sake of simplified reading, we use only the masculine form of terms such as "Benutzer" [user] instead of "Benutzende," "Benutzer:innen," or "Benutzerinnen und Benutzer." Where we use only the masculine form, the term is nevertheless intended to include all genders. + +At this point we would like to summarise the general rights you have under the GDPR with regard to your personal data processed by us. For an explanation of the legal terms, please refer to the applicable definitions in the GDPR (see Article 4 there). Should anything remain unclear, please feel free to ask us. + +You are entitled to lodge a complaint with a data protection supervisory authority, e.g. the Berlin Data Protection Commissioner, about data protection matters concerning us. + +Every form of processing of personal data requires a legal basis that permits us to carry out this processing. The legal basis primarily results from the purpose for which the data is processed. The lawfulness within a given legal basis is generally measured according to the specific scope of the data processing and the measures we have taken to protect your data. + +Legal bases for data processing arise from Article 6 paragraph 1 GDPR and, for particularly sensitive data such as health data, from Article 9 paragraph 2 GDPR. Both of these provisions name the preparation or fulfilment of contractual, statutory, or also societal obligations as the most important legal bases for data processing. In addition, many data processing operations take place on the basis of our legitimate interest, provided the interests of the data subjects do not outweigh this with regard to the specific circumstances. Should one of the aforementioned types of legal basis apply, the processing does not require any further consent from you. + +In addition, data processing may take place on the basis of your consent (Article 7 GDPR) or, for persons under 16 years of age using information society services (e.g. websites, online games, social media platforms), on the basis of consent given by the children or minors in conjunction with the consent of a parent or legal guardian (Article 8 GDPR). + +**At this point we expressly point out that none of our online offerings requiring consent are directed at persons under 16 years of age.** + +In some cases, our obligation to ask for your consent does not arise, or does not arise solely, from the GDPR, but from the Telecommunications-Digital-Services-Data Protection Act (TDDDG) or the Act Against Unfair Competition (UWG). We have taken the obligations arising from these laws into account without explicitly pointing this out in each instance below. + +If a data transfer takes place to a state outside the European Economic Area (EEA), we ensure that data protection is safeguarded within the meaning of Articles 44–49 GDPR. Such a transfer to outside the EEA is referred to in data protection law as a transfer to a third country. + +Cookies are a specific form of text entries that are stored on your device by your browser when you visit a website. Various types of information can be stored in a cookie. In some cases, a cookie stores only a yes or no ("true" or "false") or a country code such as "de" for the German language; in other cases, a string of characters is stored that allows a unique identification of the browser when the website is visited again (a so-called cookie ID). + +The right to set cookies is not determined solely by the GDPR, but primarily by Section 25 TDDDG. This provision distinguishes between cookies that are strictly necessary (essential) for the operation of the online offering and those that are not. Essential cookies may be set even without consent; non-essential cookies, however, always require consent — even where this is not required under the GDPR (e.g. where a legitimate interest constitutes the legal basis or the data is not personal data). + +Before we store non-essential cookies on your device, we ask for your consent in accordance with the requirements of Section 25 TDDDG. + +The purpose of each cookie, as well as the legal basis for its use under the GDPR, is set out in the description of the individual data processing operations below. + +You have various options available to prevent the acceptance of cookies on your device: + +The standard case for many online offerings is that, when you access the offering, you decide via a consent manager which cookies you allow and which you do not. Since we operate our pages without cookies requiring consent, we forgo a consent manager that would be unnecessary for our offerings. + +In principle, you can set your browser so that it never accepts cookies. Such a complete exclusion will, in all likelihood, cause you to lose functions that rely on cookies and that you might actually wish to allow, or that are not subject to consent requirements at all. + +You can visit websites in your browser's private mode. Private mode likewise blocks the setting of cookies in your browser's storage, or automatically deletes all cookies at the end of the session. + +Some browsers or browser plug-ins offer you the option of making more differentiated presettings regarding which cookies you generally want to accept by default and which you do not. + +A special case: Google offers a browser plug-in that prevents the setting of various Google cookies. You can find the corresponding plug-in here: [https://tools.google.com/dlpage/gaoptout?hl=de](https://tools.google.com/dlpage/gaoptout?hl=de) + +**6.1 Visiting our websites** + +**6.1.1 Providing our websites** + +**Description:** In order for a web server to make our website available to your browser, the server must record technical data about the device, browser, and internet access you use for this purpose. This is referred to as the so-called log file or weblog. This is the same data that you inevitably leave behind on every website you visit. Central to this is the IP address from which you access our pages. The web server sends the data you want to see to this internet address. + +**Data categories:** IP address from which our page was accessed; date and time of access; objects on our website that are accessed in the browser; type and version of the internet browser; type and version of the operating system + +**Data recipients (transfer to a third country, if applicable):** Our hosting service provider, which is obligated to comply with data protection through a data processing agreement. No transfer to a third country takes place as a result. In the event of attacks on our websites, disclosure to forensic experts and investigative authorities commissioned by us. No transfer to a third country takes place here either. + +**Purpose + legal basis:** Provision of our website as well as investigations should unlawful access to our websites occur (e.g. a hacker attack). The legal basis is a legitimate interest, since operating a website without recording the weblog is not possible. In the specific case of an attack on our website, we have a legitimate interest in being able to provide investigators with evidence of how the attack took place. + +Storage period: 7 days + +**6.1.2 Analysis of usage behaviour (Matomo)** Description: On our website we use the web analytics service Matomo. On our behalf, Matomo creates statistical reports based on the information collected about activities on our website, the regional origin of visitors, and technical parameters of the devices used to visit our pages. + +We have configured Matomo so that IP addresses are only further processed in truncated form, in order to limit direct personal identifiability. Through this IP anonymisation, the end of your IP address is replaced with zeros immediately after collection. + +We use Matomo without cookies. However, based on technical parameters of your device and browser, Matomo creates a so-called digital fingerprint of your device as a hash value. This digital fingerprint enables us to track usage paths within our website. Matomo adds an additional value to the hash value (called a salt) and subsequently stores it for only 24 hours. This combination of hash value with salt and short storage period means that we can only recognise your device again within 24 hours. If you return later than 24 hours later, this is, for us, a completely unknown and therefore new visit. + +It is also not possible for us to identify a specific person behind the hash value unless you inform us in parallel exactly when and in what way you used our website. + +We do not pass on the data from Matomo to any third party. In particular, we do not combine the data with data from advertising networks or use it in any other way for marketing purposes. + +In addition to activities on our website, we also use Matomo to document which internet links you click on in our newsletters. Here too, we do not recognise you as a specific person, but can only track which internet links motivate our newsletter recipients to click and which further path you then take via our website. + +Further information on Matomo can be found at https://matomo.org/matomo-cloud-privacy-policy/. + +**Data categories:** IP address via which the device goes online, until its immediate anonymisation; location or country derived from the IP address, as well as the internet service provider for internet access; date and time of access; objects on our website that are accessed (clicked on) in the browser; type and version of the internet browser; type and version of the operating system; websites accessed previously and next; digital fingerprint of the device with supplementary random value (salt) + +**Data recipients (transfer to a third country, if applicable):** InnoCraft Ltd, 7 Waterloo Quay PO625, 6140 Wellington, New Zealand. InnoCraft (the operator of Matomo Cloud) is obligated to us to comply with data protection through a data processing agreement pursuant to Article 28 GDPR. The information collected via cookies is transferred to and stored on servers within the EEA, so that technically no transfer to a third country takes place. Legally, the transfer to a third country to InnoCraft as a New Zealand company is safeguarded by the EU's adequacy decision for New Zealand. + +**Purpose + legal basis:** The purpose of this usage analysis is to enable us to further improve our website based on the analytical insights gained. + +The legal basis is a legitimate interest, arising from the fact that the personal reference of the collected data is significantly reduced through the anonymisation of IP addresses and the use of the hash value with salt and short storage period, and the data is not combined by us with other data collections. + +Storage period: 24 hours (after which recognisability via the hash value with salt no longer applies) + +**6.1.3 Bot protection mechanism (Google reCAPTCHA)** + +**Description:** With regard to registrations for our newsletter, we use the reCAPTCHA service from Google to check whether you are a human or a so-called bot. reCAPTCHA enables a distinction to be made between human and automated, abusive input. Through the use of the reCAPTCHA service, data about you is transmitted to Google. For this purpose, Google sets the cookies _GRECAPTCHA (expiry: 6 months), AEC (expiry: 6 months), and __Secure-ENID (expiry: 1 year) in your browser's storage, as well as values for the keys r::a and r::f in your browser's local storage. + +Data processing by reCAPTCHA takes place in accordance with Google's privacy information: https://policies.google.com/privacy + +We do not receive any data from Google about your usage behaviour. + +**Data categories:** IP address from which the page is accessed; date and time of access; type and version of the internet browser; type and version of the operating system; Google IDs stored in cookies and local storage keys, as well as mouse movements in the area of the reCAPTCHA checkbox + +**Data recipients (transfer to a third country, if applicable):** Google LLC, reachable for us as a European organisation via Google Ireland Ltd, Gordon House, Barrow Street, Dublin 4, Ireland. To the extent Google transfers data to third countries, Google guarantees handling of the data at EU data protection level through the conclusion of standard contractual clauses. In addition, the company has certified itself according to the standards of the US-EU Privacy Shield, so that data transfers are covered by the EU Commission's adequacy decision on data transfers to the USA from July 2023. + +**Purpose + legal basis:** Protection of our newsletter registration against attacks by bots. The legal basis for the data disclosure is a legitimate interest, as there is a strong interest in securing our infrastructure. + +**Storage period:** The storage period lies within Google's area of responsibility. Deletion of data by us is not necessary, since we do not collect any data from you through the use of reCAPTCHA. + +**6.1.4 Online fonts (Google Fonts)** + +**Description:** To enable an individual design of our website, we use so-called web fonts. Your browser loads these fonts from the internet to display our pages, if the fonts are not already loaded into your browser's storage from a previous visit to a page using this font. + +In principle, fonts are made available directly from our own server. To that extent, this does not constitute a separate processing operation beyond the processing described under "Providing our websites." In some cases, we access fonts from external servers — in our case, when using the protection mechanisms via Google's reCAPTCHA technology, which loads fonts from Google (Google Fonts). + +For the download of fonts from the Google font servers (gstatic.com), your IP address must be transmitted to Google, as transmission of the data packet would otherwise not be possible. Google does not receive any further data from you in direct connection with the font download. + +**Data categories:** IP address from which your device accesses the internet, timestamp + +**Data recipients (transfer to a third country, if applicable):** Google LLC, reachable for us as a European organisation via Google Ireland Ltd, Gordon House, Barrow Street, Dublin 4, Ireland. To the extent Google transfers data to third countries, Google guarantees handling of the data at EU data protection level through the conclusion of standard contractual clauses. In addition, the company has certified itself according to the standards of the US-EU Privacy Shield, so that data transfers are covered by the EU Commission's adequacy decision on data transfers to the USA from July 2023. + +**Purpose + legal basis:** Provision of Google Fonts as part of the reCAPTCHA security mechanisms. The legal basis is a legitimate interest, since only the IP address of your device is transmitted as part of the font download, without further references to your use of the internet. + +**Storage period:** The storage period lies within Google's area of responsibility. Deletion of data by us is not possible, since we do not collect any data from you through the use of Google Fonts. + +**6.2 Newsletter and contact management** + +**6.2.1 Newsletter registration** + +**Description:** You can sign up for our e-mail newsletter. To do so, you only need to provide an e-mail address. + +If you register for the newsletter online, an e-mail will be sent to the address you provided, in which we ask you to confirm your registration. This is intended to prevent you from being signed up for our newsletter by someone who does not have, or should not have, access to this address. This two-step procedure is called double opt-in. + +By signing up for our newsletter, you consent, both under data protection law and competition law, to us sending you e-mails on the topics described on the registration page. + +You can revoke your registration, and thus your consent, for the future at any time. This is possible via the corresponding link at the end of every newsletter we send. + +We record the use of our newsletter via so-called tracking pixels and campaign URLs for the internet links in the newsletter. The tracking pixel calls up our newsletter server when you open the e-mail. The clicking of internet links in the newsletter is recorded via campaign attribution in our web analytics (Matomo). + +The registration form on our website sets a session cookie (automatically deleted when you close your browser) named __cfruid. + +**Data categories:** E-mail address, documentation of e-mail verification (double opt-in), timestamp of your registration; usage data (opening the e-mail + clicking on internet links) + +**Data recipients (transfer to a third country, if applicable):** Our service provider for newsletter dispatch, which is obligated to comply with data protection through a data processing agreement. No transfer to a third country takes place. + +**Purpose + legal basis:** Provision of an e-mail newsletter and optimisation of our newsletter content. The legal basis is your consent. + +**Storage period:** After you revoke your consent, your data is deleted immediately. + +**6.2.2 Contact database (CRM)** + +**Description:** We maintain your data in a contact database within the meaning of a Customer Relationship Management (CRM) system. In the CRM we store your contact details as well as the history of your customer relationship with us. We also manage communication via newsletter with you through the CRM. + +**Data categories:** Contact details (name, e-mail address, telephone number, address), event participation, newsletter consents + +**Data recipients (transfer to a third country, if applicable):** Our service provider for operating the CRM, which is obligated to comply with data protection through a data processing agreement. No transfer to a third country takes place. + +**Purpose + legal basis:** Use of a CRM system that enables us to provide holistic support for our contacts, from initial contact through event management to newsletter dispatch. The legal basis is a legitimate interest, as the use of the CRM increases the level of service and reduces costs. + +**Storage period:** Until you revoke your newsletter consent or object to the storage of your data. + +**6.3 Web shop** + +- + +**6.4 Events** + +**6.4.1 Event booking** + +Description: You can register for events on our website. Depending on the type of event and its organisational requirements, we collect the respectively necessary data via the registration form. We manage event participation via our contact database (CRM). + +You will receive confirmation of your booking, and further information about the event as needed, by e-mail. + +Data categories: booked event, name of the participating person, name of the booking person, e-mail address, your comments in the free-text field; in addition, data relevant to conducting the event, such as information on food intolerances for events with catering + +Data recipients (transfer to a third country, if applicable): Our service provider for operating the CRM, which is obligated to comply with data protection through a data processing agreement. No transfer to a third country takes place. + +Purpose + legal basis: Registration for events. The legal basis is the performance of the contract for your event participation. + +Storage period: Storage periods depend on the type of funding for the event. For paid events, booking records must be retained for eight years in accordance with tax law. For subsidised events, the documentation obligation arises from the respective requirements of the funding body. + +**6.4.2 Photo, audio, and video recordings** + +Description: At events we make photo, audio, and video recordings as needed. The recordings serve, on the one hand, to document our work for organisations that provide financial support for our work, as well as for the academic evaluation accompanying our work. On the other hand, we use recordings for our public relations work via our website, our newsletters, our publications, for press releases, and via our social media channels. + +The legal basis to be applied depends on the role of the data subject and is to be distinguished between performance of a contract (applies to presenting and moderating persons), legitimate interest (applies to situations under Section 23 of the Act on Copyright in Works of Fine Art [KUG]), and consent. + +For people whose task is to appear publicly on our behalf, such as speakers or moderators engaged by us, the assignment also includes documenting their work for us through corresponding recordings. + +For certain situations, Section 23 KUG defines that persons must tolerate photo and video recordings. This concerns persons of contemporary history; persons who are merely incidental to a larger scene; persons participating in assemblies and marches; and cases in which the recordings are incorporated into works of art. For us, recordings that are lawful under Section 23 KUG are recordings that fall under a legitimate interest pursuant to the GDPR. With regard to these recordings, data subjects have a right to object under Article 21 GDPR. + +Because consideration for the interests of participants at our events is important to us, we point out, at events where recordings are made, the manner and extent in which recordings will take place. In addition, we endeavour to obtain express consent from those present. Depending on the actual circumstances of the event, we endeavour to establish a system that makes clear to those making the recordings which persons have consented to being recorded and to the use of such recordings and which have not. Such measures may include colour-coded name badges, wristbands, or other types of markings. For online events, such measures also include a reminder before recording begins to deactivate one's own camera or microphone. + +If you find that we are using recordings of you that conflict with your interests, please contact us directly. We will then promptly work to find solutions that take your interests into account. + +Data categories: photo; where applicable, the name of the person as part of the file name or photo description + +Data recipients (transfer to a third country, if applicable): Depending on the communication channels used, recordings may be passed on to external media. Use by external parties then takes place within the scope of their own press-law and data protection responsibility. When published via our website or our newsletter, our respective hosting service providers gain access to the recordings, but within the protected framework of a data processing agreement. + +When we publish recordings via our social media channels as well as via video hosting platforms for embedding on our website, the respective operators gain access to the recordings. Depending on the platform, the handling of the recordings is governed in part by data processing agreements and in part by their terms of use. Also in view of constant technical, economic, and legal change, we cannot reliably predict how the platforms will handle the recordings within the scope of their own use of them and to what extent the recordings will be used to train + +models. In this regard, the platforms are obligated to provide information under the European Union's AI legislation. + +A transfer to a third country is conceivable when using international social media and streaming platforms. This usually involves transfers to the USA, which fall under the corresponding adequacy decision of the EU Commission. In this respect, we refer to the information on our social media profiles and video hosting elsewhere in this privacy policy. + +Purpose + legal basis: The creation, storage, and publication of photo, audio, and video recordings serves both to document our work for funders and research and to support the public relations work essential to our type of work. + +The legal basis, depending on the role of the person recorded and the type of recording, is performance of a contract, legitimate interest, or consent. See the explanations in the description of this processing activity. + +**Storage period:** +We store recordings for which we have consent until the consent is revoked or until the consent ceases to be effective due to the passage of time. For recordings that fall under a legitimate interest or performance of a contract, we regularly review whether the interest in publication still exists. Recordings that we have uploaded to platforms are deleted as needed, to the extent the platforms allow us to delete them. + +**6.5 Our social media profiles** + +**6.5.1 Facebook and Instagram** + +**Description:** We operate business profiles (also called fan pages) on Facebook and Instagram. Such a fan page enables us to present our organisation on Facebook and Instagram, to get in contact with you on this social media platform, and to draw attention to our services and offerings through advertisements on these platforms. + +Meta provides us with analytical data on the use of our fan page (called Page Insights). This gives us an impression of how successful our individual communication measures are. + +For details of data processing by Meta, Meta's privacy information applies: https://www.facebook.com/about/privacy + +In accordance with a ruling of the European Court of Justice, the use of this analytical data takes place under joint controllership with Meta pursuant to Article 26 GDPR. Meta has accordingly made available an agreement on joint controllership (https://www.facebook.com/legal/terms/page_controller_addendum). In this agreement, Meta has assumed sole responsibility for all questions relating to data processing. If you wish to exercise your rights under the GDPR with regard to the data processed in Page Insights, you should contact Meta directly via your Meta account. In accordance with the statutory rules on joint controllership, however, you are also free to direct your request to us. We would then forward your request to Meta. + +**Data categories:** Meta username; comments, likes, and page views within Facebook and Instagram, as well as the time of the action + +**Data recipients (transfer to a third country, if applicable):** Meta Platforms Inc., reachable for us as a European organisation via Meta Platforms Ireland Ltd., 4 Grand Canal Square, Grand Canal Harbour, Dublin 2, Ireland. Meta guarantees handling of the data at EU data protection level through the conclusion of standard contractual clauses. In addition, the company has certified itself according to the standards of the US-EU Privacy Shield, so that data transfers are covered by the EU Commission's adequacy decision on data transfers to the USA from July 2023. + +**Purpose + legal basis:** Analysis of usage behaviour on our fan page and Instagram profile respectively. The legal basis is the consent you gave as part of your Meta registration. + +**Storage period:** The storage period lies within Meta's area of responsibility. + +**6.5.2 LinkedIn** + +**Description:** We operate a business profile on LinkedIn. Such a LinkedIn profile enables us to present our organisation on LinkedIn, to get in contact with you on this social media platform, and to draw attention to our services and offerings through advertisements on this platform. + +LinkedIn provides us with analytical data on the use of our profile page. This gives us an impression of how successful our individual communication measures are. + +For details of data processing by LinkedIn, LinkedIn's privacy information applies: https://www.linkedin.com/legal/privacy-policy + +**Data categories:** LinkedIn username; comments, likes, and page views within LinkedIn, as well as the time of the action + +**Data recipients (transfer to a third country, if applicable):** LinkedIn Corp., reachable for us as a European organisation via LinkedIn Ireland Unlimited Company, Wilton Place, Dublin 2, Ireland. LinkedIn guarantees handling of the data at EU data protection level through the conclusion of standard contractual clauses. In addition, the company has certified itself according to the standards of the US-EU Privacy Shield, so that data transfers are covered by the EU Commission's adequacy decision on data transfers to the USA from July 2023. + +**Purpose + legal basis:** Analysis of usage behaviour on our LinkedIn profile. The legal basis is the consent you gave as part of your LinkedIn registration. Storage period: The storage period lies within LinkedIn's area of responsibility. + +**6.6 Suppliers and service providers** + +**6.6.1 Business relationship** + +**Description:** We process personal data, as a customer, from our suppliers and service providers who are self-employed individuals or partnerships, or from our contacts at such organisations, in order to be able to communicate with you about the handling of the order. In addition to substantive communication, your data is typically also processed within the separately described processing operations of our "General infrastructure" (see there). + +**Data categories:** Contact, contract, and invoice data + +**Data recipients (transfer to a third country, if applicable):** Tax advisors, auditors, lawyers in their capacity as professionals bound by professional secrecy. + +**Purpose + legal basis:** Proper business management. The legal bases are performance of a contract as well as statutory obligations and legitimate interests. + +**Storage period:** Invoice data must be retained for 10 years in accordance with tax law; contract data must be retained for varying periods depending on the type of contract. For copyrights, such periods can extend up to 70 years beyond the death of the author. + +**6.6.2 Attribution in publications** + +**Description:** In publications we publish, we name authors by name in accordance with the authors' right to attribution. This attribution also extends to accompanying marketing and public relations work. Where authors represent an institution relevant to the publication, the affiliation with this institution is also named. For some publications, as a service to readers, the professional contact details of the authors are also published. + +**Data categories:** Name, academic titles; in some cases institution and professional contact details + +**Data recipients (transfer to a third country, if applicable):** none + +**Purpose + legal basis:** Identification of authorship. The legal basis for the name is performance of the author's contract. For the contact details, the legal basis is a legitimate interest, as only professional contact details for subject-relevant contacts are published here. + +**Storage period:** After delivery of printed publications, subsequent deletion by us is not possible. + +**6.7 Job recruitment** + +**6.7.1 Applications** + +**Description:** If you apply to us for a position, we process your application documents until the conclusion of the application process solely for the purpose of deciding on your recruitment. We limit access to your documents to the persons whom it makes sense to involve in the decision on your recruitment. + +If you are hired, your application documents become part of your personnel file. If you are not hired, we will either ask for your consent to be included in our candidate pool, or return or destroy your documents as soon as, under anti-discrimination law, an objection to our decision is no longer to be expected. + +**Data categories:** Name + contact details (e-mail, telephone, address), photo, profile URL on professional networks (e.g. Xing); information in the cover letter, CV, references and testimonials, proof of education and professional qualifications, notes from interviews (by telephone and in person), where applicable results from aptitude tests + +**Data recipients (transfer to a third country, if applicable):** Microsoft as our service provider for hosting our e-mail mailboxes and file storage. Microsoft Ireland Operations Ltd., One Microsoft Place, South County Business Park, Leopardstown, Dublin 18 D18 P521, Ireland; Microsoft is obligated to comply with data protection through a data processing agreement. To the extent the EU subsidiary transfers data to the US parent company Microsoft Corp. or other Microsoft companies, Microsoft guarantees handling of the data at EU data protection level through the conclusion of standard contractual clauses. In addition, the company has certified itself according to the standards of the US-EU Privacy Shield, so that data transfers are covered by the EU Commission's adequacy decision on data transfers to the USA from July 2023. + +**Purpose + legal basis:** Basis for decision on job recruitment. The legal basis is preparation for performance of a contract (employment contract) and, subsequently, a legitimate interest in defending against objections to rejection decisions. Storage period: 6 months after conclusion of the original application process + +**6.7.2 Candidate pool** + +**Description:** Should we currently be unable to offer you a suitable position, but wish to consider you again in the selection process for future vacancies, we will ask for your consent to retain your application documents beyond the conclusion of the current application process. Should we be unable to get back to you for more than two years, we will either seek your consent again for further retention or return or delete your documents. + +**Data categories:** Name + contact details (e-mail, telephone, address), photo, profile URL on professional networks (e.g. Xing); information in the cover letter, CV, references and testimonials, proof of education and professional qualifications, notes from interviews (by telephone and in person), where applicable results from aptitude tests + +**Data recipients (transfer to a third country, if applicable):** Microsoft as our service provider for hosting our e-mail mailboxes and file storage. Microsoft Ireland Operations Ltd., One Microsoft Place, South County Business Park, Leopardstown, Dublin 18 D18 P521, Ireland; Microsoft is obligated to comply with data protection through a data processing agreement. To the extent the EU subsidiary transfers data to the US parent company Microsoft Corp. or other Microsoft companies, Microsoft guarantees handling of the data at EU data protection level through the conclusion of standard contractual clauses. In addition, the company has certified itself according to the standards of the US-EU Privacy Shield, so that data transfers are covered by the EU Commission's adequacy decision on data transfers to the USA from July 2023. + +**Purpose + legal basis:** Basis for decision on future job recruitment. The legal basis is consent. Storage period: 2 years from the last contact or last consent + +**6.8 General infrastructure** + +**6.8.1 E-mail mailbox, address book, calendar** + +**Description:** For e-mail, address book, and calendar we use Exchange accounts, which record these groups of data together. E-mails that you send to us or receive from us, your contact details, and appointments with you are stored both on the servers of our hosting provider and as a local copy on the devices that we have connected to our corresponding accounts. + +**Data categories:** Name, contact details (e-mail, telephone, address, fax), your company, your company's business field, your job title, your area of responsibility, place, time, and circumstances of contact, as well as, where applicable, special notes on your availability or the business topics addressed; time of sending or receiving an e-mail; content of the e-mail (texts, documents, images, other files); other typical metadata of an e-mail + +**Data recipients (transfer to a third country, if applicable):** Microsoft Ireland Operations Ltd., One Microsoft Place, South County Business Park, Leopardstown, Dublin 18 D18 P521, Ireland; Microsoft is obligated to comply with data protection through a data processing agreement. To the extent the EU subsidiary transfers data to the US parent company Microsoft Corp. or other Microsoft companies, Microsoft guarantees handling of the data at EU data protection level through the conclusion of standard contractual clauses. In addition, the company has certified itself according to the standards of the US-EU Privacy Shield, so that data transfers are covered by the EU Commission's adequacy decision on data transfers to the USA from July 2023. + +**Purpose + legal basis:** Use of a mutually synchronised e-mail mailbox, calendar, and address book. The legal basis is legitimate interest, as participation in modern business life would not be possible in a reasonably efficient manner without such a digital infrastructure. + +**Storage period:** We store e-mails and entries for as long as necessary to fulfil a purpose. Depending on the content of an e-mail, the business relationship with a contact, or the background to an appointment, these purposes can vary widely; the retention periods are correspondingly diverse. + +An example: If your e-mail serves to prepare the conclusion of a contract, the obligation from the German Commercial Code (HGB) to retain business letters for six years applies. + +**6.8.2 Video conferencing (Teams)** + +**Description**: If you take part in a video conference with us to which we have (technically) invited you, responsibility for the data processing arising from this communication lies with us. We use Microsoft Teams for video conferences. When we invite you to a conference, we send a Teams URL specific to that conference along with the appointment. + +You can take part in a Teams video conference via the Teams app for mobile devices or desktop/laptop, or via your internet browser. + +Participation as a guest is possible, so that you do not need your own Microsoft user account. When dialling into the conference, you will be asked to give yourself a participant name for the conference, e.g. so that comments in the chat during the conference can be attributed to you. You may also use a fictitious name here. + +Teams asks for your consent to access your microphone and camera. You may grant each of these permissions, but you do not have to, for example if you wish to follow a conference without actively participating. + +In addition to audio and video, Teams offers you supplementary functions: an accompanying chat for exchanges in text form, raising your hand via icon symbols, profile management (profile picture, further contact details), artificial background image. Conferences can be recorded. If a conference is to be recorded, we inform all participants beforehand and only start the recording once all participants have declared their consent to the recording. Audio recordings can be transcribed into a text file by Microsoft on our behalf. + +Unless an explicitly agreed recording takes place, the conference is not stored by us in any way. After the conference ends, the content of a non-recorded conference can no longer be accessed. This corresponds, in this respect, to telephone calls that were not recorded. + +It is technically possible for every participant to create screenshots or a recording of the conference, in whole or in part, using means outside of Teams. Such conduct without corresponding agreement from all participants constitutes a data protection violation on the part of the person acting, and, where this does not involve one of our employees, lies outside our responsibility. Covert recordings of the spoken word may constitute a criminal offence under Section 201 of the German Criminal Code (StGB). We reserve the right to take any type of legal action against persons who use their participation in a video conference for conduct hostile to data protection. + +To the extent it concerns data processing that is not directly related to the specific conference, responsibility does not lie with us but directly with Microsoft. This applies, for example, to downloading the Teams app. By downloading the Teams app to your device, you thereby establish an independent legal relationship between yourself and Microsoft. In some cases, responsibility also lies with you or the organisation that provides you with your personal Teams user account. + +The data transfer between your device and the Teams server requires that Microsoft becomes aware of the IP address via which you are online during the video conference. The servers also record all types of data that regularly arise from the use of telemedia services. + +Information on data protection at Microsoft can be found here: https://privacy.microsoft.com/de-de/privacystatement + +**Data categories:** Username, participation times, video and/or audio signal, video and/or audio recording (only with consent), audio transcript (only after recording), actions in chat, hand-raising status, profile data (profile picture, contact details, background image), telephone number (when participating by phone); further data categories such as IP address or e-mail address are processed by Microsoft under its own responsibility. + +**Data recipients (transfer to a third country, if applicable):** Microsoft Ireland Operations Ltd., One Microsoft Place, South County Business Park, Leopardstown, Dublin 18 D18 P521, Ireland; Microsoft is obligated to comply with data protection through a data processing agreement. To the extent the EU subsidiary transfers data to the US parent company Microsoft Corp. or other Microsoft companies, Microsoft guarantees handling of the data at EU data protection level through the conclusion of standard contractual clauses. In addition, the company has certified itself according to the standards of the US-EU Privacy Shield, so that data transfers are covered by the EU Commission's adequacy decision on data transfers to the USA from July 2023. + +**Purpose + legal basis:** Use of a video conference. Depending on the content of the conversation, the legal basis is preparation for or performance of a contract, or a legitimate interest in exchange with you. For recordings, consent is the legal basis. + +**Storage period:** Where no recording takes place, all data is deleted upon conclusion of the conference. If the conference was recorded, the recording is deleted as soon as the last purpose for which the recording was made has been achieved. + +**6.8.3 IT administration** + +**Description:** We engage service providers for the administration, maintenance, and upkeep of our information technology. These service providers are not substantively involved with the personal data processed by us. However, in the course of maintaining databases and other system components, it may happen that personal data comes to the attention of the service providers. All our service providers are expressly bound to confidentiality through corresponding contracts, in accordance with the sensitivity of the data to which they may have access. + +**Data categories:** Any type of data + +**Data recipients (transfer to a third country, if applicable):** IT service providers who are obligated to comply with data protection through a data processing agreement or another form of confidentiality obligation. No transfer to a third country takes place. + +**Purpose + legal basis:** Engaging competent service providers for professional IT administration. The legal basis is a legitimate interest, as the service providers have been bound to data protection through adequate confidentiality obligations. + +**Storage period:** No independent storage takes place. + +**6.8.4 File storage** + +**Description**: In addition to data collection in the individual databases described above, we store documents on our storage media. This typically includes office documents (Word, Excel, PowerPoint), PDF files, images, films, layouts, other formats of text, spreadsheet, and presentation files, and ultimately any type of file whose use is appropriate within the scope of our business processes. + +Data protection questions regarding the content of the files are governed by the respective applicable processing purposes. In parallel, the storage of the files and the metadata regularly attached to them (primarily the creator signature) gives rise to a separate processing operation. Office documents in particular contain personal metadata when they are worked on collaboratively and the comment and note functions as well as track-changes mode are used for this purpose. + +We use Microsoft 365 as a cloud solution for file storage (in Teams, SharePoint, or OneDrive). Comprehensive information on the use of data collected by Microsoft can be found in Microsoft's privacy information (https://privacy.microsoft.com/de-de/privacystatement). + +**Data categories:** Any type of data, though the focus here is on metadata: signature of the file creator, signatures of file editors (also in comments and notes); time of creation, editing, or storage + +**Data recipients (transfer to a third country, if applicable):** Microsoft Ireland Operations Ltd., One Microsoft Place, South County Business Park, Leopardstown, Dublin 18 D18 P521, Ireland; Microsoft is obligated to comply with data protection through a data processing agreement. To the extent the EU subsidiary transfers data to the US parent company Microsoft Corp. or other Microsoft companies, Microsoft guarantees handling of the data at EU data protection level through the conclusion of standard contractual clauses. In addition, the company has certified itself according to the standards of the US-EU Privacy Shield, so that data transfers are covered by the EU Commission's adequacy decision on data transfers to the USA from July 2023. + +**Purpose + legal basis:** File storage in a high-performance data centre as well as the use of modern search functionality. The legal basis is a legitimate interest, as the processing takes place within the scope of a data processing agreement. Storage period: Depends on the retention period for the individual file + +**6.8.5 Legal enforcement** + +**Description:** In the event that we become involved in a legal dispute with you, we disclose data concerning your person and the circumstances of the dispute to lawyers and, where applicable, to authorities or courts. + +**Data categories:** Name, contact details, information on the subject matter of the dispute + +**Data recipients (transfer to a third country, if applicable):** Lawyers, authorities, courts, bailiffs. All recipients are bound to confidentiality either as state institutions or as professionals bound by professional secrecy. No transfer to a third country takes place. + +**Purpose + legal basis:** Legal enforcement. The legal basis is the legitimate interest in seeking legal assistance from lawyers and, where applicable, authorities or courts as needed. + +**Storage period:** The recipients named store your data according to their own requirements, to the extent necessary to fulfil the respective task. We store the data relating to a legal dispute until the dispute is finally concluded, including all relevant limitation and objection periods. Should the repetition of a comparable dispute with you or other persons be conceivable, we store at least the documents decisive to the proceedings — where applicable in anonymised form — for a correspondingly longer period. + +**6.8.6 Data protection management** + +**Description:** If you assert your data protection rights against us, we document the accompanying communication and processes in our data protection management application. + +**Data categories:** Name, contact details, information on the data protection request + +**Data recipients (transfer to a third country, if applicable):** Our data protection officer, who is legally bound to confidentiality, is based in the EEA. Our service provider for the cloud application used for data protection management, which is obligated to comply with data protection through a data processing agreement, is based in the EEA. No transfer to a third country takes place. + +**Purpose + legal basis:** Data protection management. The legal basis is the statutory accountability obligation under the GDPR. + +**Storage period:** We store the data relating to a legal dispute until the dispute is finally concluded, including all relevant limitation and objection periods. Should the repetition of a comparable dispute with you or other persons be conceivable, we store at least the documents decisive to the proceedings — where applicable in anonymised form — for a correspondingly longer period. + +Last updated: March 2026 diff --git a/content/erinnerungsorte/_index.de.md b/content/erinnerungsorte/_index.de.md new file mode 100644 index 0000000..c45ba69 --- /dev/null +++ b/content/erinnerungsorte/_index.de.md @@ -0,0 +1,9 @@ +--- +title: "Erinnerungsorte" +heroTitle: "Erinnerungsorte für die Opfer des NSU" +heroLead: "Gedenkorte, Mahnmale und Gedenktafeln, die an die Opfer des NSU-Komplexes erinnern." +--- + +Diese Karte versammelt öffentliche Erinnerungsorte für die Opfer des +Nationalsozialistischen Untergrunds – von Gedenktafeln an den Tatorten über +benannte Plätze bis zu Mahnmalen und Gedenkbäumen. diff --git a/content/erinnerungsorte/_index.en.md b/content/erinnerungsorte/_index.en.md new file mode 100644 index 0000000..6793e39 --- /dev/null +++ b/content/erinnerungsorte/_index.en.md @@ -0,0 +1,9 @@ +--- +title: "Places of remembrance" +heroTitle: "Places of remembrance for the victims of the NSU" +heroLead: "Memorials, monuments and plaques commemorating the victims of the NSU complex." +--- + +This map gathers public places of remembrance for the victims of the National +Socialist Underground – from memorial plaques at the crime scenes and squares +named after victims to monuments and memorial trees. diff --git a/content/erinnerungsorte/denkmal-mehmet-turgut-rostock/cover.jpg b/content/erinnerungsorte/denkmal-mehmet-turgut-rostock/cover.jpg new file mode 100644 index 0000000..cf37ae5 --- /dev/null +++ b/content/erinnerungsorte/denkmal-mehmet-turgut-rostock/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4050085b191bd79b201ceca5b9c46276acf32ef20c2e406a730fa30967e6916e +size 272517 diff --git a/content/erinnerungsorte/denkmal-mehmet-turgut-rostock/index.de.md b/content/erinnerungsorte/denkmal-mehmet-turgut-rostock/index.de.md new file mode 100644 index 0000000..1d114f3 --- /dev/null +++ b/content/erinnerungsorte/denkmal-mehmet-turgut-rostock/index.de.md @@ -0,0 +1,15 @@ +--- +title: "Denkmal für Mehmet Turgut" +subtitle: "Mehmet Turgut" +date: 2014-01-01 +art: "Denkmal" +lat: 54.1305 +lng: 12.165 +address: "Neudierkower Weg, 18147 Rostock-Toitenwinkel" +datum: "2014" +quelle: "https://app.lichtenhagen-1992.de/stele/denkmal-mehmet-turgut/" +bildnachweis: 'Foto: Schiwago · CC BY-SA 3.0 (Wikimedia Commons)' +--- +Am 25. Februar 2004 wurde der 25-jährige Mehmet Turgut in einem Imbisswagen im Neudierkower Weg in Rostock-Toitenwinkel vom NSU mit mehreren Kopfschüssen ermordet. + +Zum 10. Todestag 2014 errichtete die Stadt Rostock am Tatort ein Denkmal aus zwei versetzt gegenüberstehenden Betonbänken mit deutschen und türkischen Inschriften; zwischen 10:10 und 10:20 Uhr fällt Sonnenlicht zwischen die Bänke. Seit 2012 finden dort jährliche Gedenkveranstaltungen statt. diff --git a/content/erinnerungsorte/denkmal-mehmet-turgut-rostock/index.en.md b/content/erinnerungsorte/denkmal-mehmet-turgut-rostock/index.en.md new file mode 100644 index 0000000..f4dd943 --- /dev/null +++ b/content/erinnerungsorte/denkmal-mehmet-turgut-rostock/index.en.md @@ -0,0 +1,15 @@ +--- +title: "Monument to Mehmet Turgut" +subtitle: "Mehmet Turgut" +date: 2014-01-01 +art: "Monument" +lat: 54.1305 +lng: 12.165 +address: "Neudierkower Weg, 18147 Rostock-Toitenwinkel" +datum: "2014" +quelle: "https://app.lichtenhagen-1992.de/stele/denkmal-mehmet-turgut/" +bildnachweis: 'Photo: Schiwago · CC BY-SA 3.0 (Wikimedia Commons)' +--- +On 25 February 2004, 25-year-old Mehmet Turgut was murdered by the NSU with several shots to the head at a snack stand in Neudierkower Weg in Rostock-Toitenwinkel. + +For the tenth anniversary of his death in 2014, the city of Rostock erected a monument at the scene consisting of two offset, facing concrete benches with German and Turkish inscriptions; between 10:10 and 10:20 a.m., sunlight falls between the benches. Annual commemorative events have been held there since 2012. diff --git a/content/erinnerungsorte/gedenkbaeume-nsu-zwickau/cover.jpg b/content/erinnerungsorte/gedenkbaeume-nsu-zwickau/cover.jpg new file mode 100644 index 0000000..ac490e2 --- /dev/null +++ b/content/erinnerungsorte/gedenkbaeume-nsu-zwickau/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acdecf62a26150917546db95e8305ac17dfbe082d396901c973588646ef57b87 +size 273216 diff --git a/content/erinnerungsorte/gedenkbaeume-nsu-zwickau/index.de.md b/content/erinnerungsorte/gedenkbaeume-nsu-zwickau/index.de.md new file mode 100644 index 0000000..c0e7256 --- /dev/null +++ b/content/erinnerungsorte/gedenkbaeume-nsu-zwickau/index.de.md @@ -0,0 +1,15 @@ +--- +title: "Gedenkbäume für die Mordopfer des NSU" +subtitle: "Alle zehn Mordopfer des NSU" +date: 2019-01-01 +art: "Gedenkbäume" +lat: 50.71722 +lng: 12.48889 +address: "Schwanenteichpark, Ziegelwiese, 08056 Zwickau" +datum: "2019" +quelle: "https://de.wikipedia.org/wiki/Gedenkb%C3%A4ume_f%C3%BCr_die_Mordopfer_des_NSU" +bildnachweis: 'Foto: Westsächsisch · CC BY-SA 4.0 (Wikimedia Commons)' +--- +Im Schwanenteichpark in Zwickau, dem letzten Wohnort der NSU-Kerngruppe, erinnern zehn Bäume auf der Ziegelwiese an die zehn Mordopfer des Nationalsozialistischen Untergrunds; unter jedem Baum liegt eine Gedenkplatte mit dem Namen eines Opfers. + +Der erste Baum – eine Eiche für Enver Şimşek – wurde am 8. September 2019 gepflanzt, jedoch in der Nacht zum 3. Oktober 2019 von Unbekannten abgesägt. Die vollständige Baumgruppe wurde am 3. November 2019 eingeweiht. diff --git a/content/erinnerungsorte/gedenkbaeume-nsu-zwickau/index.en.md b/content/erinnerungsorte/gedenkbaeume-nsu-zwickau/index.en.md new file mode 100644 index 0000000..b2eccdc --- /dev/null +++ b/content/erinnerungsorte/gedenkbaeume-nsu-zwickau/index.en.md @@ -0,0 +1,15 @@ +--- +title: "Memorial trees for the murder victims of the NSU" +subtitle: "Alle zehn Mordopfer des NSU" +date: 2019-01-01 +art: "Memorial trees" +lat: 50.71722 +lng: 12.48889 +address: "Schwanenteichpark, Ziegelwiese, 08056 Zwickau" +datum: "2019" +quelle: "https://de.wikipedia.org/wiki/Gedenkb%C3%A4ume_f%C3%BCr_die_Mordopfer_des_NSU" +bildnachweis: 'Photo: Westsächsisch · CC BY-SA 4.0 (Wikimedia Commons)' +--- +In Schwanenteichpark in Zwickau, the last place of residence of the NSU core group, ten trees on the Ziegelwiese meadow commemorate the ten murder victims of the National Socialist Underground; beneath each tree lies a memorial plaque bearing the name of a victim. + +The first tree – an oak for Enver Şimşek – was planted on 8 September 2019, but was sawn down by unknown persons during the night of 3 October 2019. The complete group of trees was inaugurated on 3 November 2019. diff --git a/content/erinnerungsorte/gedenkstein-sueleyman-taskopru-hamburg/cover.jpg b/content/erinnerungsorte/gedenkstein-sueleyman-taskopru-hamburg/cover.jpg new file mode 100644 index 0000000..ed5af93 --- /dev/null +++ b/content/erinnerungsorte/gedenkstein-sueleyman-taskopru-hamburg/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d589359a109ae777a59806501dbcb082ac3d5b2b647a0e8c68e1554759a30a +size 439129 diff --git a/content/erinnerungsorte/gedenkstein-sueleyman-taskopru-hamburg/index.de.md b/content/erinnerungsorte/gedenkstein-sueleyman-taskopru-hamburg/index.de.md new file mode 100644 index 0000000..6b26c0e --- /dev/null +++ b/content/erinnerungsorte/gedenkstein-sueleyman-taskopru-hamburg/index.de.md @@ -0,0 +1,15 @@ +--- +title: "Gedenkstein für Süleyman Taşköprü" +subtitle: "Süleyman Taşköprü" +date: 2012-01-01 +art: "Gedenkstein" +lat: 53.5636 +lng: 9.9083 +address: "Schützenstraße 39, 22761 Hamburg-Bahrenfeld" +datum: "2012" +quelle: "https://gedenkstaetten-in-hamburg.de/gedenkstaetten/zeige/gedenkstein-fuer-sueleyman-taskoeprue" +bildnachweis: 'Foto: Hinnerk11 · CC BY-SA 4.0 (Wikimedia Commons)' +--- +Am 27. Juni 2001 wurde der 31-jährige Gemüsehändler Süleyman Taşköprü im Laden seines Vaters in der Schützenstraße 39 vom NSU mit drei Kopfschüssen ermordet. + +Der Gedenkstein besteht aus zwei dunklen Basaltsteinen; ein sternförmiges Bodenelement zeigt Taşköprüs Lebensdaten. Die Inschrift nennt alle zehn NSU-Opfer und endet mit „Wir sagen: Nie wieder!“. diff --git a/content/erinnerungsorte/gedenkstein-sueleyman-taskopru-hamburg/index.en.md b/content/erinnerungsorte/gedenkstein-sueleyman-taskopru-hamburg/index.en.md new file mode 100644 index 0000000..b13b3de --- /dev/null +++ b/content/erinnerungsorte/gedenkstein-sueleyman-taskopru-hamburg/index.en.md @@ -0,0 +1,15 @@ +--- +title: "Memorial stone for Süleyman Taşköprü" +subtitle: "Süleyman Taşköprü" +date: 2012-01-01 +art: "Memorial stone" +lat: 53.5636 +lng: 9.9083 +address: "Schützenstraße 39, 22761 Hamburg-Bahrenfeld" +datum: "2012" +quelle: "https://gedenkstaetten-in-hamburg.de/gedenkstaetten/zeige/gedenkstein-fuer-sueleyman-taskoeprue" +bildnachweis: 'Photo: Hinnerk11 · CC BY-SA 4.0 (Wikimedia Commons)' +--- +On 27 June 2001, 31-year-old greengrocer Süleyman Taşköprü was murdered by the NSU with three shots to the head in his father's shop at Schützenstraße 39. + +The memorial stone consists of two dark basalt stones; a star-shaped ground element shows Taşköprü's dates of birth and death. The inscription names all ten NSU victims and closes with "We say: never again!". diff --git a/content/erinnerungsorte/gedenkstele-michele-kiesewetter-heilbronn/cover.jpg b/content/erinnerungsorte/gedenkstele-michele-kiesewetter-heilbronn/cover.jpg new file mode 100644 index 0000000..e01c3bd --- /dev/null +++ b/content/erinnerungsorte/gedenkstele-michele-kiesewetter-heilbronn/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3cdecbeffb5119c8c11efc3a0cafe6bedf002a01af98fbb5d6a6ecb130ae41 +size 323531 diff --git a/content/erinnerungsorte/gedenkstele-michele-kiesewetter-heilbronn/index.de.md b/content/erinnerungsorte/gedenkstele-michele-kiesewetter-heilbronn/index.de.md new file mode 100644 index 0000000..1f175fa --- /dev/null +++ b/content/erinnerungsorte/gedenkstele-michele-kiesewetter-heilbronn/index.de.md @@ -0,0 +1,15 @@ +--- +title: "Gedenkstele für Michèle Kiesewetter" +subtitle: "Michèle Kiesewetter" +date: 2012-01-01 +art: "Gedenkstele" +lat: 49.14072 +lng: 9.20206 +address: "Theresienwiese, 74072 Heilbronn" +datum: "2012" +quelle: "https://de.wikipedia.org/wiki/Polizistenmord_von_Heilbronn" +bildnachweis: 'Foto: p.schmelzle · CC BY-SA 3.0 (Wikimedia Commons)' +--- +Am Tatort auf der Theresienwiese in Heilbronn erinnert eine Gedenkstele an die am 25. April 2007 vom NSU erschossene Polizeimeisterin Michèle Kiesewetter; bei dem Anschlag wurde ihr Kollege lebensgefährlich verletzt. + +Von 2007 bis 2012 stand dort eine schlichtere Tafel; 2012 wurde sie durch eine neue Gedenkstele ersetzt, die die Namen aller Opfer der NSU-Mordserie nennt. Jährlich finden dort Gedenkveranstaltungen statt. diff --git a/content/erinnerungsorte/gedenkstele-michele-kiesewetter-heilbronn/index.en.md b/content/erinnerungsorte/gedenkstele-michele-kiesewetter-heilbronn/index.en.md new file mode 100644 index 0000000..f2440d4 --- /dev/null +++ b/content/erinnerungsorte/gedenkstele-michele-kiesewetter-heilbronn/index.en.md @@ -0,0 +1,15 @@ +--- +title: "Memorial stele for Michèle Kiesewetter" +subtitle: "Michèle Kiesewetter" +date: 2012-01-01 +art: "Memorial stele" +lat: 49.14072 +lng: 9.20206 +address: "Theresienwiese, 74072 Heilbronn" +datum: "2012" +quelle: "https://de.wikipedia.org/wiki/Polizistenmord_von_Heilbronn" +bildnachweis: 'Photo: p.schmelzle · CC BY-SA 3.0 (Wikimedia Commons)' +--- +At the scene on the Theresienwiese in Heilbronn, a memorial stele commemorates police officer Michèle Kiesewetter, who was shot dead by the NSU on 25 April 2007; her colleague was critically injured in the attack. + +From 2007 to 2012 a simpler plaque stood there; in 2012 it was replaced by a new memorial stele naming all the victims of the NSU murder series. Commemorative events are held there annually. diff --git a/content/erinnerungsorte/gedenktafel-habil-kilic-muenchen/cover.jpg b/content/erinnerungsorte/gedenktafel-habil-kilic-muenchen/cover.jpg new file mode 100644 index 0000000..3d51ef6 --- /dev/null +++ b/content/erinnerungsorte/gedenktafel-habil-kilic-muenchen/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6d69791a815efb6aa8da2b3dc2449fed3da39c170cb4cd9d836091d30ec7a7e +size 622520 diff --git a/content/erinnerungsorte/gedenktafel-habil-kilic-muenchen/index.de.md b/content/erinnerungsorte/gedenktafel-habil-kilic-muenchen/index.de.md new file mode 100644 index 0000000..5e2b8f6 --- /dev/null +++ b/content/erinnerungsorte/gedenktafel-habil-kilic-muenchen/index.de.md @@ -0,0 +1,15 @@ +--- +title: "Gedenktafel für Habil Kılıç" +subtitle: "Habil Kılıç" +date: 2013-01-01 +art: "Gedenktafel" +lat: 48.1204 +lng: 11.61588 +address: "Bad-Schachener-Straße 14, 81671 München" +datum: "2013" +quelle: "https://stadtgeschichte-muenchen.de/sehenswert/d_sehenswert.php?id=2025" +bildnachweis: 'Foto: Anonym · CC BY-SA 4.0 (Wikimedia Commons)' +--- +Habil Kılıç betrieb mit seiner Familie ein Obst- und Gemüsegeschäft in der Bad-Schachener-Straße 14, wo er am 29. August 2001 vom NSU mit zwei Kopfschüssen ermordet wurde. + +Seit 2013 erinnert am Tatort eine Gedenktafel an ihn, die die Namen aller NSU-Opfer trägt und von den sieben betroffenen Städten getragen wird. Jährlich finden dort Gedenkveranstaltungen statt. diff --git a/content/erinnerungsorte/gedenktafel-habil-kilic-muenchen/index.en.md b/content/erinnerungsorte/gedenktafel-habil-kilic-muenchen/index.en.md new file mode 100644 index 0000000..77ee4cf --- /dev/null +++ b/content/erinnerungsorte/gedenktafel-habil-kilic-muenchen/index.en.md @@ -0,0 +1,15 @@ +--- +title: "Memorial plaque for Habil Kılıç" +subtitle: "Habil Kılıç" +date: 2013-01-01 +art: "Memorial plaque" +lat: 48.1204 +lng: 11.61588 +address: "Bad-Schachener-Straße 14, 81671 München" +datum: "2013" +quelle: "https://stadtgeschichte-muenchen.de/sehenswert/d_sehenswert.php?id=2025" +bildnachweis: 'Photo: Anonym · CC BY-SA 4.0 (Wikimedia Commons)' +--- +Habil Kılıç ran a fruit and vegetable shop with his family at Bad-Schachener-Straße 14, where he was murdered by the NSU with two shots to the head on 29 August 2001. + +Since 2013, a memorial plaque at the scene has commemorated him; it bears the names of all NSU victims and is jointly borne by the seven affected cities. Commemorative events are held there annually. diff --git a/content/erinnerungsorte/gedenktafel-theodoros-boulgarides-muenchen/cover.jpg b/content/erinnerungsorte/gedenktafel-theodoros-boulgarides-muenchen/cover.jpg new file mode 100644 index 0000000..ed0244a --- /dev/null +++ b/content/erinnerungsorte/gedenktafel-theodoros-boulgarides-muenchen/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26626bb3e6b17fd3b134726e25012bf36033214fc4eb72445a9edb43f4876220 +size 282124 diff --git a/content/erinnerungsorte/gedenktafel-theodoros-boulgarides-muenchen/index.de.md b/content/erinnerungsorte/gedenktafel-theodoros-boulgarides-muenchen/index.de.md new file mode 100644 index 0000000..3a6a25a --- /dev/null +++ b/content/erinnerungsorte/gedenktafel-theodoros-boulgarides-muenchen/index.de.md @@ -0,0 +1,15 @@ +--- +title: "Gedenktafel für Theodoros Boulgarides" +subtitle: "Theodoros Boulgarides" +date: 2013-01-01 +art: "Gedenktafel" +lat: 48.1394921 +lng: 11.533901 +address: "Trappentreustraße 4, 80339 München" +datum: "2013" +quelle: "https://stadtgeschichte-muenchen.de/sehenswert/d_sehenswert.php?id=2026" +bildnachweis: 'Foto: Cholo 3 · CC BY-SA 3.0 (Wikimedia Commons)' +--- +Am 15. Juni 2005 wurde Theodoros Boulgarides in seinem erst zwei Wochen zuvor eröffneten Schlüsseldienst in der Trappentreustraße 4 vom NSU erschossen. + +Seit 2013 erinnert am Tatort eine Gedenktafel an ihn; sie ist Teil eines abgestimmten Gedenkkonzepts der sieben vom NSU betroffenen Städte und trägt die Namen aller zehn NSU-Opfer. diff --git a/content/erinnerungsorte/gedenktafel-theodoros-boulgarides-muenchen/index.en.md b/content/erinnerungsorte/gedenktafel-theodoros-boulgarides-muenchen/index.en.md new file mode 100644 index 0000000..25c5926 --- /dev/null +++ b/content/erinnerungsorte/gedenktafel-theodoros-boulgarides-muenchen/index.en.md @@ -0,0 +1,15 @@ +--- +title: "Memorial plaque for Theodoros Boulgarides" +subtitle: "Theodoros Boulgarides" +date: 2013-01-01 +art: "Memorial plaque" +lat: 48.1394921 +lng: 11.533901 +address: "Trappentreustraße 4, 80339 München" +datum: "2013" +quelle: "https://stadtgeschichte-muenchen.de/sehenswert/d_sehenswert.php?id=2026" +bildnachweis: 'Photo: Cholo 3 · CC BY-SA 3.0 (Wikimedia Commons)' +--- +On 15 June 2005, Theodoros Boulgarides was shot dead by the NSU in the locksmith's shop he had opened just two weeks earlier at Trappentreustraße 4. + +Since 2013, a memorial plaque at the scene has commemorated him; it is part of a coordinated commemorative concept of the seven cities affected by the NSU and bears the names of all ten NSU victims. diff --git a/content/erinnerungsorte/halitplatz-kassel/cover.jpg b/content/erinnerungsorte/halitplatz-kassel/cover.jpg new file mode 100644 index 0000000..ad7baf9 --- /dev/null +++ b/content/erinnerungsorte/halitplatz-kassel/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f7c5397a4e59af2bf1ee577505e9bfe9b9ca9520bce393285015c09bad4fd49 +size 435308 diff --git a/content/erinnerungsorte/halitplatz-kassel/index.de.md b/content/erinnerungsorte/halitplatz-kassel/index.de.md new file mode 100644 index 0000000..93584ed --- /dev/null +++ b/content/erinnerungsorte/halitplatz-kassel/index.de.md @@ -0,0 +1,15 @@ +--- +title: "Halitplatz" +subtitle: "Halit Yozgat" +date: 2012-01-01 +art: "Platz" +lat: 51.326727 +lng: 9.499672 +address: "Holländische Straße / Mombachstraße, 34127 Kassel" +datum: "01.10.2012" +quelle: "https://de.wikipedia.org/wiki/Halit_Yozgat" +bildnachweis: 'Foto: Hafenbar · CC BY-SA 3.0 DE (Wikimedia Commons)' +--- +Der Halitplatz in Kassel wurde am 1. Oktober 2012 zum Gedenken an Halit Yozgat eingeweiht, der am 6. April 2006 in seinem Internetcafé an der Holländischen Straße 82 vom NSU erschossen wurde. + +Der Platz liegt rund 100 Meter vom Tatort entfernt; auch die dortige Straßenbahnhaltestelle wurde nach ihm benannt. Auf dem Platz steht eine Stele mit einer Gedenktafel, die die Namen der zehn vom NSU ermordeten Menschen trägt. diff --git a/content/erinnerungsorte/halitplatz-kassel/index.en.md b/content/erinnerungsorte/halitplatz-kassel/index.en.md new file mode 100644 index 0000000..908e8f2 --- /dev/null +++ b/content/erinnerungsorte/halitplatz-kassel/index.en.md @@ -0,0 +1,15 @@ +--- +title: "Halitplatz" +subtitle: "Halit Yozgat" +date: 2012-01-01 +art: "Square" +lat: 51.326727 +lng: 9.499672 +address: "Holländische Straße / Mombachstraße, 34127 Kassel" +datum: "01.10.2012" +quelle: "https://de.wikipedia.org/wiki/Halit_Yozgat" +bildnachweis: 'Photo: Hafenbar · CC BY-SA 3.0 DE (Wikimedia Commons)' +--- +Halitplatz in Kassel was inaugurated on 1 October 2012 in memory of Halit Yozgat, who was shot dead by the NSU on 6 April 2006 in his internet café at Holländische Straße 82. + +The square lies around 100 metres from the scene of the crime; the tram stop there was also named after him. On the square stands a stele bearing a memorial plaque with the names of the ten people murdered by the NSU. diff --git a/content/erinnerungsorte/mehmet-kubasik-platz-dortmund/cover.jpg b/content/erinnerungsorte/mehmet-kubasik-platz-dortmund/cover.jpg new file mode 100644 index 0000000..fd5f5bf --- /dev/null +++ b/content/erinnerungsorte/mehmet-kubasik-platz-dortmund/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fe5cef2072e9842e6cc316f802f25dff0504ad66dd49af5853275c4338c003e +size 308345 diff --git a/content/erinnerungsorte/mehmet-kubasik-platz-dortmund/index.de.md b/content/erinnerungsorte/mehmet-kubasik-platz-dortmund/index.de.md new file mode 100644 index 0000000..5e58736 --- /dev/null +++ b/content/erinnerungsorte/mehmet-kubasik-platz-dortmund/index.de.md @@ -0,0 +1,15 @@ +--- +title: "Mehmet-Kubaşık-Platz" +subtitle: "Mehmet Kubaşık" +date: 2019-01-01 +art: "Platz" +lat: 51.5243 +lng: 7.4562 +address: "Münsterstraße / Mallinckrodtstraße, Nordstadt, 44145 Dortmund" +datum: "08.11.2019" +quelle: "https://de.wikipedia.org/wiki/Mehmet_Kuba%C5%9F%C4%B1k" +bildnachweis: 'Foto: Joehawkins · CC BY-SA 4.0 (Wikimedia Commons)' +--- +Der Mehmet-Kubaşık-Platz in der Dortmunder Nordstadt erinnert an den Kioskbesitzer Mehmet Kubaşık, der am 4. April 2006 vom NSU an seinem Kiosk an der Mallinckrodtstraße ermordet wurde. + +Die Bezirksvertretung Innenstadt-Nord beschloss die Benennung am 5. Februar 2019; die offizielle Einweihung fand am 8. November 2019 im Beisein der Familie Kubaşık statt. Bereits 2012 war ein Gedenkstein vor dem ehemaligen Kiosk enthüllt worden. diff --git a/content/erinnerungsorte/mehmet-kubasik-platz-dortmund/index.en.md b/content/erinnerungsorte/mehmet-kubasik-platz-dortmund/index.en.md new file mode 100644 index 0000000..ed060e5 --- /dev/null +++ b/content/erinnerungsorte/mehmet-kubasik-platz-dortmund/index.en.md @@ -0,0 +1,15 @@ +--- +title: "Mehmet-Kubaşık-Platz" +subtitle: "Mehmet Kubaşık" +date: 2019-01-01 +art: "Square" +lat: 51.5243 +lng: 7.4562 +address: "Münsterstraße / Mallinckrodtstraße, Nordstadt, 44145 Dortmund" +datum: "08.11.2019" +quelle: "https://de.wikipedia.org/wiki/Mehmet_Kuba%C5%9F%C4%B1k" +bildnachweis: 'Photo: Joehawkins · CC BY-SA 4.0 (Wikimedia Commons)' +--- +Mehmet-Kubaşık-Platz in Dortmund's Nordstadt district commemorates kiosk owner Mehmet Kubaşık, who was murdered by the NSU at his kiosk on Mallinckrodtstraße on 4 April 2006. + +The Innenstadt-Nord district council decided on the naming on 5 February 2019; the official inauguration took place on 8 November 2019 in the presence of the Kubaşık family. A memorial stone had already been unveiled outside the former kiosk in 2012. diff --git a/content/erinnerungsorte/nsu-mahnmal-nuernberg/cover.jpg b/content/erinnerungsorte/nsu-mahnmal-nuernberg/cover.jpg new file mode 100644 index 0000000..45ad00d --- /dev/null +++ b/content/erinnerungsorte/nsu-mahnmal-nuernberg/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28271a4b050dad6f11579c24f277f8ab61cf4c3fdfba7c1902bba7f38e66c42 +size 208008 diff --git a/content/erinnerungsorte/nsu-mahnmal-nuernberg/index.de.md b/content/erinnerungsorte/nsu-mahnmal-nuernberg/index.de.md new file mode 100644 index 0000000..ca9b5b8 --- /dev/null +++ b/content/erinnerungsorte/nsu-mahnmal-nuernberg/index.de.md @@ -0,0 +1,15 @@ +--- +title: "Mahnmal für die Opfer der „NSU“-Gewalttaten" +subtitle: "Enver Şimşek, Abdurrahim Özüdoğru, İsmail Yaşar" +date: 2013-01-01 +art: "Mahnmal" +lat: 49.4487 +lng: 11.0745 +address: "Kartäusertor, an der „Straße der Menschenrechte“, 90402 Nürnberg" +datum: "21.03.2013" +quelle: "https://www.nuernberg.de/internet/menschenrechte/nsu_mahnmal.html" +bildnachweis: 'Foto: Aarp65 · CC BY-SA 3.0 (Wikimedia Commons)' +--- +Das offizielle Mahnmal für die Opfer der „NSU“-Gewalttaten wurde am 21. März 2013, dem Internationalen Tag gegen Rassismus, eingeweiht. Es erinnert an die drei in Nürnberg ermordeten NSU-Opfer Enver Şimşek, Abdurrahim Özüdoğru und İsmail Yaşar. + +Das Mahnmal besteht aus einer Stele mit den Namen der NSU-Opfer sowie vier Ginkgo-Bäumen – drei für die Nürnberger Opfer, einer für alle weiteren Opfer rechtsextremer Gewalt. Es liegt am Kartäusertor in unmittelbarer Nähe der von Dani Karavan gestalteten „Straße der Menschenrechte“. diff --git a/content/erinnerungsorte/nsu-mahnmal-nuernberg/index.en.md b/content/erinnerungsorte/nsu-mahnmal-nuernberg/index.en.md new file mode 100644 index 0000000..b32b027 --- /dev/null +++ b/content/erinnerungsorte/nsu-mahnmal-nuernberg/index.en.md @@ -0,0 +1,15 @@ +--- +title: 'Memorial for the victims of the "NSU" acts of violence' +subtitle: "Enver Şimşek, Abdurrahim Özüdoğru, İsmail Yaşar" +date: 2013-01-01 +art: "Memorial" +lat: 49.4487 +lng: 11.0745 +address: "Kartäusertor, an der „Straße der Menschenrechte“, 90402 Nürnberg" +datum: "21.03.2013" +quelle: "https://www.nuernberg.de/internet/menschenrechte/nsu_mahnmal.html" +bildnachweis: 'Photo: Aarp65 · CC BY-SA 3.0 (Wikimedia Commons)' +--- +The official memorial for the victims of the "NSU" acts of violence was inaugurated on 21 March 2013, the International Day against Racism. It commemorates the three NSU victims murdered in Nuremberg: Enver Şimşek, Abdurrahim Özüdoğru, and İsmail Yaşar. + +The memorial consists of a stele bearing the names of the NSU victims and four ginkgo trees – three for the Nuremberg victims, one for all other victims of right-wing extremist violence. It is located at the Kartäusertor, in the immediate vicinity of the "Way of Human Rights" ("Straße der Menschenrechte") designed by Dani Karavan. diff --git a/content/impressum.de.md b/content/impressum.de.md new file mode 100644 index 0000000..858536b --- /dev/null +++ b/content/impressum.de.md @@ -0,0 +1,62 @@ +--- +title: "Impressum" +--- + +**Offener Prozess gGmbH +Ein Dokumentationszentrum zum NSU-Komplex in Sachsen** + +**Postadresse:** +Zietenstraße 2a +09130 Chemnitz + +**Besuchsadresse** +Johannisplatz 8 +09111 Chemnitz +Deutschland + +**E-Mail:** info@offener-prozess.de + +**Vertreten durch die Geschäftsführerinnen:** +Dr. Nora Krzywinski, Esther Gerstenberg + +**Handelsregistereintrag:** +Amtsgericht Chemnitz +HRB 37980 + +**Umsatzsteuer-Identifikationsnummer gemäß § 27a Umsatzsteuergesetz:** +DE459934404 + +**Gemeinnützigkeit:** +Die Offener Prozess gGmbH ist als gemeinnützig anerkannt. + +**Verantwortlich für den Inhalt nach § 18 Abs. 2 MStV:** +Dr. Nora Krzywinski +Zietenstraße 2a +09130 Chemnitz + +**Staatliche Förderung:** +Gefördert durch die Beauftragte der Bundesregierung für Kultur und Medien aufgrund eines Beschlusses des Deutschen Bundestages + +Diese Maßnahme wird mitfinanziert durch Steuermittel auf der Grundlage des vom Sächsischen Landtag beschlossenen Haushaltes; Sächsisches Staatsministerium für Soziales, Gesundheit und Gesellschaftlichen Zusammenhalt + +In der Legislatur 2019 bis 2025 wurde das Vorhaben gefördert vom Sächsischen Staatsministerium der Justiz und für Demokratie, Europa und Gleichstellung. + +In Kooperation mit Chemnitz Kulturhauptstadt Europas 2025 + +**Programmierung:** +161HZ - Medientechnik & Event IT + + + + +## Verwendete Open-Source-Software + +Diese Website wird mit freier und quelloffener Software erstellt und betrieben: + +- **[Hugo](https://gohugo.io)** – Static-Site-Generator (Apache License 2.0) +- **[UIkit](https://getuikit.com)** – Frontend-Framework (MIT License) +- **[Leaflet](https://leafletjs.com)** – Bibliothek für interaktive Karten (BSD-2-Clause License) +- **[Leaflet.markercluster](https://github.com/Leaflet/Leaflet.markercluster)** – Bündelung von Kartenmarkern (MIT License) +- **[nginx](https://nginx.org)** – Webserver (BSD-2-Clause License) + +Die Kartendarstellung nutzt Kartenmaterial von **[OpenStreetMap](https://www.openstreetmap.org/copyright)** – © OpenStreetMap-Mitwirkende, lizenziert unter der Open Database License (ODbL). diff --git a/content/impressum.en.md b/content/impressum.en.md new file mode 100644 index 0000000..fc5e461 --- /dev/null +++ b/content/impressum.en.md @@ -0,0 +1,62 @@ +--- +title: "Imprint" +--- + +**Offener Prozess gGmbH +A documentation center on the NSU complex in Saxony** + +**Postal address:** +Zietenstraße 2a +09130 Chemnitz + +**Visiting address** +Johannisplatz 8 +09111 Chemnitz +Deutschland + +**Email:** info@offener-prozess.de + +**Represented by the managing directors:** +Dr. Nora Krzywinski, Esther Gerstenberg + +**Commercial register entry:** +Amtsgericht Chemnitz +HRB 37980 + +**VAT identification number pursuant to § 27a of the German VAT Act:** +DE459934404 + +**Non-profit status:** +Offener Prozess gGmbH is recognized as non-profit. + +**Responsible for the content pursuant to § 18 (2) MStV:** +Dr. Nora Krzywinski +Zietenstraße 2a +09130 Chemnitz + +**Public funding:** +Funded by the Federal Government Commissioner for Culture and the Media based on a resolution of the German Bundestag + +This measure is co-financed with tax funds on the basis of the budget approved by the Saxon State Parliament; Saxon State Ministry for Social Affairs, Health and Social Cohesion + +In the 2019 to 2025 legislative period, the project was funded by the Saxon State Ministry of Justice and for Democracy, Europe and Equality. + +In cooperation with Chemnitz European Capital of Culture 2025 + +**Programmierung:** +161HZ - Medientechnik & Event IT + + + + +## Open-source software used + +This website is built and operated using free and open-source software: + +- **[Hugo](https://gohugo.io)** – static site generator (Apache License 2.0) +- **[UIkit](https://getuikit.com)** – front-end framework (MIT License) +- **[Leaflet](https://leafletjs.com)** – library for interactive maps (BSD-2-Clause License) +- **[Leaflet.markercluster](https://github.com/Leaflet/Leaflet.markercluster)** – clustering of map markers (MIT License) +- **[nginx](https://nginx.org)** – web server (BSD-2-Clause License) + +The map display uses map data from **[OpenStreetMap](https://www.openstreetmap.org/copyright)** – © OpenStreetMap contributors, licensed under the Open Database License (ODbL). diff --git a/content/schauplaetze/_index.de.md b/content/schauplaetze/_index.de.md new file mode 100644 index 0000000..6653b6d --- /dev/null +++ b/content/schauplaetze/_index.de.md @@ -0,0 +1,6 @@ +--- +title: "Schauplätze" +--- + +Alle dokumentierten Schauplätze des NSU-Komplexes im Überblick. Die Karte und +das Kartengitter lassen sich nach Kategorien filtern. diff --git a/content/schauplaetze/_index.en.md b/content/schauplaetze/_index.en.md new file mode 100644 index 0000000..ec22680 --- /dev/null +++ b/content/schauplaetze/_index.en.md @@ -0,0 +1,6 @@ +--- +title: "Locations" +--- + +All documented sites of the NSU complex at a glance. The map and the grid can be +filtered by category. diff --git a/content/schauplaetze/aufenthaltsort-mandy-s-buechenbach/index.de.md b/content/schauplaetze/aufenthaltsort-mandy-s-buechenbach/index.de.md new file mode 100644 index 0000000..5c9ad52 --- /dev/null +++ b/content/schauplaetze/aufenthaltsort-mandy-s-buechenbach/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Aufenthaltsort Mandy S." +date: 2017-12-08 +kategorien: ["Aufenthaltsorte"] +lat: 49.2654955 +lng: 11.0516503 +address: "Rother Straße 8B, 91186 Büchenbach" +datum: "08.12.2017" +quelle: "„Mandy S. war auch in der fränkischen Neonazi-Szene aktiv“, nordbayern.de vom 08.12.2017, Internet: https://www.nordbayern.de/region/mandy-s-war-auch-in-der-frankischen-neonazi-szene-aktiv-1.6966580 [Aufruf 07.09.2021] Zeugenaussage von Mandy S. im NSU-Prozess München am 11.03.2014, Internetseite: https://www.nsu-watch.info/2014/03/protokoll-89-verhandlungstag-26-februar-2014/ [Aufruf 07.09.2021] Zeugenaussage von Mandy S. im NSU-Prozess München am 27.02.2014, Internetseite: https://www.nsu-watch.info/2014/03/protokoll-90-verhandlungstag-27-februar-2014/ [Aufruf 07.09.2021] Zeugenaussage von Mandy S. im NSU-Prozess München am 10.04.2014, Internetseite: https://www.nsu-watch.info/2014/04/protokoll-105-verhandlungstag-10-april-2014/ [Aufruf 07.09.2021] Deutscher Bundestag, 19. Wahlperiode: Antwort der Bundesregierung auf die Kleine Anfrage der Abgeordneten Martina Renner, Dr. André Hahn, Gökay Akbulut, weiterer Abgeordneter und der Fraktion DIE LINKE. Drucksache 19/6749 – Aktueller Stand laufender Ermittlungsverfahren im Zusammenhang mit Unterstützungshandlungen für den „Nationalsozialistischen Untergrund“ und Aktivitäten bereits verurteilter NSU-Helfer vom 18.01.2019, Internetseite: https://dserver.bundestag.de/btd/19/071/1907165.pdf [Aufruf 08.09.2021]" +--- +Die aus Erlabrunn bei Johanngeorgenstadt in Sachsen stammende Mandy S. organisierte dem späteren NSU-Trio nach seiner Flucht Ende Januar 1998 einen Unterschlupf in einer Wohnung in Chemnitz. Dort lebten die RechtsterroristInnen vom 1. Januar 1998 bis zum 31. Juli 2002. S. lieh Beate Zschäpe damals zudem ihre AOK-Krankenkassenkarte. Beate Zschäpe verwendete den Namen von Mandy S. in verschiedenen Dokumenten als Tarnnamen. Den im Münchner NSU-Prozess 2018 verurteilten Neonazi André E. kannte sie bereits aus der Schule. Von 31. Juli 2002 bis 10. März 2003 lebte S. in Büchenbach bei Roth, nahe Nürnberg, wo sie Schießtrainings im örtlichen Schützenverein absolvierte. Sie pflegte u.a. Kontakte zur 2004 verbotenen neonazistischen „Fränkischen Aktionsfront“ (FAF) sowie zur 2011 verbotenen neonazistischen „Hilfsorganisation für nationale politische Gefangene und deren Angehörige e.V.“ (HNG). Der Name des damaligen führenden FAF-Aktivisten, Matthias Fischer, stand auf der Kontaktliste des NSU, die nach dem Abtauchen des Trios im Januar 1998 in einer von Beate Zschäpe angemieteten Garage in Jena gefunden worden war. Mandy S. publizierte zudem im Neonazi-Fanzine „Landser“, das von Matthias Fischer herausgegebenen worden war. Gegen S., die nicht mehr in Franken lebt, läuft im Zusammenhang mit den NSU-Verbrechen seit Jahren ein Ermittlungsverfahren wegen des Verdachts der Unterstützung einer terroristischen Vereinigung. diff --git a/content/schauplaetze/aufenthaltsort-mandy-s-buechenbach/index.en.md b/content/schauplaetze/aufenthaltsort-mandy-s-buechenbach/index.en.md new file mode 100644 index 0000000..0615a66 --- /dev/null +++ b/content/schauplaetze/aufenthaltsort-mandy-s-buechenbach/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Mandy S.'s Place of Residence" +date: 2017-12-08 +kategorien: ["Aufenthaltsorte"] +lat: 49.2654955 +lng: 11.0516503 +address: "Rother Straße 8B, 91186 Büchenbach" +datum: "08.12.2017" +quelle: "„Mandy S. war auch in der fränkischen Neonazi-Szene aktiv“, nordbayern.de vom 08.12.2017, Internet: https://www.nordbayern.de/region/mandy-s-war-auch-in-der-frankischen-neonazi-szene-aktiv-1.6966580 [Aufruf 07.09.2021] Zeugenaussage von Mandy S. im NSU-Prozess München am 11.03.2014, Internetseite: https://www.nsu-watch.info/2014/03/protokoll-89-verhandlungstag-26-februar-2014/ [Aufruf 07.09.2021] Zeugenaussage von Mandy S. im NSU-Prozess München am 27.02.2014, Internetseite: https://www.nsu-watch.info/2014/03/protokoll-90-verhandlungstag-27-februar-2014/ [Aufruf 07.09.2021] Zeugenaussage von Mandy S. im NSU-Prozess München am 10.04.2014, Internetseite: https://www.nsu-watch.info/2014/04/protokoll-105-verhandlungstag-10-april-2014/ [Aufruf 07.09.2021] Deutscher Bundestag, 19. Wahlperiode: Antwort der Bundesregierung auf die Kleine Anfrage der Abgeordneten Martina Renner, Dr. André Hahn, Gökay Akbulut, weiterer Abgeordneter und der Fraktion DIE LINKE. Drucksache 19/6749 – Aktueller Stand laufender Ermittlungsverfahren im Zusammenhang mit Unterstützungshandlungen für den „Nationalsozialistischen Untergrund“ und Aktivitäten bereits verurteilter NSU-Helfer vom 18.01.2019, Internetseite: https://dserver.bundestag.de/btd/19/071/1907165.pdf [Aufruf 08.09.2021]" +--- +Mandy S., who came from Erlabrunn near Johanngeorgenstadt in Saxony, organised a hideout for the later NSU trio in a flat in Chemnitz after their flight at the end of January 1998. The right-wing terrorists lived there from 1 January 1998 to 31 July 2002. At the time, S. also lent Beate Zschäpe her AOK health insurance card. Beate Zschäpe used Mandy S.'s name as an alias in various documents. She already knew the neo-Nazi André E., convicted in the Munich NSU trial in 2018, from school. From 31 July 2002 to 10 March 2003, S. lived in Büchenbach near Roth, close to Nuremberg, where she took shooting training at the local shooting club. Among others, she maintained contacts with the neo-Nazi "Fränkische Aktionsfront" (FAF), banned in 2004, and the neo-Nazi "Hilfsorganisation für nationale politische Gefangene und deren Angehörige e.V." (HNG), banned in 2011. The name of the then-leading FAF activist, Matthias Fischer, appeared on the NSU's contact list, which was found in a garage in Jena rented by Beate Zschäpe after the trio went underground in January 1998. Mandy S. also published in the neo-Nazi fanzine „Landser", which was edited by Matthias Fischer. S., who no longer lives in Franconia, has for years been the subject of an investigation in connection with the NSU crimes on suspicion of supporting a terrorist organisation. diff --git a/content/schauplaetze/baufirma-aus-zwickau-zwickau/index.de.md b/content/schauplaetze/baufirma-aus-zwickau-zwickau/index.de.md new file mode 100644 index 0000000..b2d94d2 --- /dev/null +++ b/content/schauplaetze/baufirma-aus-zwickau-zwickau/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Baufirma aus Zwickau" +subtitle: "Ralf Marschner, Uwe Mundlos, M.-F. B." +date: 2021-04-01 +kategorien: ["Aufenthaltsorte"] +lat: 50.7152644 +lng: 12.4937232 +address: "Schillerstraße 1, 08056 Zwickau" +quelle: "NSU Watch Sachsen, Bericht zum NSU-Sächsischen Untersuchungsausschuss, Sitzung 16." +--- +Ralf Marschner (vermutlich damals V-Mann des Verfassungschutzes) soll Uwe Mundlos unter dem Namen Max-Florian B. in seiner Zwickauer Baufirma beschäftigt haben. An zwei Tagen wurden von dieser Firma Autos angemietet, an denen der NSU in München und Nürnberg Morde verübt hat. diff --git a/content/schauplaetze/baufirma-aus-zwickau-zwickau/index.en.md b/content/schauplaetze/baufirma-aus-zwickau-zwickau/index.en.md new file mode 100644 index 0000000..c6c001d --- /dev/null +++ b/content/schauplaetze/baufirma-aus-zwickau-zwickau/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Construction Company from Zwickau" +subtitle: "Ralf Marschner, Uwe Mundlos, M.-F. B." +date: 2021-04-01 +kategorien: ["Aufenthaltsorte"] +lat: 50.7152644 +lng: 12.4937232 +address: "Schillerstraße 1, 08056 Zwickau" +quelle: "NSU Watch Sachsen, Bericht zum NSU-Sächsischen Untersuchungsausschuss, Sitzung 16." +--- +Ralf Marschner (presumed at the time to be an informant for the Office for the Protection of the Constitution) is said to have employed Uwe Mundlos under the name Max-Florian B. at his construction company in Zwickau. On two occasions, cars were rented from this company that the NSU used to commit murders in Munich and Nuremberg. diff --git a/content/schauplaetze/bekenner-dvd-an-gruppe-kaz-nuernberg/index.de.md b/content/schauplaetze/bekenner-dvd-an-gruppe-kaz-nuernberg/index.de.md new file mode 100644 index 0000000..29725de --- /dev/null +++ b/content/schauplaetze/bekenner-dvd-an-gruppe-kaz-nuernberg/index.de.md @@ -0,0 +1,11 @@ +--- +title: "„Bekenner-DVD“ an „Gruppe KAZ“" +date: 2011-11-23 +kategorien: ["Bekenner-DVDs"] +lat: 49.463041 +lng: 11.073262 +address: "Reichstraße 8, 90408 Nürnberg" +datum: "23.11.2011" +quelle: "„Spur der Neofaschisten führt auch nach Nürnberg!“ Presseerklärung der Gruppe Kommunistische Arbeiterzeitung vom 23.11.2011, Internetseite:https://kaz-online.de/artikel/spur-der-neofaschisten-fuehrt-auch-nach-nuernberg [Aufruf 08.09.2021]" +--- +Nach der Selbstenttarnung des NSU am 4. November 2011 wurden bundesweit „Bekenner-DVDs“ unter anderem an muslimische und linke Organisationen verschickt. Am 12. November 2011 landete ein mit der Post versendetes Exemplar, adressiert an die „Gruppe KAZ“ (Kommunistische Arbeiterzeitung), im Briefkasten des damaligen linken „Roten Zentrums“ in der Reichstraße 8 / Ecke Schweppermannstraße in der Nürnberger Nordstadt. Der linke Treffpunkt war in Vorfeld bereits mehrfach von Neonazis attackiert worden. TäterInnen wurden, soweit bekannt, bis heute nicht gefasst. diff --git a/content/schauplaetze/bekenner-dvd-an-gruppe-kaz-nuernberg/index.en.md b/content/schauplaetze/bekenner-dvd-an-gruppe-kaz-nuernberg/index.en.md new file mode 100644 index 0000000..9b03243 --- /dev/null +++ b/content/schauplaetze/bekenner-dvd-an-gruppe-kaz-nuernberg/index.en.md @@ -0,0 +1,11 @@ +--- +title: '„Confession DVD“ to „Gruppe KAZ“' +date: 2011-11-23 +kategorien: ["Bekenner-DVDs"] +lat: 49.463041 +lng: 11.073262 +address: "Reichstraße 8, 90408 Nürnberg" +datum: "23.11.2011" +quelle: "„Spur der Neofaschisten führt auch nach Nürnberg!“ Presseerklärung der Gruppe Kommunistische Arbeiterzeitung vom 23.11.2011, Internetseite:https://kaz-online.de/artikel/spur-der-neofaschisten-fuehrt-auch-nach-nuernberg [Aufruf 08.09.2021]" +--- +After the NSU exposed itself on 4 November 2011, „confession DVDs" were sent nationwide to, among others, Muslim and left-wing organisations. On 12 November 2011, a copy sent by post, addressed to the "Gruppe KAZ" (Kommunistische Arbeiterzeitung), landed in the letterbox of the then left-wing "Rotes Zentrum" at Reichstraße 8, on the corner of Schweppermannstraße, in Nuremberg's Nordstadt district. The left-wing meeting place had already been attacked several times by neo-Nazis beforehand. As far as is known, the perpetrators have not been caught to this day. diff --git a/content/schauplaetze/bekenner-dvds-nuernberg/index.de.md b/content/schauplaetze/bekenner-dvds-nuernberg/index.de.md new file mode 100644 index 0000000..31d3eea --- /dev/null +++ b/content/schauplaetze/bekenner-dvds-nuernberg/index.de.md @@ -0,0 +1,11 @@ +--- +title: "„Bekenner-DVDs“" +date: 2011-11-19 +kategorien: ["Bekenner-DVDs"] +lat: 49.44899 +lng: 11.08637 +address: "Marienstraße 9-11, 90402 Nürnberg" +datum: "19.11.2011" +quelle: "„Brachte ein Kontaktmann die Bekenner-DVD nach Nürnberg?“ auf nordbayern.de vom 19.11.2011, Internetseite: https://www.nordbayern.de/region/nuernberg/brachte-ein-kontaktmann-die-bekenner-dvd-nach-nurnberg-1.1665023 [Aufruf 08.09.2021]Mair, Birgit: Die Opfer des NSU und die Aufarbeitung der Verbrechen (5. aktualisierte und erweiterte Auflage 2021) Nürnberg, S. 53." +--- +Nach der Selbstenttarnung des NSU am 4. November 2011 wurden bundesweit „Bekenner-DVDs“ unter anderem an muslimische und linke Organisationen verschickt. Die beliebte Comic-Figur „Paulchen Panther“ wurde für das 15-minütige NSU-Propagandavideo missbraucht. In dem Video wurden Fotos der zehn Mordopfer sowie Fotos des deutsch-iranischen „Getränkemarkt Simon“ in der Propsteigasse in Kölner gezeigt, auf das ein Bombenanschlag verübt worden war. Auch wurden Bilder aus Fernsehbeiträgen eingeblendet, in denen die verletzten Menschen und zerstörten Geschäfte in der Kölner Keupstraße gezeigt wurden. Das Video beinhaltet auch Fotos, die einige der Opfer blutüberströmt am Tatort zeigen. Diese Bilder müssen von den Mördern selbst oder einer Helferin bzw. einem Helfer am Tatort geschossen worden sein. Den Nürnberger Nachrichten wurde ein Exemplar der DVD auf dem direkten Weg zugestellt, nicht per Post. Bis heute ist nicht geklärt, wer dies getan hat. diff --git a/content/schauplaetze/bekenner-dvds-nuernberg/index.en.md b/content/schauplaetze/bekenner-dvds-nuernberg/index.en.md new file mode 100644 index 0000000..8b71669 --- /dev/null +++ b/content/schauplaetze/bekenner-dvds-nuernberg/index.en.md @@ -0,0 +1,11 @@ +--- +title: '„Confession DVDs“' +date: 2011-11-19 +kategorien: ["Bekenner-DVDs"] +lat: 49.44899 +lng: 11.08637 +address: "Marienstraße 9-11, 90402 Nürnberg" +datum: "19.11.2011" +quelle: "„Brachte ein Kontaktmann die Bekenner-DVD nach Nürnberg?“ auf nordbayern.de vom 19.11.2011, Internetseite: https://www.nordbayern.de/region/nuernberg/brachte-ein-kontaktmann-die-bekenner-dvd-nach-nurnberg-1.1665023 [Aufruf 08.09.2021]Mair, Birgit: Die Opfer des NSU und die Aufarbeitung der Verbrechen (5. aktualisierte und erweiterte Auflage 2021) Nürnberg, S. 53." +--- +After the NSU exposed itself on 4 November 2011, „confession DVDs" were sent nationwide to, among others, Muslim and left-wing organisations. The popular cartoon character "Paulchen Panther" was misused for the 15-minute NSU propaganda video. The video showed photos of the ten murder victims as well as photos of the German-Iranian "Getränkemarkt Simon" on Propsteigasse in Cologne, which had been the target of a bomb attack. It also included footage from television reports showing the injured people and destroyed shops on Cologne's Keupstraße. The video also contains photos showing some of the victims covered in blood at the crime scene. These images must have been taken by the murderers themselves or by an accomplice at the scene. A copy of the DVD was delivered directly to the Nürnberger Nachrichten, not by post. To this day it remains unclear who did this. diff --git a/content/schauplaetze/bekennerschreiben-zum-puppentorso-jena/cover.jpg b/content/schauplaetze/bekennerschreiben-zum-puppentorso-jena/cover.jpg new file mode 100644 index 0000000..0904cef --- /dev/null +++ b/content/schauplaetze/bekennerschreiben-zum-puppentorso-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f60c1fe78522cc5bf41492ff00ae0943f969d6b40d29ca412b394d7be0cae602 +size 185842 diff --git a/content/schauplaetze/bekennerschreiben-zum-puppentorso-jena/index.de.md b/content/schauplaetze/bekennerschreiben-zum-puppentorso-jena/index.de.md new file mode 100644 index 0000000..f62dfd9 --- /dev/null +++ b/content/schauplaetze/bekennerschreiben-zum-puppentorso-jena/index.de.md @@ -0,0 +1,14 @@ +--- +title: "Bekennerschreiben zum Puppentorso" +subtitle: "Beate Zschäpe" +date: 1995-11-11 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9318359 +lng: 11.5877551 +address: "Am Planetarium 8, 07743 Jena" +datum: "11.11.1995" +quelle: "OTZ Jena, 21.12.2011." +--- +Am 11.11.1995 erhielt die Lokalredaktion Jena der Ostthüringer Zeitung, Am Planetarium 8,  einen anonymen Brief. Er enthielt Bekennerschreiben der Täter, die in der Kahlaischen Straße am 9.11.1995 ein Puppentorso an einer Rohrbrücke aufgehängt hatten, zusammen mit einer Polaroid-Aufnahme des Torso mit einem ausgeschnittenen Buchstaben zusammengesetzte Schriftzug. Darüber hinaus ein Polaroid-Foto eines an einen in der Stadt an eine Wand gesprühten Schriftzuges: „Nationaler Widerstand“. Bei einer Durchsuchung von Zschäpes Wohnung 1996 wurde eine Polaroidkamera sowie gelbe Sprühfarbe gefunden – ein wichtiges Indiz für die Urheberschaft der Tat. Der Brief wurde nicht veröffentlicht, sondern der Kripo übergeben. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/bekennerschreiben-zum-puppentorso-jena/index.en.md b/content/schauplaetze/bekennerschreiben-zum-puppentorso-jena/index.en.md new file mode 100644 index 0000000..007bea3 --- /dev/null +++ b/content/schauplaetze/bekennerschreiben-zum-puppentorso-jena/index.en.md @@ -0,0 +1,14 @@ +--- +title: "Letter of Confession Regarding the Doll Torso" +subtitle: "Beate Zschäpe" +date: 1995-11-11 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9318359 +lng: 11.5877551 +address: "Am Planetarium 8, 07743 Jena" +datum: "11.11.1995" +quelle: "OTZ Jena, 21.12.2011." +--- +On 11 November 1995, the Jena local editorial office of the Ostthüringer Zeitung, at Am Planetarium 8, received an anonymous letter. It contained a letter of confession from the perpetrators who had hung a doll's torso from a pipe bridge on Kahlaische Straße on 9 November 1995, together with a Polaroid photograph of the torso bearing a message composed of cut-out letters. It also contained a Polaroid photo of a slogan sprayed on a wall in the city: "Nationaler Widerstand" (National Resistance). During a search of Zschäpe's flat in 1996, a Polaroid camera and yellow spray paint were found — an important piece of evidence pointing to her authorship of the act. The letter was not published but handed over to the criminal police. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/bekennervideo-grossenhain/index.de.md b/content/schauplaetze/bekennervideo-grossenhain/index.de.md new file mode 100644 index 0000000..70ad849 --- /dev/null +++ b/content/schauplaetze/bekennervideo-grossenhain/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Bekennervideo" +subtitle: "Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Bekenner-DVDs"] +lat: 51.290905 +lng: 13.5325268 +address: "Dresdner Straße 7, 01558 Großenhain" +quelle: "In Anlehnung an ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Am 7. November 2011 wurde ein Exemplar des NSU-Bekennervideos an den PDS-Kreisverband Riesa-Großenhain (seit 2007 bereits „Die Linke“) gesendet. diff --git a/content/schauplaetze/bekennervideo-grossenhain/index.en.md b/content/schauplaetze/bekennervideo-grossenhain/index.en.md new file mode 100644 index 0000000..d8fc5cf --- /dev/null +++ b/content/schauplaetze/bekennervideo-grossenhain/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Confession Video" +subtitle: "Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Bekenner-DVDs"] +lat: 51.290905 +lng: 13.5325268 +address: "Dresdner Straße 7, 01558 Großenhain" +quelle: "In Anlehnung an ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +On 7 November 2011, a copy of the NSU confession video was sent to the PDS district association Riesa-Großenhain (already "Die Linke" since 2007). diff --git a/content/schauplaetze/bekennervideo-reinsdorf/index.de.md b/content/schauplaetze/bekennervideo-reinsdorf/index.de.md new file mode 100644 index 0000000..76ea205 --- /dev/null +++ b/content/schauplaetze/bekennervideo-reinsdorf/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Bekennervideo" +subtitle: "Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Bekenner-DVDs"] +lat: 50.6896198 +lng: 12.5585779 +address: "August-Horch-Straße 16a, 08141 Reinsdorf" +quelle: "In Anlehnung an ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Ein Exemplar des NSU-Bekennervideos ist an das Unternehmen TeleVision Zwickau adressiert und verschickt worden. diff --git a/content/schauplaetze/bekennervideo-reinsdorf/index.en.md b/content/schauplaetze/bekennervideo-reinsdorf/index.en.md new file mode 100644 index 0000000..e2722a6 --- /dev/null +++ b/content/schauplaetze/bekennervideo-reinsdorf/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Confession Video" +subtitle: "Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Bekenner-DVDs"] +lat: 50.6896198 +lng: 12.5585779 +address: "August-Horch-Straße 16a, 08141 Reinsdorf" +quelle: "In Anlehnung an ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +A copy of the NSU confession video was addressed and sent to the company TeleVision Zwickau. diff --git a/content/schauplaetze/beschuldigte-antje-p-chemnitz/index.de.md b/content/schauplaetze/beschuldigte-antje-p-chemnitz/index.de.md new file mode 100644 index 0000000..52f5482 --- /dev/null +++ b/content/schauplaetze/beschuldigte-antje-p-chemnitz/index.de.md @@ -0,0 +1,10 @@ +--- +title: "Beschuldigte Antje P." +subtitle: "Antje P., Michael P., Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.836086 +lng: 12.9221245 +address: "Brückenstraße, 09111 Chemnitz" +--- +Antje P., die Frau von Michael P., war auch eine wichtige Hilfsperson für das NSU-Trio. Sie ließ Zschäpe ihre Identität nutzen und war Mitwisserin. Möglicherweise hat P. auch ihre Wohnung für das Trio bereitgestellt. Antje P. war ein Gründungsmitglied der sächsischen Blood&Honour-Sektion und auch zeitweilig Mitglied in der Rechtsrock-Band „Auf eigene Gefahr“ (AEG) 1994/1995. diff --git a/content/schauplaetze/beschuldigte-antje-p-chemnitz/index.en.md b/content/schauplaetze/beschuldigte-antje-p-chemnitz/index.en.md new file mode 100644 index 0000000..5c7c0b3 --- /dev/null +++ b/content/schauplaetze/beschuldigte-antje-p-chemnitz/index.en.md @@ -0,0 +1,10 @@ +--- +title: "Accused: Antje P." +subtitle: "Antje P., Michael P., Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.836086 +lng: 12.9221245 +address: "Brückenstraße, 09111 Chemnitz" +--- +Antje P., the wife of Michael P., was also an important helper for the NSU trio. She let Zschäpe use her identity and was aware of what was going on. P. may also have made her apartment available to the trio. Antje P. was a founding member of the Saxon section of Blood & Honour and was also, for a time, a member of the right-wing rock band "Auf eigene Gefahr" (AEG) in 1994/1995. diff --git a/content/schauplaetze/beschuldigte-mandy-s-schwarzenberg-erzgebirge/index.de.md b/content/schauplaetze/beschuldigte-mandy-s-schwarzenberg-erzgebirge/index.de.md new file mode 100644 index 0000000..7ce497d --- /dev/null +++ b/content/schauplaetze/beschuldigte-mandy-s-schwarzenberg-erzgebirge/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Beschuldigte Mandy S." +subtitle: "Beate Zschäpe, Uwe Mundlos, Uwe Böhnhardt, Mandy S., M.-F. B." +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.54622 +lng: 12.79222 +address: "Straße der Einheit 20, 08340 Schwarzenberg/Erzgebirge" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann. Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S. 33 ff." +--- +Mandy S. nahm das Trio in ihrer Wohnung auf und vermittelte sie nach ihrem Abtauchen 1998 an ihren damaligen Freund Max-Florian B., in dessen Wohnung sie unterkamen. Weiterhin stellte sie den Kontakt zwischen dem Trio und André E. her und sie lieh Zschäpe ihre Krankenkassenkarte für einen Frauenarztbesuch. diff --git a/content/schauplaetze/beschuldigte-mandy-s-schwarzenberg-erzgebirge/index.en.md b/content/schauplaetze/beschuldigte-mandy-s-schwarzenberg-erzgebirge/index.en.md new file mode 100644 index 0000000..b69be32 --- /dev/null +++ b/content/schauplaetze/beschuldigte-mandy-s-schwarzenberg-erzgebirge/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Accused: Mandy S." +subtitle: "Beate Zschäpe, Uwe Mundlos, Uwe Böhnhardt, Mandy S., M.-F. B." +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.54622 +lng: 12.79222 +address: "Straße der Einheit 20, 08340 Schwarzenberg/Erzgebirge" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann. Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S. 33 ff." +--- +Mandy S. took the trio into her apartment and, after they went underground in 1998, put them in touch with her then-boyfriend Max-Florian B., in whose apartment they subsequently stayed. She also established contact between the trio and André E., and lent Zschäpe her health insurance card for a visit to a gynaecologist. diff --git a/content/schauplaetze/beschuldigte-susann-e-zwickau/index.de.md b/content/schauplaetze/beschuldigte-susann-e-zwickau/index.de.md new file mode 100644 index 0000000..cb60625 --- /dev/null +++ b/content/schauplaetze/beschuldigte-susann-e-zwickau/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Beschuldigte Susann E." +subtitle: "Beate Zschäpe, André Eminger, Susann E." +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.7154943 +lng: 12.4966612 +address: "Innere Schneeberger Straße, 08056 Zwickau" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann. Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.28 ff." +--- +Das Ehepaar Susann und André E. gehörte zu den wichtigsten Unterstützern des NSU. Susann E. war die beste Freundin und engste Vertraute Beate Zschäpes und besuchte sie häufig in ihren Zwickauer Wohnungen. Somit half Susann E. bei der Aufrechterhaltung der bürgerlichen Fassade des Trios. Weiterhin war sie Mitwisserin der Raubstraftaten und lieh ihre Identität für Mietkosten und die Organisation von Urlauben und Bahncards. diff --git a/content/schauplaetze/beschuldigte-susann-e-zwickau/index.en.md b/content/schauplaetze/beschuldigte-susann-e-zwickau/index.en.md new file mode 100644 index 0000000..0d2746c --- /dev/null +++ b/content/schauplaetze/beschuldigte-susann-e-zwickau/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Accused: Susann E." +subtitle: "Beate Zschäpe, André Eminger, Susann E." +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.7154943 +lng: 12.4966612 +address: "Innere Schneeberger Straße, 08056 Zwickau" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann. Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.28 ff." +--- +The married couple Susann and André E. were among the NSU's most important supporters. Susann E. was Beate Zschäpe's best friend and closest confidante, and visited her frequently at her apartments in Zwickau. In doing so, Susann E. helped maintain the trio's bourgeois facade. She also had knowledge of the robberies and lent her identity for rental costs and for arranging holidays and rail passes (BahnCards). diff --git a/content/schauplaetze/beschuldigter-hermann-s-ehrenfriedersdorf/index.de.md b/content/schauplaetze/beschuldigter-hermann-s-ehrenfriedersdorf/index.de.md new file mode 100644 index 0000000..3b9ca04 --- /dev/null +++ b/content/schauplaetze/beschuldigter-hermann-s-ehrenfriedersdorf/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Beschuldigter Hermann S." +subtitle: "Hermann S., Pierre J., Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.6461466 +lng: 12.9697689 +address: "Markt 1, 09427 Ehrenfriedersdorf" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Hermann S., der in Sachsen lebt, soll Uwe Mundlos eine Pumpgun verschafft haben. Zu dieser Zeit war er Angestellter in einem der beiden Computerläden von Pierre J. Die Akten von Hermann S. wurden vollständig geschreddert. diff --git a/content/schauplaetze/beschuldigter-hermann-s-ehrenfriedersdorf/index.en.md b/content/schauplaetze/beschuldigter-hermann-s-ehrenfriedersdorf/index.en.md new file mode 100644 index 0000000..ead16c5 --- /dev/null +++ b/content/schauplaetze/beschuldigter-hermann-s-ehrenfriedersdorf/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Accused: Hermann S." +subtitle: "Hermann S., Pierre J., Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.6461466 +lng: 12.9697689 +address: "Markt 1, 09427 Ehrenfriedersdorf" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Hermann S., who lives in Saxony, is alleged to have supplied Uwe Mundlos with a pump-action shotgun. At the time he was an employee at one of Pierre J.'s two computer shops. Hermann S.'s files were completely shredded. diff --git a/content/schauplaetze/beschuldigter-jan-w-chemnitz/index.de.md b/content/schauplaetze/beschuldigter-jan-w-chemnitz/index.de.md new file mode 100644 index 0000000..486edca --- /dev/null +++ b/content/schauplaetze/beschuldigter-jan-w-chemnitz/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Beschuldigter Jan W." +subtitle: "Jan W." +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.836086 +lng: 12.9221245 +address: "Brückenstraße, 09111 Chemnitz" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.21 ff. ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Jan W. war einer der wichtigsten Helfer des NSU. Er war Mitwisser geheimer Informationen, er bemühte sich um Waffenlieferungen und organisierte und erledigte Versorgungsfahrten für das Trio. Weiterhin war er Betreiber des Musiklabels „Movement Records“, er organisierte rechte Skinheadkonzerte mit der Organisation „Chemnitz Concerts 88“ (CC88), war Sektionschef des sächsischen Blood & Honour-Ablegers und Mitherausgeber rechter Magazine. diff --git a/content/schauplaetze/beschuldigter-jan-w-chemnitz/index.en.md b/content/schauplaetze/beschuldigter-jan-w-chemnitz/index.en.md new file mode 100644 index 0000000..aa16269 --- /dev/null +++ b/content/schauplaetze/beschuldigter-jan-w-chemnitz/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Accused: Jan W." +subtitle: "Jan W." +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.836086 +lng: 12.9221245 +address: "Brückenstraße, 09111 Chemnitz" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.21 ff. ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Jan W. was one of the NSU's most important helpers. He was privy to confidential information, worked to procure weapons, and organised and carried out supply runs for the trio. He also ran the music label "Movement Records," organised right-wing skinhead concerts through the organisation "Chemnitz Concerts 88" (CC88), was section leader of the Saxon offshoot of Blood & Honour, and co-published right-wing magazines. diff --git a/content/schauplaetze/beschuldigter-matthias-d-johanngeorgenstadt/index.de.md b/content/schauplaetze/beschuldigter-matthias-d-johanngeorgenstadt/index.de.md new file mode 100644 index 0000000..b936d7e --- /dev/null +++ b/content/schauplaetze/beschuldigter-matthias-d-johanngeorgenstadt/index.de.md @@ -0,0 +1,13 @@ +--- +title: "Beschuldigter Matthias D." +subtitle: "Beate Zschäpe, Uwe Mundlos, Uwe Böhnhardt, Matthias D." +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.4326006 +lng: 12.7104266 +address: "Eibenstocker Straße 67, 08349 Johanngeorgenstadt" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Matthias D. stellte dem Trio seine Identität zu Verfügung, sodass Zschäpe, + +Mundlos und Böhnhardt oft nur unter dem Namen von D. bekannt waren. Zudem wurden über seinen Namen Wohnungen angemietet. Gegen Matthias D. läuft heute ein Ermittlungsverfahren. diff --git a/content/schauplaetze/beschuldigter-matthias-d-johanngeorgenstadt/index.en.md b/content/schauplaetze/beschuldigter-matthias-d-johanngeorgenstadt/index.en.md new file mode 100644 index 0000000..c084056 --- /dev/null +++ b/content/schauplaetze/beschuldigter-matthias-d-johanngeorgenstadt/index.en.md @@ -0,0 +1,13 @@ +--- +title: "Accused: Matthias D." +subtitle: "Beate Zschäpe, Uwe Mundlos, Uwe Böhnhardt, Matthias D." +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.4326006 +lng: 12.7104266 +address: "Eibenstocker Straße 67, 08349 Johanngeorgenstadt" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Matthias D. made his identity available to the trio, so that Zschäpe, + +Mundlos, and Böhnhardt were often known only under D.'s name. Apartments were also rented in his name. Criminal proceedings against Matthias D. are ongoing today. diff --git a/content/schauplaetze/beschuldigter-max-florian-b-dresden/index.de.md b/content/schauplaetze/beschuldigter-max-florian-b-dresden/index.de.md new file mode 100644 index 0000000..5bf4bbe --- /dev/null +++ b/content/schauplaetze/beschuldigter-max-florian-b-dresden/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Beschuldigter Max-Florian B." +subtitle: "Max-Florian B." +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 51.049156 +lng: 13.7378025 +address: "Altmarkt, 01067 Dresden" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Max-Florian B., der zeitweise eine Liebesbeziehung zu Mandy S. pflegte, war ein weiterer wichtiger Unterstützer des NSU. Er stellte Zschäpe, Mundlos und Böhnhardt seinen Personalausweis zur Verfügung, mit dem sie später eine Wohnung auf B.s Namen anmieteten. Außerdem brachte er das Trio zeitweise in seiner eigenen Wohnung unter. Max-Florian B. ist von Beruf Steinmetz und lebt heute in Dresden. diff --git a/content/schauplaetze/beschuldigter-max-florian-b-dresden/index.en.md b/content/schauplaetze/beschuldigter-max-florian-b-dresden/index.en.md new file mode 100644 index 0000000..6a23e74 --- /dev/null +++ b/content/schauplaetze/beschuldigter-max-florian-b-dresden/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Accused: Max-Florian B." +subtitle: "Max-Florian B." +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 51.049156 +lng: 13.7378025 +address: "Altmarkt, 01067 Dresden" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Max-Florian B., who was for a time romantically involved with Mandy S., was another important supporter of the NSU. He provided Zschäpe, Mundlos and Böhnhardt with his identity card, which they later used to rent an apartment in B.'s name. He also housed the trio temporarily in his own apartment. Max-Florian B. works as a stonemason and today lives in Dresden. diff --git a/content/schauplaetze/beschuldigter-pierre-j-chemnitz/index.de.md b/content/schauplaetze/beschuldigter-pierre-j-chemnitz/index.de.md new file mode 100644 index 0000000..115e500 --- /dev/null +++ b/content/schauplaetze/beschuldigter-pierre-j-chemnitz/index.de.md @@ -0,0 +1,13 @@ +--- +title: "Beschuldigter Pierre J." +subtitle: "Pierre J. ,Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.836086 +lng: 12.9221245 +address: "Brückenstraße, 09111 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Pierre J. betrieb zwei Computerläden, einen in Zwickau und einen in Chemnitz. Er soll + +Mundlos zwischen 2002 und 2003 Waffen beschafft haben, darunter eine Pumpgun. diff --git a/content/schauplaetze/beschuldigter-pierre-j-chemnitz/index.en.md b/content/schauplaetze/beschuldigter-pierre-j-chemnitz/index.en.md new file mode 100644 index 0000000..769cd9e --- /dev/null +++ b/content/schauplaetze/beschuldigter-pierre-j-chemnitz/index.en.md @@ -0,0 +1,13 @@ +--- +title: "Accused: Pierre J." +subtitle: "Pierre J. ,Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.836086 +lng: 12.9221245 +address: "Brückenstraße, 09111 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Pierre J. ran two computer shops, one in Zwickau and one in Chemnitz. He allegedly + +procured weapons for Mundlos between 2002 and 2003, including a pump-action shotgun. diff --git a/content/schauplaetze/beschuldigter-thomas-s-dresden/index.de.md b/content/schauplaetze/beschuldigter-thomas-s-dresden/index.de.md new file mode 100644 index 0000000..7270692 --- /dev/null +++ b/content/schauplaetze/beschuldigter-thomas-s-dresden/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Beschuldigter Thomas S." +subtitle: "Thomas S., Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 51.049156 +lng: 13.7378025 +address: "Altmarkt, 01067 Dresden" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Thomas S., der dem Trio ein Kilogramm TNT beschafft haben soll, half Zschäpe, Mundlos und Böhnhardt nach ihrer Flucht mehrmals bei der Suche nach Unterkünften. Der Dresdener pflegte außerdem zeitweise eine Liebesbeziehung mit Beate Zschäpe. diff --git a/content/schauplaetze/beschuldigter-thomas-s-dresden/index.en.md b/content/schauplaetze/beschuldigter-thomas-s-dresden/index.en.md new file mode 100644 index 0000000..ada6206 --- /dev/null +++ b/content/schauplaetze/beschuldigter-thomas-s-dresden/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Accused: Thomas S." +subtitle: "Thomas S., Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 51.049156 +lng: 13.7378025 +address: "Altmarkt, 01067 Dresden" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Thomas S., who allegedly procured one kilogram of TNT for the trio, helped Zschäpe, Mundlos and Böhnhardt on several occasions to find accommodation after they went underground. The Dresden resident was also for a time romantically involved with Beate Zschäpe. diff --git a/content/schauplaetze/besondere-aufbauorganisation-bao-bosporus-ort/index.de.md b/content/schauplaetze/besondere-aufbauorganisation-bao-bosporus-ort/index.de.md new file mode 100644 index 0000000..3e32739 --- /dev/null +++ b/content/schauplaetze/besondere-aufbauorganisation-bao-bosporus-ort/index.de.md @@ -0,0 +1,8 @@ +--- +title: "„Besondere Aufbauorganisation“ (BAO)/ „Bosporus“" +date: 2008-02-01 +kategorien: ["Behörden"] +datum: "1.2.2008" +quelle: "Nordbayern.de vom 1.2.2008: „Dönermorde: Die Soko wird erheblich verkleinert“, https://www.nordbayern.de/2.5886/donermorde-die-soko-wird-erheblich-verkleinert-1.938623 [Aufruf 7.9.2021] Schlussbericht des bayerischen NSU-Untersuchungsausschusses vom 10.7.2013, Bayerischer Landtag, 16. Wahlperiode Drucksache 16/17740, S. 100 ff., 105, 106, 108, 109, 116 Internetseite: https://www.bayern.landtag.de/fileadmin/images/content/NEU_Drs_16-17740_NSU_FINAL_18072013.pdf [Aufruf 7.9.2021] Mair, Birgit: Die Opfer des NSU und die Aufarbeitung der Verbrechen (5. aktualisierte und erweiterte Auflage 2021) Nürnberg, S. 68 ff." +--- +Die „Besondere Aufbauorganisation“ (BAO) mit der Bezeichnung „Bosporus“ war beim Polizeipräsidium Mittelfranken Nürnberg angesiedelt und arbeitete vom 1. Juli 2005 bis zum 31. Januar 2008. Sie beschäftigte am 1. Juni 2006 sechzig Beamte. Bis Ende 2005 wurden Hinweise auf Neonazis ignoriert und ausschließlich in Richtung „Organisierte Kriminalität“ ermittelt. Bis zu diesem Zeitpunkt waren bereits sieben Menschen ausländischer Herkunft mit derselben Waffe ermordet worden. Gegen die Naziszene, die erst sehr spät ins Visier der Ermittlungen geriet, wurde phantasielos und halbherzig vorgegangen. Rassismus und Vorurteile prägten die polizeilichen Ermittlungen. Gegen die Opferfamilien wurden verdeckte Ermittler eingesetzt, in Nürnberg und München fingierte Döner-Imbisse betrieben. Das bayerische Landesamt für Verfassungsschutz lehnte es am 20. Juli 2006 ab, der BAO die „Daten aller Rechtsextremisten in Bayern“ zu geben. Nach monatelangem Zögern wurden lediglich 682 Rechtsextreme im Großraum Nürnberg mitgeteilt. Neben Alibiüberprüfungen bei nur 161 Personen wurden Gefährderansprachen bei neun Szenegrößen durchgeführt. Danach wurde die BAO personalmäßig stark verkleinert. Anfang 2008 wurde die Sonderkommission dann auf neun Beamte reduziert. diff --git a/content/schauplaetze/besondere-aufbauorganisation-bao-bosporus-ort/index.en.md b/content/schauplaetze/besondere-aufbauorganisation-bao-bosporus-ort/index.en.md new file mode 100644 index 0000000..8c69d73 --- /dev/null +++ b/content/schauplaetze/besondere-aufbauorganisation-bao-bosporus-ort/index.en.md @@ -0,0 +1,8 @@ +--- +title: "\"Special Task Force\" (BAO)/ \"Bosporus\"" +date: 2008-02-01 +kategorien: ["Behörden"] +datum: "1.2.2008" +quelle: "Nordbayern.de vom 1.2.2008: „Dönermorde: Die Soko wird erheblich verkleinert“, https://www.nordbayern.de/2.5886/donermorde-die-soko-wird-erheblich-verkleinert-1.938623 [Aufruf 7.9.2021] Schlussbericht des bayerischen NSU-Untersuchungsausschusses vom 10.7.2013, Bayerischer Landtag, 16. Wahlperiode Drucksache 16/17740, S. 100 ff., 105, 106, 108, 109, 116 Internetseite: https://www.bayern.landtag.de/fileadmin/images/content/NEU_Drs_16-17740_NSU_FINAL_18072013.pdf [Aufruf 7.9.2021] Mair, Birgit: Die Opfer des NSU und die Aufarbeitung der Verbrechen (5. aktualisierte und erweiterte Auflage 2021) Nürnberg, S. 68 ff." +--- +The "Special Task Force" (Besondere Aufbauorganisation, BAO) codenamed "Bosporus" was based at the Mittelfranken Nuremberg Police Headquarters and operated from 1 July 2005 to 31 January 2008. As of 1 June 2006 it employed sixty officers. Until the end of 2005, leads pointing to neo-Nazis were ignored and investigations focused exclusively on "organised crime." By that point, seven people of foreign origin had already been murdered with the same weapon. Investigations into the neo-Nazi scene, which came into investigators' focus only very late, were pursued half-heartedly and without imagination. Racism and prejudice shaped the police investigations. Undercover investigators were deployed against the victims' families, and sham döner kebab shops were operated in Nuremberg and Munich. On 20 July 2006, the Bavarian State Office for the Protection of the Constitution refused to give the BAO "data on all right-wing extremists in Bavaria." After months of hesitation, information was provided on only 682 right-wing extremists in the greater Nuremberg area. Alibi checks were carried out on only 161 individuals, and warning interviews ("Gefährderansprachen") were conducted with nine prominent figures from the scene. The BAO's staff was then drastically reduced. By early 2008 the special task force had been cut to just nine officers. diff --git a/content/schauplaetze/bombe-nordfriedhof-jena/cover.jpg b/content/schauplaetze/bombe-nordfriedhof-jena/cover.jpg new file mode 100644 index 0000000..39de2af --- /dev/null +++ b/content/schauplaetze/bombe-nordfriedhof-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6029636d1720383801694f3fda8cb971932bdf2e09925c4432e4882e87bcf7c4 +size 335650 diff --git a/content/schauplaetze/bombe-nordfriedhof-jena/index.de.md b/content/schauplaetze/bombe-nordfriedhof-jena/index.de.md new file mode 100644 index 0000000..7f65c0f --- /dev/null +++ b/content/schauplaetze/bombe-nordfriedhof-jena/index.de.md @@ -0,0 +1,16 @@ +--- +title: "Bombe Nordfriedhof" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1997-12-26 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9425963 +lng: 11.5888975 +address: "Singerweg 2, 07743 Jena" +datum: "26.12.1997" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 54, 60 f." +--- +Am 26.12.1997 wurde vor der Magnus-Poser-Gedenkstätte auf dem Jenaer Nordfriedhof durch Passanten ein dort abgestellter rot angestrichener Koffer mit schwarzem Hakenkreuz auf weißem Grund entdeckt. Die Staatsanwaltschaft Gera ermittelte gegen Böhnhardt,  Mundlos und Zschäpe sowie Andre K., Ralf W. und Gerlach. + +Mit Verfügung vom 7.5.1998 verband die Staatsanwaltschaft Gera die Verfahren wegen der Friedhofs-, Stadion- und Theaterbombe miteinander unter einem führenden Aktenzeichen. Im Jahr 2003 wurde das Verfahren eingestellt. Böhnhardt, Mundlos und Zschäpe für keine der drei Straftaten rechtskräftig verurteilt, obwohl mehrere Umständen für sie als Täter sprachen. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/bombe-nordfriedhof-jena/index.en.md b/content/schauplaetze/bombe-nordfriedhof-jena/index.en.md new file mode 100644 index 0000000..0637e26 --- /dev/null +++ b/content/schauplaetze/bombe-nordfriedhof-jena/index.en.md @@ -0,0 +1,16 @@ +--- +title: "Bomb at Nordfriedhof" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1997-12-26 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9425963 +lng: 11.5888975 +address: "Singerweg 2, 07743 Jena" +datum: "26.12.1997" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 54, 60 f." +--- +On 26 December 1997, passers-by discovered a red-painted suitcase bearing a black swastika on a white background in front of the Magnus Poser memorial site at Jena's Nordfriedhof cemetery. The Gera public prosecutor's office investigated Böhnhardt, Mundlos and Zschäpe, as well as Andre K., Ralf W. and Gerlach. + +By order of 7 May 1998, the Gera public prosecutor's office combined the proceedings concerning the cemetery, stadium and theatre bombs under a single lead case number. The proceedings were discontinued in 2003. Böhnhardt, Mundlos and Zschäpe were never convicted with legal finality for any of the three offences, although several circumstances pointed to them as the perpetrators. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/braunes-haus-jena/cover.jpg b/content/schauplaetze/braunes-haus-jena/cover.jpg new file mode 100644 index 0000000..9301500 --- /dev/null +++ b/content/schauplaetze/braunes-haus-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:664b94a3b28cb2ea0179eeb4ee57fa865ee6a4374e6481ff504b52f2b0fdacb9 +size 177804 diff --git a/content/schauplaetze/braunes-haus-jena/index.de.md b/content/schauplaetze/braunes-haus-jena/index.de.md new file mode 100644 index 0000000..ab450ec --- /dev/null +++ b/content/schauplaetze/braunes-haus-jena/index.de.md @@ -0,0 +1,14 @@ +--- +title: "Braunes Haus" +subtitle: "Ralf Wohlleben" +date: 2008-06-16 +kategorien: ["Aufenthaltsorte"] +lat: 50.8936327 +lng: 11.6037826 +address: "Jenaische Straße 25, 07747 Jena" +datum: "16.6.2008" +quelle: "OTZ Jena, 16.6.2008; 10.6.2010; 25.11.2011." +--- +Das sogenannte „Braune Haus“ in der Jenaischen Straße 25 in Jena-Lobeda nutzten die Jenaer Neonazis seit 2002 als „Wohn- und Schulungsobjekt“, nachdem sie die ehemalige Gaststätte „Zum Löwen“ über einen Mietkaufvertrag erworben hatten. In dem Haus waren zu verschiedenen Zeiten u.a. Maximilian M., Andre K., Christian K. und Ralf W. gemeldet bzw. deren Namen am Briefkasten zu finden. Das Haus mit einem 1000 Quadratmeter großen Grundstück bot Platz für Kameradschaftsabende, Schulungen und Konzerte. Es diente als Stützpunkt der „Jungen Nationalen“ (JN), des „Nationalen Widerstandes Jena“ (NWJ) sowie als Sitz des NPD-Kreis- und Landesverbandes sowie des „Freien Netzes Jena (FNJ). Eine Lobedaer Bürgerinitiative protestierte über mehrere Jahre gegen die von diesem Haus ausgehenden rechtsextremen Aktivitäten und Übergriffe. Das dann baupolizeilich gesperrte Haus wurde später abgerissen, das Grundstück mit einer Wohnanlage bebaut. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/braunes-haus-jena/index.en.md b/content/schauplaetze/braunes-haus-jena/index.en.md new file mode 100644 index 0000000..be7bd11 --- /dev/null +++ b/content/schauplaetze/braunes-haus-jena/index.en.md @@ -0,0 +1,14 @@ +--- +title: "Brown House" +subtitle: "Ralf Wohlleben" +date: 2008-06-16 +kategorien: ["Aufenthaltsorte"] +lat: 50.8936327 +lng: 11.6037826 +address: "Jenaische Straße 25, 07747 Jena" +datum: "16.6.2008" +quelle: "OTZ Jena, 16.6.2008; 10.6.2010; 25.11.2011." +--- +The so-called "Brown House" at Jenaische Straße 25 in Jena-Lobeda was used by Jena's neo-Nazis from 2002 onward as a "residential and training venue", after they had acquired the former restaurant "Zum Löwen" through a lease-purchase agreement. At various times, Maximilian M., Andre K., Christian K. and Ralf W., among others, were registered at the house or had their names found on the letterbox. The house, with its 1,000-square-metre plot, offered space for comradeship evenings, training sessions and concerts. It served as a base for the "Young Nationalists" (JN), the "National Resistance Jena" (NWJ), as well as the seat of the NPD's district and state associations and the "Free Network Jena" (FNJ). A citizens' initiative in Lobeda protested for several years against the right-wing extremist activities and attacks emanating from this house. The house, later closed by building authorities, was eventually demolished, and the site was redeveloped with a residential complex. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/briefbomben-attrappe-jena/cover.jpg b/content/schauplaetze/briefbomben-attrappe-jena/cover.jpg new file mode 100644 index 0000000..99d75a2 --- /dev/null +++ b/content/schauplaetze/briefbomben-attrappe-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc3d53ab9dd67586a3b2eddef72baae68e77b173828ae06d9b9d04580d087f1 +size 215817 diff --git a/content/schauplaetze/briefbomben-attrappe-jena/index.de.md b/content/schauplaetze/briefbomben-attrappe-jena/index.de.md new file mode 100644 index 0000000..2759814 --- /dev/null +++ b/content/schauplaetze/briefbomben-attrappe-jena/index.de.md @@ -0,0 +1,16 @@ +--- +title: "Briefbomben-Attrappe" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1996-12-31 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9318359 +lng: 11.5877551 +address: "Am Planetarium 8, 07743 Jena" +datum: "31.12.1996" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 52 f.." +--- +Am 30./31.12.1996 wurde in den Briefkasten der Lokalredaktion Jena der Thüringischen Landeszeitung, Am Planetarium 8, ein Briefbomben-Imitat eingeworfen. In dem Briefumschlag wurde ein handgeschriebenes Blatt Papier vorgefunden: „Von Lüge und Betrug haben wir genug. Das wird der letzte Scherz jetzt sein. Ab 97 haut es richtig rein!!!“. Das Schreiben war versehen mit Hakenkreuzen, der Buchstabe „S“ jeweils als Rune geschrieben. + +Im gleichen Zeitraum fand die Poststelle der Stadtverwaltung, Am Anger 15, einen Briefumschlag mit ähnlichem Inhalt vor, einen weiteren die Polizeidirektion Jena: „Mit Bomben-Stimmung in das Kampfjahr 97. Auge um Auge Zahn um Zahn – Dieses Jahr kommt Bubis dran !!!“ In allen drei Fällen befand sich im Umschlag eine Styropor-Platte mit einer Batterie und Kabeln, die mit einer Knetmasse verbunden waren. Die Staatsanwaltschaft Gera ermittelte gegen Böhnhardt, Mundlos und Zschäpe sowie Ralf W., Andre K. und Holger G. Im Juni 1997 wurde das Verfahren eingestellt. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/briefbomben-attrappe-jena/index.en.md b/content/schauplaetze/briefbomben-attrappe-jena/index.en.md new file mode 100644 index 0000000..f8fe253 --- /dev/null +++ b/content/schauplaetze/briefbomben-attrappe-jena/index.en.md @@ -0,0 +1,16 @@ +--- +title: "Fake Letter Bomb" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1996-12-31 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9318359 +lng: 11.5877551 +address: "Am Planetarium 8, 07743 Jena" +datum: "31.12.1996" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 52 f.." +--- +On the night of 30/31 December 1996, an imitation letter bomb was dropped into the letterbox of the local editorial office of the Thüringische Landeszeitung in Jena, at Am Planetarium 8. Inside the envelope was a handwritten sheet of paper reading: "We've had enough of lies and deceit. This will be the last joke now. From '97 it's really going to hit hard!!!" The note was adorned with swastikas, with the letter "S" written each time as a rune. + +Around the same time, the mailroom of the city administration, at Am Anger 15, found an envelope with similar contents, and the Jena police headquarters found another: "Into the fighting year of '97 with a bombing mood. An eye for an eye, a tooth for a tooth – this year it's Bubis's turn!!!" In all three cases, the envelope contained a piece of styrofoam with a battery and wires connected by a lump of modelling clay. The Gera public prosecutor's office investigated Böhnhardt, Mundlos and Zschäpe, as well as Ralf W., Andre K. and Holger G. The proceedings were discontinued in June 1997. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/buchenwald-i-weimar/cover.jpg b/content/schauplaetze/buchenwald-i-weimar/cover.jpg new file mode 100644 index 0000000..fea6a3e --- /dev/null +++ b/content/schauplaetze/buchenwald-i-weimar/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f117bbb37d396058b753c6ee4ebe9c48d57a7ef20f061f7c331290fd739b46b1 +size 172294 diff --git a/content/schauplaetze/buchenwald-i-weimar/index.de.md b/content/schauplaetze/buchenwald-i-weimar/index.de.md new file mode 100644 index 0000000..10895ee --- /dev/null +++ b/content/schauplaetze/buchenwald-i-weimar/index.de.md @@ -0,0 +1,16 @@ +--- +title: "Buchenwald I" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1996-11-01 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9936113 +lng: 11.3203362 +address: "99427 Weimar" +datum: "1.11.1996" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 47 Schreiben der Gedenkstätte Buchenwald vom 5.11.1996, zugestellt jeder der genannten Personen Aust/ Laabs, Heimatschutz, S. 131 und 189." +--- +Am 1.11.1996 fielen Böhnhardt, Mundlos und Zschäpe sowie weitere Exponenten der rechten Szene, darunter Andre K., Robert H.,  Holger G., Stefan A. sowie Thomas St. und Enrico P. aus Chemnitz in der Gedenkstätte Buchenwald auf, die am selben Tag von einer israelischen Reportergruppe besucht wurde. Böhnhardt und Mundlos trugen SA-ähnliche Uniformen. Sie seien aufgrund ihrer Kleidung als Neonazis erkennbar gewesen, so die Gedenkstätte. „Vor diesem Hintergrund kann nicht davon ausgegangen werden, daß Sie die Gedenkstätte aus Gründen der historischen Aufklärung und des aufrichtigen Gedenkens an die Opfer des Lagers besucht haben. Vielmehr läßt Ihr Auftreten ein Verhalten erwarten, das dem Ort nicht angemessen ist und die Würde der Opfer und ihrer Angehörigen mißachtet“, heißt es in den Schreiben der Gedenkstätte.  Ein mit „Uwe“ unterzeichneter Eintrag im Besucherbuch wurde einem der beiden Uwes zugeschrieben. + +Die Gedenkstätte sprach für alle ein unbefristetes Hausverbot aus. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/buchenwald-i-weimar/index.en.md b/content/schauplaetze/buchenwald-i-weimar/index.en.md new file mode 100644 index 0000000..fdaa3ab --- /dev/null +++ b/content/schauplaetze/buchenwald-i-weimar/index.en.md @@ -0,0 +1,16 @@ +--- +title: "Buchenwald I" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1996-11-01 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9936113 +lng: 11.3203362 +address: "99427 Weimar" +datum: "1.11.1996" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 47 Schreiben der Gedenkstätte Buchenwald vom 5.11.1996, zugestellt jeder der genannten Personen Aust/ Laabs, Heimatschutz, S. 131 und 189." +--- +On 1 November 1996, Böhnhardt, Mundlos and Zschäpe, along with other figures from the far-right scene—including Andre K., Robert H., Holger G., Stefan A. as well as Thomas St. and Enrico P. from Chemnitz—attracted attention at the Buchenwald Memorial, which was visited that same day by a group of Israeli reporters. Böhnhardt and Mundlos wore uniforms resembling those of the SA. According to the memorial, they were recognisable as neo-Nazis by their clothing. "Against this background, it cannot be assumed that you visited the memorial for reasons of historical education and sincere remembrance of the victims of the camp. Rather, your conduct suggests behaviour that is inappropriate to this site and disregards the dignity of the victims and their relatives," the memorial's letters stated. An entry in the visitors' book signed "Uwe" was attributed to one of the two Uwes. + +The memorial issued an indefinite ban from the premises for all of them. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/buchenwald-ii-weimar/cover.jpg b/content/schauplaetze/buchenwald-ii-weimar/cover.jpg new file mode 100644 index 0000000..3705433 --- /dev/null +++ b/content/schauplaetze/buchenwald-ii-weimar/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17c35c54e86987858a28f527a0e4e1bdc1f47513be1efcb96d0d62e72e0cb5c0 +size 121186 diff --git a/content/schauplaetze/buchenwald-ii-weimar/index.de.md b/content/schauplaetze/buchenwald-ii-weimar/index.de.md new file mode 100644 index 0000000..d9d729f --- /dev/null +++ b/content/schauplaetze/buchenwald-ii-weimar/index.de.md @@ -0,0 +1,14 @@ +--- +title: "Buchenwald II" +subtitle: "Thomas Dienel" +date: 1997-05-16 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9936113 +lng: 11.3203362 +address: "99427 Weimar" +datum: "16.5.1997" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 47 Schreiben der Gedenkstätte Buchenwald vom 5.11.1996, zugestellt jeder der genannten Personen Aust/ Laabs,Heimatschutz, S. 131 und 189." +--- +Am 16.5.1997 stellte die Gedenkstätte explizite, teils namentlich unterzeichnete Einträge von drei Besucherinnen fest, darunter: „Blut muss fließen knüppeldick und wir scheißen auf die Freiheit dieser Judenrepublik. Sieg Heil!“ Die aus Apolda, Niedertrebra und Weimbach in Thüringen stammenden Täterinnen wurden von der Kripo Jena ermittelt. Der Text weist auf einen Titel der Jenaer Neonazi-Band „Vergeltung“ hin, die 1995 und 1996 im Winzerclub auftreten konnte. + +Am 12.8.1997 wurde auch dem damals bereits 1992 rechtskräftig verurteilten Neonaziführer Thomas Dienel, Vorsitzender der Deutsch Nationalen Partei, ein Hausverbot auf Dauer ausgesprochen. Dienel fungierte zu diesem Zeitpunkt noch als V-Mann des Thüringer Verfassungsschutzes. diff --git a/content/schauplaetze/buchenwald-ii-weimar/index.en.md b/content/schauplaetze/buchenwald-ii-weimar/index.en.md new file mode 100644 index 0000000..04309f7 --- /dev/null +++ b/content/schauplaetze/buchenwald-ii-weimar/index.en.md @@ -0,0 +1,14 @@ +--- +title: "Buchenwald II" +subtitle: "Thomas Dienel" +date: 1997-05-16 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9936113 +lng: 11.3203362 +address: "99427 Weimar" +datum: "16.5.1997" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 47 Schreiben der Gedenkstätte Buchenwald vom 5.11.1996, zugestellt jeder der genannten Personen Aust/ Laabs,Heimatschutz, S. 131 und 189." +--- +On 16 May 1997, the memorial site noted explicit entries, some signed by name, from three female visitors, including: "Blood must flow, thick as a cudgel, and we shit on the freedom of this Jew republic. Sieg Heil!" The female perpetrators, from Apolda, Niedertrebra and Weimbach in Thuringia, were identified by the Jena criminal police. The text alludes to a title by the Jena neo-Nazi band "Vergeltung", which had performed at the Winzerclub in 1995 and 1996. + +On 12 August 1997, the neo-Nazi leader Thomas Dienel, chairman of the Deutsch Nationale Partei, who had already been convicted with legal finality in 1992, was also issued a permanent ban from the site. At that time, Dienel was still active as an informant for the Thuringian Office for the Protection of the Constitution. diff --git a/content/schauplaetze/chemnitzer-innenstadt-chemnitz/cover.jpg b/content/schauplaetze/chemnitzer-innenstadt-chemnitz/cover.jpg new file mode 100644 index 0000000..f21b7e0 --- /dev/null +++ b/content/schauplaetze/chemnitzer-innenstadt-chemnitz/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a96bf6e3280b0254be97998039baed1cccf3b9caba7ee44fe4b0976eebcbbb22 +size 207454 diff --git a/content/schauplaetze/chemnitzer-innenstadt-chemnitz/index.de.md b/content/schauplaetze/chemnitzer-innenstadt-chemnitz/index.de.md new file mode 100644 index 0000000..9b16bea --- /dev/null +++ b/content/schauplaetze/chemnitzer-innenstadt-chemnitz/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Chemnitzer Innenstadt" +subtitle: "Beate Zschäpe, Familie Böhnhardt, Familie Mundlos, André Eminger, Susann E." +date: 2021-04-01 +kategorien: ["Zschäpes Flucht"] +lat: 50.8325868 +lng: 12.9197376 +address: "Neumarkt 1, 09111 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Am 4. November 2011 wurde Zschäpe vermutlich von André E. zum Zwickauer Bahnhof gefahren, wo er ihr Kleidung seiner Frau Susann E. Mitgab, und reiste mit dem Zug nach Chemnitz. Am 5. November rief Zschäpe von einer Chemnitzer Telefonzelle aus die Eltern von Böhnhardt an. Anschließend kontaktierte sie die Familie Mundlos von einem nahegelegenen Fernsprecher. diff --git a/content/schauplaetze/chemnitzer-innenstadt-chemnitz/index.en.md b/content/schauplaetze/chemnitzer-innenstadt-chemnitz/index.en.md new file mode 100644 index 0000000..d3ecab7 --- /dev/null +++ b/content/schauplaetze/chemnitzer-innenstadt-chemnitz/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Chemnitz City Centre" +subtitle: "Beate Zschäpe, Familie Böhnhardt, Familie Mundlos, André Eminger, Susann E." +date: 2021-04-01 +kategorien: ["Zschäpes Flucht"] +lat: 50.8325868 +lng: 12.9197376 +address: "Neumarkt 1, 09111 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +On 4 November 2011, Zschäpe was presumably driven by André E. to Zwickau train station, where he gave her clothing belonging to his wife Susann E., and she travelled by train to Chemnitz. On 5 November, Zschäpe called Böhnhardt's parents from a telephone box in Chemnitz. She then contacted the Mundlos family from a nearby public telephone. diff --git a/content/schauplaetze/der-jugendclub-piccolo-chemnitz/cover.jpg b/content/schauplaetze/der-jugendclub-piccolo-chemnitz/cover.jpg new file mode 100644 index 0000000..995ae71 --- /dev/null +++ b/content/schauplaetze/der-jugendclub-piccolo-chemnitz/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b68947cffc771b92acb3a365cf723bb31e4a74cee57f4321e0f3fb5d384a9afe +size 251867 diff --git a/content/schauplaetze/der-jugendclub-piccolo-chemnitz/index.de.md b/content/schauplaetze/der-jugendclub-piccolo-chemnitz/index.de.md new file mode 100644 index 0000000..5c782fa --- /dev/null +++ b/content/schauplaetze/der-jugendclub-piccolo-chemnitz/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Der Jugendclub „Piccolo“" +subtitle: "NSU-Unterstützer Netzwerk (keine konkreten Personen angegeben)" +date: 2021-04-01 +kategorien: ["Aufenthaltsorte"] +lat: 50.7856035 +lng: 12.8850909 +address: "Johannes-Dick-Straße 3, 09123 Chemnitz" +quelle: "Knoppe, Franz/Marquardt, Jens/Thapa, Basanta (Hrsg.) (2016). Dokumentation. War da was? Bleibt da was? Wird da was? Chemnitz: Cartell-Verlag, S.29." +--- +Der Jugendclub „Piccolo“ war zwischen 1992 und 2000 ein beliebter Anlaufpunkt rechter und neonazistisch gesinnter Jugendlicher und Erwachsener. Hier sollen sich auch wichtige Personen des Unterstützernetzwerkes des NSU getroffen haben. Der Jugendtreff befand sich ganz in der Nähe der damaligen Wohnung des Trios. diff --git a/content/schauplaetze/der-jugendclub-piccolo-chemnitz/index.en.md b/content/schauplaetze/der-jugendclub-piccolo-chemnitz/index.en.md new file mode 100644 index 0000000..75fdd97 --- /dev/null +++ b/content/schauplaetze/der-jugendclub-piccolo-chemnitz/index.en.md @@ -0,0 +1,11 @@ +--- +title: 'The „Piccolo“ Youth Club' +subtitle: "NSU-Unterstützer Netzwerk (keine konkreten Personen angegeben)" +date: 2021-04-01 +kategorien: ["Aufenthaltsorte"] +lat: 50.7856035 +lng: 12.8850909 +address: "Johannes-Dick-Straße 3, 09123 Chemnitz" +quelle: "Knoppe, Franz/Marquardt, Jens/Thapa, Basanta (Hrsg.) (2016). Dokumentation. War da was? Bleibt da was? Wird da was? Chemnitz: Cartell-Verlag, S.29." +--- +Between 1992 and 2000, the „Piccolo" youth club was a popular meeting point for right-wing and neo-Nazi-minded young people and adults. Important figures from the NSU's support network are also said to have met here. The youth club was located very close to the trio's apartment at the time. diff --git a/content/schauplaetze/dritte-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/cover.jpg b/content/schauplaetze/dritte-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/cover.jpg new file mode 100644 index 0000000..ff9ca2f --- /dev/null +++ b/content/schauplaetze/dritte-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502e103d2560756c35ca01448e6fa3e5b8ef287241eb3abe6ed48f9bf4d70bb3 +size 301333 diff --git a/content/schauplaetze/dritte-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.de.md b/content/schauplaetze/dritte-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.de.md new file mode 100644 index 0000000..96a211d --- /dev/null +++ b/content/schauplaetze/dritte-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Dritte Wohnung von Zschäpe, Mundlos und Böhnhardt" +subtitle: "Beate Zschäpe, Uwe Mundlos, Uwe Böhnhardt, Carsten R." +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.8224455 +lng: 12.92458 +address: "Altchemnitzer Straße 12, 09120 Chemnitz" +quelle: "NSU Watch(2014): Protokoll. 95 Verhandlungstag. Onlin unter: https://www.nsu-watch.info/2014/04/protokoll-95-verhandlungstag-19-maerz-2014/ Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.12" +--- +Ab 1. September 1998 beziehen Mundlos, Zschäpe und Böhnhardt ihre erste eigene Wohnung in der Illegalität, die sie sich nicht mit Kameraden teilten. Angemietet wurde die Wohnung durch Carsten R.. Nach eigenen Angaben habe R. lediglich den Mietvertrag unterschrieben. Als man an ihn mit der Bitte der Anmietung herangetreten sei, wäre die Wohnung schon ausgesucht gewesen. Carsten R. habe lediglich die Übergabe mit der Maklerin gemacht. Danach habe er die drei nur in unregelmäßigen Abständen besucht, auch um zu sehen, ob alles in Ordnung ist. diff --git a/content/schauplaetze/dritte-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.en.md b/content/schauplaetze/dritte-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.en.md new file mode 100644 index 0000000..fa0fb01 --- /dev/null +++ b/content/schauplaetze/dritte-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Third apartment of Zschäpe, Mundlos and Böhnhardt" +subtitle: "Beate Zschäpe, Uwe Mundlos, Uwe Böhnhardt, Carsten R." +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.8224455 +lng: 12.92458 +address: "Altchemnitzer Straße 12, 09120 Chemnitz" +quelle: "NSU Watch(2014): Protokoll. 95 Verhandlungstag. Onlin unter: https://www.nsu-watch.info/2014/04/protokoll-95-verhandlungstag-19-maerz-2014/ Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.12" +--- +From 1 September 1998, Mundlos, Zschäpe and Böhnhardt moved into their first own apartment while living underground, which they did not share with any comrades. The apartment was rented by Carsten R.. According to his own account, R. merely signed the lease. When he was approached with the request to rent it, the apartment had already been chosen. Carsten R. had merely handled the handover with the estate agent. After that, he visited the three of them only at irregular intervals, partly to check that everything was in order. diff --git a/content/schauplaetze/elterliche-wohnung-von-beate-zschaepe-jena/cover.jpg b/content/schauplaetze/elterliche-wohnung-von-beate-zschaepe-jena/cover.jpg new file mode 100644 index 0000000..b029aa1 --- /dev/null +++ b/content/schauplaetze/elterliche-wohnung-von-beate-zschaepe-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a94f4213a514867e1d6ffe81aab84b1d93b04d934cb9c37fb739848d6763ec2 +size 280265 diff --git a/content/schauplaetze/elterliche-wohnung-von-beate-zschaepe-jena/index.de.md b/content/schauplaetze/elterliche-wohnung-von-beate-zschaepe-jena/index.de.md new file mode 100644 index 0000000..6e1e050 --- /dev/null +++ b/content/schauplaetze/elterliche-wohnung-von-beate-zschaepe-jena/index.de.md @@ -0,0 +1,13 @@ +--- +title: "Elterliche Wohnung von Beate Zschäpe" +subtitle: "Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.896026 +lng: 11.5786972 +address: "Ernst-Zielinski-Straße, 07745 Jena" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 37." +--- +Beate Zschäpe (geboren 1975) wohnte gemeinsam mit ihrer Mutter in der Ernst-Zielinski-Straße in Jena-Winzerla, einem seit 1985 neuerbauten Stadtteil mit vorwiegend fünfgeschossigen Plattenbauten. Auch wenn die Infrastruktur erhebliche Mängel aufwies, war das Wohngebiet aufgrund der modernen Wohnungen und Zentrumsnähe sehr begehrt. Winzerla war kein soziales Problemviertel. Für Jugendliche gab es allerdings bei nur zwei Jugendclubs wenig Angebote zur Freizeitgestaltung, ein Grund dafür, dass sich immer mehr Jugendliche dem zunächst latent rechten Spektrum anschlossen. Parallel zu ihrer Annäherung an die rechte Szene, nicht zuletzt durch ihren ersten Freund Uwe Mundlos, wurde sie zwischen 1990 und 1995 gerichtsbekannt durch diverse Diebstähle geringfügiger Sachen. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/elterliche-wohnung-von-beate-zschaepe-jena/index.en.md b/content/schauplaetze/elterliche-wohnung-von-beate-zschaepe-jena/index.en.md new file mode 100644 index 0000000..eb932f7 --- /dev/null +++ b/content/schauplaetze/elterliche-wohnung-von-beate-zschaepe-jena/index.en.md @@ -0,0 +1,13 @@ +--- +title: "Parental Apartment of Beate Zschäpe" +subtitle: "Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.896026 +lng: 11.5786972 +address: "Ernst-Zielinski-Straße, 07745 Jena" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 37." +--- +Beate Zschäpe (born 1975) lived together with her mother on Ernst-Zielinski-Straße in Jena-Winzerla, a district newly built from 1985 onward with predominantly five-storey prefabricated apartment blocks. Although the infrastructure had considerable shortcomings, the residential area was highly sought after due to its modern apartments and proximity to the city centre. Winzerla was not a socially deprived neighbourhood. However, with only two youth clubs, there was little on offer for young people in terms of leisure activities — one reason why more and more young people gravitated toward what was initially a latently right-wing scene. In parallel with her growing involvement with the far-right scene, not least through her first boyfriend Uwe Mundlos, she came to the attention of the courts between 1990 and 1995 for various petty thefts. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/elterliche-wohnung-von-uwe-boehnhardt-bis-1998-jena/cover.jpg b/content/schauplaetze/elterliche-wohnung-von-uwe-boehnhardt-bis-1998-jena/cover.jpg new file mode 100644 index 0000000..d801dca --- /dev/null +++ b/content/schauplaetze/elterliche-wohnung-von-uwe-boehnhardt-bis-1998-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa7c759d8b88cc3363b402250ebdac8d1512afe05220d640e27b241b4b7f50d3 +size 263757 diff --git a/content/schauplaetze/elterliche-wohnung-von-uwe-boehnhardt-bis-1998-jena/index.de.md b/content/schauplaetze/elterliche-wohnung-von-uwe-boehnhardt-bis-1998-jena/index.de.md new file mode 100644 index 0000000..aa24f85 --- /dev/null +++ b/content/schauplaetze/elterliche-wohnung-von-uwe-boehnhardt-bis-1998-jena/index.de.md @@ -0,0 +1,14 @@ +--- +title: "Elterliche Wohnung von Uwe Böhnhardt bis 1998" +subtitle: "Uwe Böhnhardt" +date: 2012-04-19 +kategorien: ["Wohnungen des Trios"] +lat: 50.8893813 +lng: 11.6141644 +address: "Richard-Zimmermann-Straße, 07747 Jena" +datum: "19.4.2012" +quelle: "Süddeutsche Zeitung, 19.4.2012" +--- +Uwe Böhnhardt (geboren 1977) lebte bis zu seiner Flucht 1998 in der Wohnung seiner Eltern in der Richard-Zimmermann-Straße in Jena-Lobeda-Ost. + +(Text & Bild: Frank Döbert) diff --git a/content/schauplaetze/elterliche-wohnung-von-uwe-boehnhardt-bis-1998-jena/index.en.md b/content/schauplaetze/elterliche-wohnung-von-uwe-boehnhardt-bis-1998-jena/index.en.md new file mode 100644 index 0000000..8aeb7b9 --- /dev/null +++ b/content/schauplaetze/elterliche-wohnung-von-uwe-boehnhardt-bis-1998-jena/index.en.md @@ -0,0 +1,14 @@ +--- +title: "Parental Apartment of Uwe Böhnhardt until 1998" +subtitle: "Uwe Böhnhardt" +date: 2012-04-19 +kategorien: ["Wohnungen des Trios"] +lat: 50.8893813 +lng: 11.6141644 +address: "Richard-Zimmermann-Straße, 07747 Jena" +datum: "19.4.2012" +quelle: "Süddeutsche Zeitung, 19.4.2012" +--- +Uwe Böhnhardt (born 1977) lived in his parents' apartment on Richard-Zimmermann-Straße in Jena-Lobeda-Ost until he went underground in 1998. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/elterliche-wohnung-von-uwe-mundlos-jena/cover.jpg b/content/schauplaetze/elterliche-wohnung-von-uwe-mundlos-jena/cover.jpg new file mode 100644 index 0000000..d10819b --- /dev/null +++ b/content/schauplaetze/elterliche-wohnung-von-uwe-mundlos-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ecdc4c86a3da9206aabc3e474068c571349ac85e290e36b80fc0361651b031f +size 309291 diff --git a/content/schauplaetze/elterliche-wohnung-von-uwe-mundlos-jena/index.de.md b/content/schauplaetze/elterliche-wohnung-von-uwe-mundlos-jena/index.de.md new file mode 100644 index 0000000..573102e --- /dev/null +++ b/content/schauplaetze/elterliche-wohnung-von-uwe-mundlos-jena/index.de.md @@ -0,0 +1,14 @@ +--- +title: "Elterliche Wohnung von Uwe Mundlos" +subtitle: "Uwe Mundlos" +date: 1993-12-22 +kategorien: ["Wohnungen des Trios"] +lat: 50.9007285 +lng: 11.5747643 +address: "Max-Steenbeck-Straße, 07745 Jena" +datum: "22.12.1993" +quelle: "OstthüringerZeitung (OTZ) Jena, 22.12.1993; Süddeutsche Zeitung (SZ), 18.11.2011." +--- +Uwe Mundlos (geboren 1973) lebte bis 1997 in Winzerla in der Wohnung seiner Eltern in der Max-Steenbeck-Straße gemeinsam mit seinem behinderten Bruder. Er absolvierte die Polytechnische Oberschule „Magnus Poser“ in Jena, feierte 1988 seine Jugendweihe, und wollte nach einer Lehre in der Fa. Carl Zeiss am Thüringen-Kolleg in Ilmenau auf dem zweiten Bildungsweg das Abitur machen. 1994 wurde er zur Bundeswehr eingezogen. Mundlos wuchs in einem Stadtteil auf, der ausweislich der Kriminalstatistik der Polizeidirektion für das Jahr 1993 einen Schwerpunkt der gewaltbereiten Jugendlichen im Alter von 15 bis 25 Jahren  darstellte. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/elterliche-wohnung-von-uwe-mundlos-jena/index.en.md b/content/schauplaetze/elterliche-wohnung-von-uwe-mundlos-jena/index.en.md new file mode 100644 index 0000000..fae247e --- /dev/null +++ b/content/schauplaetze/elterliche-wohnung-von-uwe-mundlos-jena/index.en.md @@ -0,0 +1,14 @@ +--- +title: "Parental Apartment of Uwe Mundlos" +subtitle: "Uwe Mundlos" +date: 1993-12-22 +kategorien: ["Wohnungen des Trios"] +lat: 50.9007285 +lng: 11.5747643 +address: "Max-Steenbeck-Straße, 07745 Jena" +datum: "22.12.1993" +quelle: "OstthüringerZeitung (OTZ) Jena, 22.12.1993; Süddeutsche Zeitung (SZ), 18.11.2011." +--- +Uwe Mundlos (born 1973) lived until 1997 in Winzerla in his parents' apartment on Max-Steenbeck-Straße together with his disabled brother. He attended the Polytechnic Secondary School "Magnus Poser" in Jena, celebrated his Jugendweihe in 1988, and, after an apprenticeship at the Carl Zeiss company, intended to obtain his Abitur via the second-chance education route at the Thüringen-Kolleg in Ilmenau. In 1994 he was drafted into the Bundeswehr. Mundlos grew up in a district that, according to the police department's 1993 crime statistics, was a hotspot for violence-prone young people aged 15 to 25. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/erste-eigene-wohnung-von-beate-zschaepe-jena/cover.jpg b/content/schauplaetze/erste-eigene-wohnung-von-beate-zschaepe-jena/cover.jpg new file mode 100644 index 0000000..b898026 --- /dev/null +++ b/content/schauplaetze/erste-eigene-wohnung-von-beate-zschaepe-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14c9b3f166fc6083ffb3f9fdfd35611cac874c4b7e1b6076f93666d7ee48eeba +size 216276 diff --git a/content/schauplaetze/erste-eigene-wohnung-von-beate-zschaepe-jena/index.de.md b/content/schauplaetze/erste-eigene-wohnung-von-beate-zschaepe-jena/index.de.md new file mode 100644 index 0000000..85e6130 --- /dev/null +++ b/content/schauplaetze/erste-eigene-wohnung-von-beate-zschaepe-jena/index.de.md @@ -0,0 +1,13 @@ +--- +title: "Erste eigene Wohnung von Beate Zschäpe" +subtitle: "Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.8978173 +lng: 11.5797781 +address: "Schomerusstraße, 07745 Jena" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 37f." +--- +1997 bezog Beate Zschäpe eine kleine Wohnung in der Schomerusstraße in Winzerla, nachdem die Wohnung in der Zielinski-Straße laut Aussage von Nachbarn gegenüber der Polizei zwangsgeräumt worden war. Ihre familiäre Bezugsperson war bis zuletzt ihre in Jena-Nord lebende Großmutter. Die Wohnung nutzte sie bis zur Flucht 1998. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/erste-eigene-wohnung-von-beate-zschaepe-jena/index.en.md b/content/schauplaetze/erste-eigene-wohnung-von-beate-zschaepe-jena/index.en.md new file mode 100644 index 0000000..6a739f7 --- /dev/null +++ b/content/schauplaetze/erste-eigene-wohnung-von-beate-zschaepe-jena/index.en.md @@ -0,0 +1,13 @@ +--- +title: "Beate Zschäpe's first own apartment" +subtitle: "Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.8978173 +lng: 11.5797781 +address: "Schomerusstraße, 07745 Jena" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 37f." +--- +In 1997, Beate Zschäpe moved into a small apartment on Schomerusstraße in Winzerla, after the apartment on Zielinski-Straße had been forcibly vacated, according to statements neighbors gave to the police. Her family point of contact remained, until the end, her grandmother, who lived in Jena-Nord. She used the apartment until her flight in 1998. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/erste-eigene-wohnung-von-uwe-mundlos-jena/cover.jpg b/content/schauplaetze/erste-eigene-wohnung-von-uwe-mundlos-jena/cover.jpg new file mode 100644 index 0000000..6c28ef9 --- /dev/null +++ b/content/schauplaetze/erste-eigene-wohnung-von-uwe-mundlos-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ea4c0ec935e0647bbd231f84d60a96bad58a6bfd343477af780f08cb16c1421 +size 169837 diff --git a/content/schauplaetze/erste-eigene-wohnung-von-uwe-mundlos-jena/index.de.md b/content/schauplaetze/erste-eigene-wohnung-von-uwe-mundlos-jena/index.de.md new file mode 100644 index 0000000..e31b226 --- /dev/null +++ b/content/schauplaetze/erste-eigene-wohnung-von-uwe-mundlos-jena/index.de.md @@ -0,0 +1,13 @@ +--- +title: "Erste eigene Wohnung von Uwe Mundlos" +subtitle: "Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.9414889 +lng: 11.5931231 +address: "Leipziger Straße, 07743 Jena" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 34 ff." +--- +1997 bezog Uwe Mundlos eine eigene Wohnung in der Leipziger Straße in Jena-Nord, in der er bis zu seiner Flucht 1998 wohnte. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/erste-eigene-wohnung-von-uwe-mundlos-jena/index.en.md b/content/schauplaetze/erste-eigene-wohnung-von-uwe-mundlos-jena/index.en.md new file mode 100644 index 0000000..957cf02 --- /dev/null +++ b/content/schauplaetze/erste-eigene-wohnung-von-uwe-mundlos-jena/index.en.md @@ -0,0 +1,13 @@ +--- +title: "Uwe Mundlos's first own apartment" +subtitle: "Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.9414889 +lng: 11.5931231 +address: "Leipziger Straße, 07743 Jena" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 34 ff." +--- +In 1997, Uwe Mundlos moved into his own apartment on Leipziger Straße in Jena-Nord, where he lived until his flight in 1998. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/erste-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/cover.jpg b/content/schauplaetze/erste-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/cover.jpg new file mode 100644 index 0000000..f35a0d3 --- /dev/null +++ b/content/schauplaetze/erste-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9712547ef60c6cf68c2a8565cd7d8c1df51ab8ba6b86fc4ddedbd4cc827e7b8d +size 345802 diff --git a/content/schauplaetze/erste-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.de.md b/content/schauplaetze/erste-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.de.md new file mode 100644 index 0000000..8655dcc --- /dev/null +++ b/content/schauplaetze/erste-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Erste Wohnung von Zschäpe, Mundlos und Böhnhardt" +subtitle: "Beate Zschäpe, Uwe Böhnhardt, Uwe Mundlos, Thomas S., Thomas R." +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.78779 +lng: 12.8762 +address: "Friedrich-Viertel-Straße 85, 09123 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann. Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.12 DGB Region Südwestsachsen Hg. (2014): „Rechts“ sind doch die Anderen?!. Chemnitz, S.43" +--- +Am 26. Januar 1998 flohen die Jenaer Neonazis Beate Zschäpe, Uwe Mundlos und Uwe Böhnhardt nach Chemnitz, nachdem die Polizei Sprengstoff in ihrer Jenaer Garage sichergestellt hatte. Sie sollen sich bereits 1991/1992 mit den führenden Chemnitzer Neonazis vernetzt haben. So auch mit dem Neonazi Thomas S. aus der Gruppierung Chemnitz Concerts 88 (CC88), außerdem Vize-Chef von Blood&Honour in Chemnitz und späterer Informant des LKA Berlin. Dieser hatte zuvor für Mundlos rund ein Kilo TNT besorgt, den Sprengstoff, dessen Fund in Jena zu dem Untertauchen des Trios führte. S. brachte die drei bei seinem Freund Thomas R. in der Friedrich-Viertel-Straße 85 im Heckert-Gebiet unter, wo sie etwa zwei Wochen blieben. Das Heckert-Gebiet war zu dieser Zeit Lebensmittelpunkt vieler Neonazis. Das Haus, in dem Thomas R. lebte, galt zu dieser Zeit als “Nazi-WG” und wurde szeneintern als “Combat 85” bezeichnet. diff --git a/content/schauplaetze/erste-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.en.md b/content/schauplaetze/erste-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.en.md new file mode 100644 index 0000000..27f0bd9 --- /dev/null +++ b/content/schauplaetze/erste-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.en.md @@ -0,0 +1,11 @@ +--- +title: "First apartment of Zschäpe, Mundlos and Böhnhardt" +subtitle: "Beate Zschäpe, Uwe Böhnhardt, Uwe Mundlos, Thomas S., Thomas R." +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.78779 +lng: 12.8762 +address: "Friedrich-Viertel-Straße 85, 09123 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann. Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.12 DGB Region Südwestsachsen Hg. (2014): „Rechts“ sind doch die Anderen?!. Chemnitz, S.43" +--- +On 26 January 1998, the Jena neo-Nazis Beate Zschäpe, Uwe Mundlos and Uwe Böhnhardt fled to Chemnitz after police had seized explosives in their garage in Jena. They are believed to have already networked with the leading Chemnitz neo-Nazis in 1991/1992, including the neo-Nazi Thomas S. from the group Chemnitz Concerts 88 (CC88), who was also deputy leader of Blood & Honour in Chemnitz and later became an informant for the Berlin state criminal police office (LKA). S. had previously procured around one kilogram of TNT for Mundlos — the explosives whose discovery in Jena led to the trio going underground. S. put the three of them up with his friend Thomas R. at Friedrich-Viertel-Straße 85 in the Heckert district, where they stayed for about two weeks. At that time, the Heckert district was the hub of life for many neo-Nazis. The house where Thomas R. lived was regarded at the time as a "Nazi shared flat" and was known within the scene as "Combat 85." diff --git a/content/schauplaetze/fahndungsaufruf-ort/cover.jpg b/content/schauplaetze/fahndungsaufruf-ort/cover.jpg new file mode 100644 index 0000000..b9dec8a --- /dev/null +++ b/content/schauplaetze/fahndungsaufruf-ort/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0a0c629c5dad351dbfaa58a01cc35974151f916ec628258b0cf3b30dc109ee8 +size 246096 diff --git a/content/schauplaetze/fahndungsaufruf-ort/index.de.md b/content/schauplaetze/fahndungsaufruf-ort/index.de.md new file mode 100644 index 0000000..6c48e01 --- /dev/null +++ b/content/schauplaetze/fahndungsaufruf-ort/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Fahndungsaufruf" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1998-01-28 +kategorien: ["Flucht aus Jena"] +datum: "28.1.1998" +quelle: "OTZ, 20.2.1998; 21.2.1998 Aust/Laabs, Heimatschutz, S. 277." +--- +Am 28.1.1998 löste das LKA Thüringen einen internen deutschlandweiten Fahndungsaufruf zu den flüchtigen drei Jenaern aus. Die Namen der Tatverdächtigen wurden erstmals öffentlich am 21.2.1998 nach Freigabe durch das LKA bekannt. Trotz einiger nach Chemnitz und später Zwickau führender Indizien, gewonnen u.a. durch Observationen und Berichte von V-Männern des Verfassungsschutzes, verlief die Suche ergebnislos – mit verheerenden Folgen. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/fahndungsaufruf-ort/index.en.md b/content/schauplaetze/fahndungsaufruf-ort/index.en.md new file mode 100644 index 0000000..7368fc2 --- /dev/null +++ b/content/schauplaetze/fahndungsaufruf-ort/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Wanted Notice" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1998-01-28 +kategorien: ["Flucht aus Jena"] +datum: "28.1.1998" +quelle: "OTZ, 20.2.1998; 21.2.1998 Aust/Laabs, Heimatschutz, S. 277." +--- +On 28 January 1998, the Thuringia State Criminal Police Office (LKA) issued an internal, nationwide wanted notice for the three fugitives from Jena. The names of the suspects were first made public on 21 February 1998, after being released by the LKA. Despite a number of leads pointing to Chemnitz and later Zwickau — obtained in part through surveillance and reports from the domestic intelligence agency's informants — the search remained fruitless, with devastating consequences. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/fanzine-der-vollstrecker-zwickau/index.de.md b/content/schauplaetze/fanzine-der-vollstrecker-zwickau/index.de.md new file mode 100644 index 0000000..e86eab2 --- /dev/null +++ b/content/schauplaetze/fanzine-der-vollstrecker-zwickau/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Fanzine „Der Vollstrecker“" +subtitle: "Ralf Marschner" +date: 2021-04-01 +kategorien: ["Fanzines"] +lat: 50.7152644 +lng: 12.4937232 +address: "Schillerstraße 1, 08056 Zwickau" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.18" +--- +Bei der Herausgabe des neonazistischen Fanzines „Der Vollstrecker“ hat Ralf Marschner mitgewirkt. Es entstand zwischen 1990 und 1992. diff --git a/content/schauplaetze/fanzine-der-vollstrecker-zwickau/index.en.md b/content/schauplaetze/fanzine-der-vollstrecker-zwickau/index.en.md new file mode 100644 index 0000000..b96e728 --- /dev/null +++ b/content/schauplaetze/fanzine-der-vollstrecker-zwickau/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Fanzine \"Der Vollstrecker\"" +subtitle: "Ralf Marschner" +date: 2021-04-01 +kategorien: ["Fanzines"] +lat: 50.7152644 +lng: 12.4937232 +address: "Schillerstraße 1, 08056 Zwickau" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.18" +--- +Ralf Marschner was involved in publishing the neo-Nazi fanzine "Der Vollstrecker" ("The Enforcer"). It was produced between 1990 and 1992. diff --git a/content/schauplaetze/fanzine-foier-frei-limbach-oberfrohna/index.de.md b/content/schauplaetze/fanzine-foier-frei-limbach-oberfrohna/index.de.md new file mode 100644 index 0000000..1a78950 --- /dev/null +++ b/content/schauplaetze/fanzine-foier-frei-limbach-oberfrohna/index.de.md @@ -0,0 +1,12 @@ +--- +title: "Fanzine „Foier Frei“" +subtitle: "Michael P., Jan W., Thomas S." +date: 2014-12-16 +kategorien: ["Fanzines"] +lat: 50.85852 +lng: 12.76806 +address: "Rathausplatz 1, 09212 Limbach-Oberfrohna" +datum: "16.12.2014" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.17 NSU Watch, 171. Verhandlungstag (16.12.2014) Der Rechte Rand: Fanzines – Vom Aussterben bedroht." +--- +Bedeutendes Neonazi-Fanzine aus dem Raum Chemnitz. Unter anderem waren Michael P., Jan W. und Thomas S. an der Herausgabe der Szenezeitschrift beteiligt. Zwischen 1995 und 2004 erschienen insgesamt 20 Ausgaben, vereinzelt in einer Auflage von bis zu 1000 Stück. Inhaltlich drehten sich die Hefte um die neonazistische Skinszene. Unter gleichen Namen betrieb Michael P. ein Label,  das neun Tonträger von Rechtsrock-Bands produzierte. diff --git a/content/schauplaetze/fanzine-foier-frei-limbach-oberfrohna/index.en.md b/content/schauplaetze/fanzine-foier-frei-limbach-oberfrohna/index.en.md new file mode 100644 index 0000000..d457a38 --- /dev/null +++ b/content/schauplaetze/fanzine-foier-frei-limbach-oberfrohna/index.en.md @@ -0,0 +1,12 @@ +--- +title: "Fanzine \"Foier Frei\"" +subtitle: "Michael P., Jan W., Thomas S." +date: 2014-12-16 +kategorien: ["Fanzines"] +lat: 50.85852 +lng: 12.76806 +address: "Rathausplatz 1, 09212 Limbach-Oberfrohna" +datum: "16.12.2014" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.17 NSU Watch, 171. Verhandlungstag (16.12.2014) Der Rechte Rand: Fanzines – Vom Aussterben bedroht." +--- +An important neo-Nazi fanzine from the Chemnitz area. Michael P., Jan W. and Thomas S., among others, were involved in publishing the scene magazine. Between 1995 and 2004, a total of 20 issues appeared, some with print runs of up to 1,000 copies. In terms of content, the issues centered on the neo-Nazi skinhead scene. Under the same name, Michael P. also ran a label that produced nine records by Rechtsrock (right-wing rock) bands. diff --git a/content/schauplaetze/fanzine-sachsens-glanz-zwenkau/index.de.md b/content/schauplaetze/fanzine-sachsens-glanz-zwenkau/index.de.md new file mode 100644 index 0000000..d7f00d3 --- /dev/null +++ b/content/schauplaetze/fanzine-sachsens-glanz-zwenkau/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Fanzine „Sachsens Glanz“" +subtitle: "Thomas R." +date: 2021-04-01 +kategorien: ["Fanzines"] +lat: 51.21804 +lng: 12.32427 +address: "Bürgermeister-Ahnert-Platz 1, 04442 Zwenkau" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.17" +--- +1991-1992 erschien das neonazistische Fanzine „Sachsens Glanz“ erstmals. An der Herausgabe des Hefts hat der Neonazi Thomas R. aus Chemnitz. Das Zine erschien dann wieder von 1997-1999 und wurde in Zwenkau herausgegeben. Publiziert wurden Artikel zu Rechtsrock und der rechten Black-Metal-Szene. diff --git a/content/schauplaetze/fanzine-sachsens-glanz-zwenkau/index.en.md b/content/schauplaetze/fanzine-sachsens-glanz-zwenkau/index.en.md new file mode 100644 index 0000000..4e64895 --- /dev/null +++ b/content/schauplaetze/fanzine-sachsens-glanz-zwenkau/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Fanzine \"Sachsens Glanz\"" +subtitle: "Thomas R." +date: 2021-04-01 +kategorien: ["Fanzines"] +lat: 51.21804 +lng: 12.32427 +address: "Bürgermeister-Ahnert-Platz 1, 04442 Zwenkau" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.17" +--- +The neo-Nazi fanzine "Sachsens Glanz" ("Saxony's Glory") first appeared in 1991–1992. The neo-Nazi Thomas R. from Chemnitz was involved in publishing the magazine. The zine then reappeared from 1997–1999, published in Zwenkau. It featured articles on Rechtsrock (right-wing rock) and the far-right black metal scene. diff --git a/content/schauplaetze/fanzine-the-aryan-law-and-order-lauter-bernsbach/index.de.md b/content/schauplaetze/fanzine-the-aryan-law-and-order-lauter-bernsbach/index.de.md new file mode 100644 index 0000000..c4fcf9d --- /dev/null +++ b/content/schauplaetze/fanzine-the-aryan-law-and-order-lauter-bernsbach/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Fanzine „The Aryan Law and Order“" +subtitle: "André Eminger" +date: 2021-04-01 +kategorien: ["Fanzines"] +lat: 50.5599386 +lng: 12.7374326 +address: "Rathausstraße 11, 08312 Lauter-Bernsbach" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.18 Wikipediaeintrag zu „The Order“" +--- +André Eminger veröffentlichte unter anderem das neonazistische Skinzine „The Aryan Law and Order“, das die rassistische US-Terrorgruppe „The Order“ als Vorbild feiert. diff --git a/content/schauplaetze/fanzine-the-aryan-law-and-order-lauter-bernsbach/index.en.md b/content/schauplaetze/fanzine-the-aryan-law-and-order-lauter-bernsbach/index.en.md new file mode 100644 index 0000000..773f271 --- /dev/null +++ b/content/schauplaetze/fanzine-the-aryan-law-and-order-lauter-bernsbach/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Fanzine \"The Aryan Law and Order\"" +subtitle: "André Eminger" +date: 2021-04-01 +kategorien: ["Fanzines"] +lat: 50.5599386 +lng: 12.7374326 +address: "Rathausstraße 11, 08312 Lauter-Bernsbach" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.18 Wikipediaeintrag zu „The Order“" +--- +Among other things, André Eminger published the neo-Nazi skinzine "The Aryan Law and Order," which celebrates the racist US terrorist group "The Order" as a role model. diff --git a/content/schauplaetze/fanzine-voice-of-zwickau-zwickau/index.de.md b/content/schauplaetze/fanzine-voice-of-zwickau-zwickau/index.de.md new file mode 100644 index 0000000..bba9cf0 --- /dev/null +++ b/content/schauplaetze/fanzine-voice-of-zwickau-zwickau/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Fanzine „Voice of Zwickau“" +subtitle: "Ralf Marschner" +date: 2021-04-01 +kategorien: ["Fanzines"] +lat: 50.7152644 +lng: 12.4937232 +address: "Schillerstraße 1, 08056 Zwickau" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.18" +--- +Dieses neonazistische Skinzine mit Artikeln über Rechtsrock und Politik wurde 1997 unter Mitwirkung von Ralf Marschner veröffentlicht. diff --git a/content/schauplaetze/fanzine-voice-of-zwickau-zwickau/index.en.md b/content/schauplaetze/fanzine-voice-of-zwickau-zwickau/index.en.md new file mode 100644 index 0000000..468f172 --- /dev/null +++ b/content/schauplaetze/fanzine-voice-of-zwickau-zwickau/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Fanzine „Voice of Zwickau“" +subtitle: "Ralf Marschner" +date: 2021-04-01 +kategorien: ["Fanzines"] +lat: 50.7152644 +lng: 12.4937232 +address: "Schillerstraße 1, 08056 Zwickau" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.18" +--- +This neo-Nazi skinzine, containing articles on Rechtsrock (right-wing extremist music) and politics, was published in 1997 with the involvement of Ralf Marschner. diff --git a/content/schauplaetze/fanzine-white-supremacy-wilsdruff/index.de.md b/content/schauplaetze/fanzine-white-supremacy-wilsdruff/index.de.md new file mode 100644 index 0000000..3fb0397 --- /dev/null +++ b/content/schauplaetze/fanzine-white-supremacy-wilsdruff/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Fanzine „White Supremacy“" +subtitle: "Thomas R., Jan W., Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Fanzines"] +lat: 51.0513778 +lng: 13.5334176 +address: "Nossener Straße 20, 01723 Wilsdruff" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.17" +--- +Das Fanzine „White Supremacy“ wurde seit 1998 unter Mitwirkung von Thomas R. und Jan W. herausgegeben. Inhalte waren Rechtsrock, die NS-Black-Metal-Szene und politische Artikel. Weiterhin wird vermutet, dass Uwe Mundlos der Autor einiger Artikel war. diff --git a/content/schauplaetze/fanzine-white-supremacy-wilsdruff/index.en.md b/content/schauplaetze/fanzine-white-supremacy-wilsdruff/index.en.md new file mode 100644 index 0000000..8ba6197 --- /dev/null +++ b/content/schauplaetze/fanzine-white-supremacy-wilsdruff/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Fanzine „White Supremacy“" +subtitle: "Thomas R., Jan W., Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Fanzines"] +lat: 51.0513778 +lng: 13.5334176 +address: "Nossener Straße 20, 01723 Wilsdruff" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.17" +--- +The fanzine "White Supremacy" was published from 1998 onward with the involvement of Thomas R. and Jan W. Its content included Rechtsrock (right-wing extremist music), the National Socialist black metal scene, and political articles. It is further suspected that Uwe Mundlos authored some of the articles. diff --git a/content/schauplaetze/farbattacke-auf-die-magnus-poser-gedenkstaette-jena/cover.jpg b/content/schauplaetze/farbattacke-auf-die-magnus-poser-gedenkstaette-jena/cover.jpg new file mode 100644 index 0000000..4bcd430 --- /dev/null +++ b/content/schauplaetze/farbattacke-auf-die-magnus-poser-gedenkstaette-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38690fd6fbc16df1809710b82aca0a2f2a33a1bc9f04b2b192ce78ed2e7f5d4f +size 269546 diff --git a/content/schauplaetze/farbattacke-auf-die-magnus-poser-gedenkstaette-jena/index.de.md b/content/schauplaetze/farbattacke-auf-die-magnus-poser-gedenkstaette-jena/index.de.md new file mode 100644 index 0000000..176cc57 --- /dev/null +++ b/content/schauplaetze/farbattacke-auf-die-magnus-poser-gedenkstaette-jena/index.de.md @@ -0,0 +1,13 @@ +--- +title: "Farbattacke auf die Magnus-Poser-Gedenkstätte" +date: 1996-02-19 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9425963 +lng: 11.5888975 +address: "Singerweg 2, 07743 Jena" +datum: "19.2.1996" +quelle: "OTZ Jena, 22.2.1996, 29.2.1996." +--- +In der Nacht zum 19.2.1996 wurde eine großflächige Schändung der Magnus-Poser-Gedenkstätte auf dem Jenaer Nordfriedhof entdeckt. Mit weißer Farbe wurden Hakenkreuze und eine SS-Rune an der Stele des kommunistischen, in Buchenwald ermordeten Widerstandskämpfers angebracht, im Schriftzug „Ehre der Helden des antifaschistischen Widerstandskampfes“ wurden die Buchstaben „anti“ und der symbolischer Winkel, im KZ Zeichen für Politische Häftlinge, weiß übertüncht und Ignatz Bubis, damals Vorsitzender des Zentralrates der Juden in Deutschland, verunglimpft. Faktisch als Bekennerschreiben war der an einer Stufe zu lesende und mit weiteren Hakenkreuzen versehene Schriftzug „Der Nationale Widerstand Jena“ zu betrachten. Die Täter, die im Umkreis von Böhnhardt, Mundlos und Zschäpe vermutet wurden, konnten nicht ermittelt werden. Noch heute sind Überreste der Tat deutlich zu erkennen. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/farbattacke-auf-die-magnus-poser-gedenkstaette-jena/index.en.md b/content/schauplaetze/farbattacke-auf-die-magnus-poser-gedenkstaette-jena/index.en.md new file mode 100644 index 0000000..19de32f --- /dev/null +++ b/content/schauplaetze/farbattacke-auf-die-magnus-poser-gedenkstaette-jena/index.en.md @@ -0,0 +1,13 @@ +--- +title: "Paint Attack on the Magnus Poser Memorial" +date: 1996-02-19 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9425963 +lng: 11.5888975 +address: "Singerweg 2, 07743 Jena" +datum: "19.2.1996" +quelle: "OTZ Jena, 22.2.1996, 29.2.1996." +--- +On the night of 19 February 1996, extensive desecration of the Magnus Poser Memorial at Jena's Nordfriedhof (North Cemetery) was discovered. Swastikas and an SS rune were painted in white paint on the stele of the communist resistance fighter, who was murdered in Buchenwald. In the inscription "Ehre der Helden des antifaschistischen Widerstandskampfes" ("Honor to the heroes of the antifascist resistance struggle"), the word "anti" and the symbolic triangle — the concentration camp marker for political prisoners — were painted over in white, and Ignatz Bubis, then chairman of the Central Council of Jews in Germany, was disparaged. Effectively serving as a letter claiming responsibility was the inscription "Der Nationale Widerstand Jena" ("The National Resistance Jena"), legible on a step and likewise accompanied by further swastikas. The perpetrators, suspected to be from the circle around Böhnhardt, Mundlos, and Zschäpe, could not be identified. Traces of the act remain clearly visible to this day. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/fliegerscheune-i-jena/cover.jpg b/content/schauplaetze/fliegerscheune-i-jena/cover.jpg new file mode 100644 index 0000000..aab3098 --- /dev/null +++ b/content/schauplaetze/fliegerscheune-i-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee1a520b0c69d7919b217cf5849b72b30d773dd5baae12f28721229b46e01d2b +size 339179 diff --git a/content/schauplaetze/fliegerscheune-i-jena/index.de.md b/content/schauplaetze/fliegerscheune-i-jena/index.de.md new file mode 100644 index 0000000..b2020a3 --- /dev/null +++ b/content/schauplaetze/fliegerscheune-i-jena/index.de.md @@ -0,0 +1,14 @@ +--- +title: "„Fliegerscheune“ I" +subtitle: "Beate Zschäpe, Tino Brandt" +date: 1995-06-21 +kategorien: ["Demo-Orte"] +lat: 50.86967 +lng: 11.56456 +address: "Leutra 18, 07751 Jena" +datum: "21.6.1995" +quelle: "Thüringer Landtag, 5. Wahlperiode, Zwischenbericht des Untersuchungsausschusses 5/1, Drucksache 5/5810, 7.3.2013, S. 251 OTZ Jena, 16.4.2013 Aust/Laabs, Heimatschutz, S. 26." +--- +Am 21.6.1995 feierten 16 Neonazis an einer auf dem Cospoth, einer bei Oßmaritz gelegenen Hochebene im Jenaer Süden, gelegenen ehemaligen „Fliegerscheune“ der Hitlerjugend die Sommersonnenwende. Es wurde, dem rassistischen Ku-Klux-Clan entlehnt, ein hölzernes Kreuz verbrannt. Dabei entstandene Fotos zeigen, wie Böhnhardt das mit brennbarem Material umwickelte Kreuz entzündet, und auch Beate Zschäpe. Die Fotos wurden 1996 bei einer Durchsuchung von Zschäpes Wohnung gefunden. Laut ihrer Aussage bei der Polizei sei bei der Feier auch Tino Brandt zugegen gewesen. Die Scheune wurde vor Jahren abgerissen. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/fliegerscheune-i-jena/index.en.md b/content/schauplaetze/fliegerscheune-i-jena/index.en.md new file mode 100644 index 0000000..67bc5c0 --- /dev/null +++ b/content/schauplaetze/fliegerscheune-i-jena/index.en.md @@ -0,0 +1,14 @@ +--- +title: "„Fliegerscheune“ I" +subtitle: "Beate Zschäpe, Tino Brandt" +date: 1995-06-21 +kategorien: ["Demo-Orte"] +lat: 50.86967 +lng: 11.56456 +address: "Leutra 18, 07751 Jena" +datum: "21.6.1995" +quelle: "Thüringer Landtag, 5. Wahlperiode, Zwischenbericht des Untersuchungsausschusses 5/1, Drucksache 5/5810, 7.3.2013, S. 251 OTZ Jena, 16.4.2013 Aust/Laabs, Heimatschutz, S. 26." +--- +On 21 June 1995, 16 neo-Nazis celebrated the summer solstice at a former Hitler Youth "Fliegerscheune" (aircraft barn) located on the Cospoth, a plateau near Oßmaritz in the south of Jena. Borrowing from the racist Ku Klux Klan, a wooden cross was burned. Photographs taken at the event show Böhnhardt setting alight the cross, which had been wrapped in flammable material, as well as Beate Zschäpe. The photographs were found in 1996 during a search of Zschäpe's apartment. According to her statement to the police, Tino Brandt had also been present at the gathering. The barn was demolished years ago. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/fliegerscheune-ii-jena/index.de.md b/content/schauplaetze/fliegerscheune-ii-jena/index.de.md new file mode 100644 index 0000000..5db5665 --- /dev/null +++ b/content/schauplaetze/fliegerscheune-ii-jena/index.de.md @@ -0,0 +1,16 @@ +--- +title: "„Fliegerscheune“ II" +subtitle: "Carsten Szczepanski" +date: 2021-09-15 +kategorien: ["Demo-Orte"] +lat: 50.86967 +lng: 11.56456 +address: "Leutra 18, 07751 Jena" +datum: "15.9.2021" +quelle: "TLZ, 15.9.2021 OTZ Jena, 16.4.2013 Aust/Laabs,Heimatschutz, S. 26 Schultz, NSU, S. 144." +--- +Die „Idee“ einer Kreuzverbrennung 1995 bei Jena geht wohl auf den Brandenburger Neonazi und V-Mann des Brandenburger Verfassungsschutzes seit 1994 Carsten Szczepanski („Piatto“) zurück, der 1991 einen Ku-Kux-Klan-Führer aus den USA holte und bei Königswusterhausen ein Holzkreuz anzünden ließ. In einer Wohnung Szczepanskis wurden Bauteile für Rohrbomben gefunden, weshalb der Generalbundesanwalt wegen des Verdachts der Bildung einer terroristischen Vereinigung ermittelte. Mit ihm bekannt war Thomas St., Mitglied einer Chemnitzer Skinhead-Gruppe sowie Blood & Honour wie auch über Jahre Informant des Berliner LKA. Er hatte für das Jenaer Trio ein Kilogramm TNT beschafft. 1976/77 waren er und Zschäpe zeitweise ein Paar. + +Ein halbes Jahr nach dem Ende des Trios 2011erhielten Ermittler den Hinweis, dass 1998 ein Helfer Zschäpes persönliche Unterlagen an der Scheune vergraben habe. Dort wurden u.a. Zschäpes Schulzeugnisse entdeckt. + +(Text: Frank Döbert) diff --git a/content/schauplaetze/fliegerscheune-ii-jena/index.en.md b/content/schauplaetze/fliegerscheune-ii-jena/index.en.md new file mode 100644 index 0000000..bf34911 --- /dev/null +++ b/content/schauplaetze/fliegerscheune-ii-jena/index.en.md @@ -0,0 +1,16 @@ +--- +title: "„Fliegerscheune“ II" +subtitle: "Carsten Szczepanski" +date: 2021-09-15 +kategorien: ["Demo-Orte"] +lat: 50.86967 +lng: 11.56456 +address: "Leutra 18, 07751 Jena" +datum: "15.9.2021" +quelle: "TLZ, 15.9.2021 OTZ Jena, 16.4.2013 Aust/Laabs,Heimatschutz, S. 26 Schultz, NSU, S. 144." +--- +The "idea" for a cross burning near Jena in 1995 is believed to trace back to Carsten Szczepanski ("Piatto"), a neo-Nazi from Brandenburg and an informant for the Brandenburg domestic intelligence service (Verfassungsschutz) from 1994 onward, who in 1991 had brought a Ku Klux Klan leader over from the USA and had a wooden cross set alight near Königs Wusterhausen. Components for pipe bombs were found in one of Szczepanski's apartments, prompting the Federal Prosecutor General to investigate on suspicion of forming a terrorist organization. Also acquainted with him was Thomas St., a member of a Chemnitz skinhead group and of Blood & Honour, who for years was also an informant for the Berlin State Criminal Police Office (LKA). He had procured one kilogram of TNT for the Jena trio. In 1976/77 he and Zschäpe were a couple for a time. + +Half a year after the trio's downfall in 2011, investigators received a tip that in 1998 a helper of Zschäpe's had buried her personal documents at the barn. Among the items discovered there were Zschäpe's school report cards. + +(Text: Frank Döbert) diff --git a/content/schauplaetze/flucht-nach-mordanschlag-auf-i-smail-ya-ar-nuernberg/index.de.md b/content/schauplaetze/flucht-nach-mordanschlag-auf-i-smail-ya-ar-nuernberg/index.de.md new file mode 100644 index 0000000..5eb1093 --- /dev/null +++ b/content/schauplaetze/flucht-nach-mordanschlag-auf-i-smail-ya-ar-nuernberg/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Flucht nach Mordanschlag auf İsmail Yaşar" +date: 2005-06-28 +kategorien: ["Fluchwege"] +lat: 49.4512004 +lng: 11.1030219 +address: "Norikerstraße, 90402 Nürnberg" +datum: "28.06.2005" +quelle: "Polizeipräsidium Mittelfranken vom 28.06.2005: POL-MFR: (951) Mordserie an türkischengriechischen Staatsangehörigen im gesamten Bundesgebiet – hier: Fahndung in „XY-unbekannt“-Sendung am 30.06.2005, Internetseite: https://www.presseportal.de/blaulicht/pm/6013/695794 [Aufruf 07.09.2021]" +--- +Das Polizeipräsidium Mittelfranken veröffentlichte am 28. Juni 2005 einen Fahndungsaufruf nebst Phantombildern. Gesucht wurden zwei Fahrradfahrer mit schwarzen Rucksäcken, die am Donnerstag, den 9. Juni 2005 um 10 Uhr vor dem Dönerstand des an diesem Tag dort ermordeten İsmail Yaşar in der Scharrerstraße in Nürnberg beobachtet worden waren. Darüber hinaus wurden neben dem Hochhaus am Parkplatz Norikerstraße am Wöhrder See in Nürnberg zwei Männer im Alter zwischen 20 und 30 Jahren gesichtet. Die beiden 185-190 cm großen, schlanken Männer, die sich sehr ähnlich sahen und kurze Haare trugen, sollen am Vormittag des 9. Juni 2005 zwei neuwertige Herren-Treckingfahrräder, schwarz bzw. anthrazitfarben, in einen dunklen Van oder Transporter eingeladen haben. Die Seiten- und Heckscheiben waren abgedunkelt. In der Mitteilung des Polizeipräsidiums Mittelfrankens wird folgender Satz im Konjunktiv geschrieben: „Das Kennzeichen des Fahrzeugs könnte ein ausländisches gewesen sein.“ diff --git a/content/schauplaetze/flucht-nach-mordanschlag-auf-i-smail-ya-ar-nuernberg/index.en.md b/content/schauplaetze/flucht-nach-mordanschlag-auf-i-smail-ya-ar-nuernberg/index.en.md new file mode 100644 index 0000000..ed24fcb --- /dev/null +++ b/content/schauplaetze/flucht-nach-mordanschlag-auf-i-smail-ya-ar-nuernberg/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Escape after the murder of İsmail Yaşar" +date: 2005-06-28 +kategorien: ["Fluchwege"] +lat: 49.4512004 +lng: 11.1030219 +address: "Norikerstraße, 90402 Nürnberg" +datum: "28.06.2005" +quelle: "Polizeipräsidium Mittelfranken vom 28.06.2005: POL-MFR: (951) Mordserie an türkischengriechischen Staatsangehörigen im gesamten Bundesgebiet – hier: Fahndung in „XY-unbekannt“-Sendung am 30.06.2005, Internetseite: https://www.presseportal.de/blaulicht/pm/6013/695794 [Aufruf 07.09.2021]" +--- +On 28 June 2005, the Mittelfranken Police Headquarters issued a public appeal for information, along with composite sketches. The police were searching for two cyclists with black backpacks who had been seen on Thursday, 9 June 2005, at 10 a.m., in front of the kebab stand of İsmail Yaşar, who was murdered there that day, on Scharrerstraße in Nuremberg. In addition, two men aged between 20 and 30 were spotted next to the high-rise building at the Norikerstraße car park by the Wöhrder See in Nuremberg. The two men, 185–190 cm tall, slim, who closely resembled one another and had short hair, reportedly loaded two nearly new men's trekking bicycles, one black and one anthracite-coloured, into a dark van or minibus that morning of 9 June 2005. The side and rear windows were tinted. The statement from the Mittelfranken Police Headquarters includes the following sentence, phrased in the conditional: "The vehicle's license plate may have been a foreign one." diff --git a/content/schauplaetze/fuenfte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/cover.jpg b/content/schauplaetze/fuenfte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/cover.jpg new file mode 100644 index 0000000..19972f1 --- /dev/null +++ b/content/schauplaetze/fuenfte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:023c9b56b8b721f2c44356265802e8131eed54a664905f54d7564eae929e9012 +size 283969 diff --git a/content/schauplaetze/fuenfte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.de.md b/content/schauplaetze/fuenfte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.de.md new file mode 100644 index 0000000..1fa3de9 --- /dev/null +++ b/content/schauplaetze/fuenfte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Fünfte Wohnung von Zschäpe, Mundlos und Böhnhardt" +subtitle: "Beate Zschäpe, Uwe Mundlos, Uwe Böhnhardt" +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.7293297 +lng: 12.5254036 +address: "Heisenbergstraße 6, 08066 Zwickau" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Das NSU-Trio zog im Jahr 2000 nach Zwickau. Den Mietvertrag schloss es selbst ab, wobei Uwe Mundlos mit dem Namen Max-Florian B. unterschrieben hat. diff --git a/content/schauplaetze/fuenfte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.en.md b/content/schauplaetze/fuenfte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.en.md new file mode 100644 index 0000000..ebe23fe --- /dev/null +++ b/content/schauplaetze/fuenfte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Fifth apartment of Zschäpe, Mundlos and Böhnhardt" +subtitle: "Beate Zschäpe, Uwe Mundlos, Uwe Böhnhardt" +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.7293297 +lng: 12.5254036 +address: "Heisenbergstraße 6, 08066 Zwickau" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +The NSU trio moved to Zwickau in 2000. They signed the lease themselves, with Uwe Mundlos signing under the name Max-Florian B. diff --git a/content/schauplaetze/garage-nr-5-ort/cover.jpg b/content/schauplaetze/garage-nr-5-ort/cover.jpg new file mode 100644 index 0000000..46f4f8f --- /dev/null +++ b/content/schauplaetze/garage-nr-5-ort/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a29da882136e790e6f4c1a2724e7c64c9c381e764346ed85b52cca14bf93978 +size 213365 diff --git a/content/schauplaetze/garage-nr-5-ort/index.de.md b/content/schauplaetze/garage-nr-5-ort/index.de.md new file mode 100644 index 0000000..628c375 --- /dev/null +++ b/content/schauplaetze/garage-nr-5-ort/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Garage Nr. 5" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1998-01-26 +kategorien: ["Flucht aus Jena"] +datum: "26.1.1998" +quelle: "Aust/ Laabs, Heimatschutz, S. 260 ff." +--- +Die Durchsuchung der Garage Nr. 5 als auch zwei weiterer in der Richard-Zimmermann-Straße durch LKA und Kripo Jena kam erst am 26.1.1998 zustande. In den Lobedaer Garagen fanden sich – in Anwesenheit von Uwe Böhnhardt – lediglich Spraydosen. Böhnhardt konnte sich daraufhin ungehindert entfernen. „An der Kläranlage“ bemühte sich zur selben Zeit ein weiteres Team zunächst vergebens, die Garage Nr. 5 zu öffnen. Von einem Beamten der Jenaer Kripo, der sie an Beate Zschäpe vermietet hatte, musste erst der Schlüssel geholt werden. Die Fahnder entdeckten neben Akten und Fotografien sechs Rohrbomben sowie einen Plastikbeutel mit gelbem Pulver (TNT), später hochgerechnet 1,4 Kilogramm. Ein Bombenentschärfer transportierte die Funde nach Erfurt. Ein drittes Team durchsuchte die Wohnungen von Böhnhardt, Mundlos und Zschäpe. Alle drei befanden sich zu dieser Zeit im Auto von Ralf Wohlleben unbehelligt auf der Flucht nach Chemnitz. Die in Zschäpes Wohnung sichergestellten Waffen stellte das LKA später der Presse vor. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/garage-nr-5-ort/index.en.md b/content/schauplaetze/garage-nr-5-ort/index.en.md new file mode 100644 index 0000000..3407878 --- /dev/null +++ b/content/schauplaetze/garage-nr-5-ort/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Garage No. 5" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1998-01-26 +kategorien: ["Flucht aus Jena"] +datum: "26.1.1998" +quelle: "Aust/ Laabs, Heimatschutz, S. 260 ff." +--- +The search of Garage No. 5, as well as two others on Richard-Zimmermann-Straße, by the State Criminal Police Office (LKA) and the Jena Criminal Investigation Department did not take place until 26 January 1998. In the garages in Lobeda, only spray cans were found — in the presence of Uwe Böhnhardt. Böhnhardt was then able to leave unhindered. "At the sewage treatment plant," another team was, at the same time, initially unable to open Garage No. 5. A key first had to be fetched from an officer of the Jena Criminal Investigation Department who had rented the garage to Beate Zschäpe. Alongside files and photographs, the investigators discovered six pipe bombs as well as a plastic bag containing yellow powder (TNT), later calculated to weigh 1.4 kilograms. A bomb disposal expert transported the finds to Erfurt. A third team searched the apartments of Böhnhardt, Mundlos and Zschäpe. At that time, all three were unmolested, fleeing to Chemnitz in Ralf Wohlleben's car. The weapons seized in Zschäpe's apartment were later presented to the press by the LKA. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/geheime-treffen-mit-boehnhardts-eltern-chemnitz/index.de.md b/content/schauplaetze/geheime-treffen-mit-boehnhardts-eltern-chemnitz/index.de.md new file mode 100644 index 0000000..8d04965 --- /dev/null +++ b/content/schauplaetze/geheime-treffen-mit-boehnhardts-eltern-chemnitz/index.de.md @@ -0,0 +1,15 @@ +--- +title: "Geheime Treffen mit Böhnhardts Eltern" +subtitle: "Beate Zschäpe, Uwe Böhnhardt, Uwe Mundlos, Böhnhardts Eltern" +date: 2021-04-01 +kategorien: ["Aufenthaltsorte"] +lat: 50.8522036 +lng: 12.8877834 +address: "B95 124, 09114 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Das NSU-Trio traf sich während ihres Aufenthalts in Sachsen mind. drei Mal mit + +Böhnhardts Eltern. Diese Treffen, zu denen die Eltern Fotos von Böhnhardts Bruder + +mitbrachten, fanden stets in einem Park am Stadtrand von Chemnitz statt. diff --git a/content/schauplaetze/geheime-treffen-mit-boehnhardts-eltern-chemnitz/index.en.md b/content/schauplaetze/geheime-treffen-mit-boehnhardts-eltern-chemnitz/index.en.md new file mode 100644 index 0000000..1fa2c5f --- /dev/null +++ b/content/schauplaetze/geheime-treffen-mit-boehnhardts-eltern-chemnitz/index.en.md @@ -0,0 +1,15 @@ +--- +title: "Secret meetings with Böhnhardt's parents" +subtitle: "Beate Zschäpe, Uwe Böhnhardt, Uwe Mundlos, Böhnhardt's parents" +date: 2021-04-01 +kategorien: ["Aufenthaltsorte"] +lat: 50.8522036 +lng: 12.8877834 +address: "B95 124, 09114 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +During their time in Saxony, the NSU trio met with + +Böhnhardt's parents at least three times. These meetings, to which the parents brought photos of Böhnhardt's brother, + +always took place in a park on the outskirts of Chemnitz. diff --git a/content/schauplaetze/hauptbahnhof-dresden-dresden/index.de.md b/content/schauplaetze/hauptbahnhof-dresden-dresden/index.de.md new file mode 100644 index 0000000..0b396ca --- /dev/null +++ b/content/schauplaetze/hauptbahnhof-dresden-dresden/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Hauptbahnhof Dresden" +subtitle: "Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Zschäpes Flucht"] +lat: 51.0403398 +lng: 13.7314638 +address: "Wiener Platz 4, 01069 Dresden" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Einige Minuten nach Mitternacht erreicht Zschäpe den Dresdener Hauptbahnhof. Sie war am Vortag mit dem Zug in Halle gestartet. diff --git a/content/schauplaetze/hauptbahnhof-dresden-dresden/index.en.md b/content/schauplaetze/hauptbahnhof-dresden-dresden/index.en.md new file mode 100644 index 0000000..0355b03 --- /dev/null +++ b/content/schauplaetze/hauptbahnhof-dresden-dresden/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Dresden Central Station" +subtitle: "Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Zschäpes Flucht"] +lat: 51.0403398 +lng: 13.7314638 +address: "Wiener Platz 4, 01069 Dresden" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +A few minutes after midnight, Zschäpe arrives at Dresden Central Station. She had set off by train from Halle the day before. diff --git a/content/schauplaetze/hauptbahnhof-leipzig-ort/index.de.md b/content/schauplaetze/hauptbahnhof-leipzig-ort/index.de.md new file mode 100644 index 0000000..01d6c5b --- /dev/null +++ b/content/schauplaetze/hauptbahnhof-leipzig-ort/index.de.md @@ -0,0 +1,10 @@ +--- +title: "Hauptbahnhof Leipzig" +subtitle: "Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Zschäpes Flucht"] +lat: 51.34472760673551 +lng: 12.380096340545208 +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Am Morgen des 5. Novembers 2011 erreicht Zschäpe den Leipziger Hauptbahnhof. Dort surft sie im Internet und versendet vermutlich mehrere Exemplare des Bekennervideos. diff --git a/content/schauplaetze/hauptbahnhof-leipzig-ort/index.en.md b/content/schauplaetze/hauptbahnhof-leipzig-ort/index.en.md new file mode 100644 index 0000000..54b2c02 --- /dev/null +++ b/content/schauplaetze/hauptbahnhof-leipzig-ort/index.en.md @@ -0,0 +1,10 @@ +--- +title: "Leipzig Central Station" +subtitle: "Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Zschäpes Flucht"] +lat: 51.34472760673551 +lng: 12.380096340545208 +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +On the morning of 5 November 2011, Zschäpe reaches Leipzig Central Station. There she surfs the internet and presumably sends out several copies of the confession video. diff --git a/content/schauplaetze/holzmarkt-jena/cover.jpg b/content/schauplaetze/holzmarkt-jena/cover.jpg new file mode 100644 index 0000000..75264f2 --- /dev/null +++ b/content/schauplaetze/holzmarkt-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cc0ddd2acfcd54268fb676f7ca88cb9a5c7febbea51334f9cb7dd4475539517 +size 197493 diff --git a/content/schauplaetze/holzmarkt-jena/index.de.md b/content/schauplaetze/holzmarkt-jena/index.de.md new file mode 100644 index 0000000..58ae9fa --- /dev/null +++ b/content/schauplaetze/holzmarkt-jena/index.de.md @@ -0,0 +1,14 @@ +--- +title: "Holzmarkt" +subtitle: "Beate Zschäpe" +date: 1995-02-12 +kategorien: ["Demo-Orte"] +lat: 50.9270349 +lng: 11.5857375 +address: "Holzmarkt, 07743 Jena" +datum: "12.2.1995" +quelle: "OTZ Jena, 12.2.1995 Aust/Laabs, Heimatschutz, S. 115 ff." +--- +Am 12.2.1995 beabsichtigte die „Interessengemeinschaft Thüringer Heimatschutz“ in der Jenaer Innenstadt eine Demonstration mit bis zu 250 Teilnehmern zu veranstalten. Sie sollte über den Altstadtring vom Johannisplatz über den Lutherplatz zum Holzmarkt (Foto) führen. Das Motto: „Bewahrung Thüringer Identität gegen Internationalisierung durch die Europäische Gemeinschaft“. Die Anmeldung beim Ordnungsamt hatte Beate Zschäpe am 2.2.1995 überbracht. Die Stadt lehnte den Antrag mit der Begründung ab, es habe sich eine Übereinstimmung mit einer Antragstellung von 1994 anlässlich des Jahrestages der „Reichskristallnacht“ gezeigt. 14 Tage zuvor hatte Tino Brandt vom Landesamt für Verfassungsschutz Thüringen den Decknamen „Otto“ erhalten. Bis heute ist der Holzmarkt Schauplatz von Kundgebungen und Demonstrationen. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/holzmarkt-jena/index.en.md b/content/schauplaetze/holzmarkt-jena/index.en.md new file mode 100644 index 0000000..f296851 --- /dev/null +++ b/content/schauplaetze/holzmarkt-jena/index.en.md @@ -0,0 +1,14 @@ +--- +title: "Holzmarkt" +subtitle: "Beate Zschäpe" +date: 1995-02-12 +kategorien: ["Demo-Orte"] +lat: 50.9270349 +lng: 11.5857375 +address: "Holzmarkt, 07743 Jena" +datum: "12.2.1995" +quelle: "OTZ Jena, 12.2.1995 Aust/Laabs, Heimatschutz, S. 115 ff." +--- +On 12 February 1995, the "Interessengemeinschaft Thüringer Heimatschutz" intended to hold a demonstration with up to 250 participants in Jena's city centre. It was planned to run along the Altstadtring from Johannisplatz via Lutherplatz to Holzmarkt (photo). The motto: "Preserving Thuringian identity against internationalization through the European Community." Beate Zschäpe had submitted the registration to the public order office on 2 February 1995. The city rejected the application on the grounds that it coincided with an application from 1994 marking the anniversary of the "Reichskristallnacht" (Night of Broken Glass). Fourteen days earlier, Tino Brandt had been given the cover name "Otto" by the Thuringian Office for the Protection of the Constitution. To this day, Holzmarkt remains a site of rallies and demonstrations. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/jugendwerkstatt-jena/cover.jpg b/content/schauplaetze/jugendwerkstatt-jena/cover.jpg new file mode 100644 index 0000000..015314d --- /dev/null +++ b/content/schauplaetze/jugendwerkstatt-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a44707a991fd5716afb5443299443ffccca1ab539c49a2b13eea9d1852b7a586 +size 276429 diff --git a/content/schauplaetze/jugendwerkstatt-jena/index.de.md b/content/schauplaetze/jugendwerkstatt-jena/index.de.md new file mode 100644 index 0000000..53c6a20 --- /dev/null +++ b/content/schauplaetze/jugendwerkstatt-jena/index.de.md @@ -0,0 +1,14 @@ +--- +title: "Jugendwerkstatt" +subtitle: "Beate Zschäpe, Ralf Wohlleben, Andre K." +date: 1991-04-06 +kategorien: ["Demo-Orte"] +lat: 50.9493342 +lng: 11.6187467 +address: "Am Steinbach 15, 07743 Jena" +datum: "6.4.1991" +quelle: "TLZ Jena, 6.4.1991 OTZ Jena, 21.12.2011." +--- +In der Jugendwerkstadt der (kommunalen) Überbetrieblichen Ausbildungsgesellschaft ÜAG mit Sitz Am Steinborn in Jena-Nord beschäftigte das Jugendamt im Dezernat Jugend, Familie, Freizeit und Sport arbeitslose Jugendliche, denen dort in verschiedenen Berufsgruppen bei der Realisierung kommunaler Aufgaben eine berufliche Perspektive geboten wurde. So arbeiteten 1991 zwei Gruppen am Aufbau des Winzerclubs mit. Über die Dauer eines Jahres war bis August 1997 Beate Zschäpein der Maler-Gruppe beschäftigt. Dass sie zu diesem Zeitpunkt bereits tief in der rechten Szene verankert war, blieb weitgehend unbemerkt. Vor Zschäpe gehörten 1993 (und erneut 1999/2000) Andre K., im Jahr 1995 auch Ralf Wohlleben der Jugendwerkstatt an. Rechtsgerichtete Jugendliche stellten in den 1990er Jahren einen deutlichen Anteil. Mit der Folge, dass linksorientierte Jugendliche die Ausbildung in der Einrichtung oft wieder abbrachen. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/jugendwerkstatt-jena/index.en.md b/content/schauplaetze/jugendwerkstatt-jena/index.en.md new file mode 100644 index 0000000..6ca88a9 --- /dev/null +++ b/content/schauplaetze/jugendwerkstatt-jena/index.en.md @@ -0,0 +1,14 @@ +--- +title: "Jugendwerkstatt" +subtitle: "Beate Zschäpe, Ralf Wohlleben, Andre K." +date: 1991-04-06 +kategorien: ["Demo-Orte"] +lat: 50.9493342 +lng: 11.6187467 +address: "Am Steinbach 15, 07743 Jena" +datum: "6.4.1991" +quelle: "TLZ Jena, 6.4.1991 OTZ Jena, 21.12.2011." +--- +At the Jugendwerkstatt (youth workshop) of the (municipal) Überbetriebliche Ausbildungsgesellschaft (ÜAG), based Am Steinborn in Jena-Nord, the youth welfare office's department for youth, family, leisure and sport employed unemployed young people, offering them occupational prospects in various trades through work on municipal tasks. In 1991, for instance, two groups helped build the Winzerclub. For about a year, until August 1997, Beate Zschäpe was employed in the painters' group. That she was already deeply embedded in the far-right scene at that time went largely unnoticed. Before Zschäpe, Andre K. had belonged to the Jugendwerkstatt in 1993 (and again in 1999/2000), and Ralf Wohlleben also did so in 1995. Right-wing youths made up a significant share of participants in the 1990s, with the result that left-leaning young people often dropped out of the training programme at the facility. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/junge-gemeinde-stadtmitte-jena/cover.jpg b/content/schauplaetze/junge-gemeinde-stadtmitte-jena/cover.jpg new file mode 100644 index 0000000..4584b39 --- /dev/null +++ b/content/schauplaetze/junge-gemeinde-stadtmitte-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e17b9d4961600c1a0f93462c171092fc8c3b80f593140e41e14d004fff155ee +size 218086 diff --git a/content/schauplaetze/junge-gemeinde-stadtmitte-jena/index.de.md b/content/schauplaetze/junge-gemeinde-stadtmitte-jena/index.de.md new file mode 100644 index 0000000..65075b5 --- /dev/null +++ b/content/schauplaetze/junge-gemeinde-stadtmitte-jena/index.de.md @@ -0,0 +1,13 @@ +--- +title: "Junge Gemeinde Stadtmitte" +date: 1997-07-08 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.929368 +lng: 11.5850162 +address: "Johannisstraße 14, 07743 Jena" +datum: "8.7.1997" +quelle: "Wikipedia: Lothar König (Pfarrer)" +--- +Die Johannisstraße 14 beherbergt seit 1976 die Junge Gemeinde Stadtmitte. Unter Stadtjugendpfarrer Lothar König gewann due Offene Arbeit der JG zunehmend Bedeutung in der Auseinandersetzung mit der rechten Szene. Von Beginn an war die Einrichtung Angriffen der Neonazis ausgesetzt, sowohl auf das Gebäude selbst als auch auf Mitglieder der Offenen Arbeit, darunter Punker und Migranten. Am 8.7.1997 wurde Pfarrer König bei einem Überfall schwer verletzt. Die JG war immer wieder Ausgangspunkt von Demonstrationen des „Aktions-Bündnisses gegen Rechts“ gegen Neonazi-Aufmärsche, bevor sich ein breiter zivilgesellschaftlicher Konsens durchsetzte. Auf kommunaler Ebene wie auch bei der Polizei war das antifaschistische Engagement der JG umstritten bis hin zur Einflussnahme in Richtung Landeskirche. Für ihr konsequentes Handeln gegen Rechts erhielt die JG mehrfach renommierte Preise. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/junge-gemeinde-stadtmitte-jena/index.en.md b/content/schauplaetze/junge-gemeinde-stadtmitte-jena/index.en.md new file mode 100644 index 0000000..c205eb4 --- /dev/null +++ b/content/schauplaetze/junge-gemeinde-stadtmitte-jena/index.en.md @@ -0,0 +1,13 @@ +--- +title: "Junge Gemeinde Stadtmitte" +date: 1997-07-08 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.929368 +lng: 11.5850162 +address: "Johannisstraße 14, 07743 Jena" +datum: "8.7.1997" +quelle: "Wikipedia: Lothar König (Pfarrer)" +--- +Johannisstraße 14 has housed the Junge Gemeinde Stadtmitte since 1976. Under city youth pastor Lothar König, the JG's Offene Arbeit (open youth work) gained increasing significance in confronting the far-right scene. From the outset, the institution was exposed to attacks by neo-Nazis, targeting both the building itself and members of the Offene Arbeit, including punks and migrants. On 8 July 1997, Pastor König was seriously injured in an assault. The JG repeatedly served as the starting point for demonstrations by the "Aktions-Bündnis gegen Rechts" against neo-Nazi marches, before a broad civil-society consensus took hold. At the municipal level as well as with the police, the JG's anti-fascist engagement was controversial, extending even to attempts by the regional church to exert influence. For its consistent action against the far right, the JG received several renowned awards. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/kai-d-v-mann-des-bayerischen-verfassungsschutzes-muenchen/index.de.md b/content/schauplaetze/kai-d-v-mann-des-bayerischen-verfassungsschutzes-muenchen/index.de.md new file mode 100644 index 0000000..b04cc67 --- /dev/null +++ b/content/schauplaetze/kai-d-v-mann-des-bayerischen-verfassungsschutzes-muenchen/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Kai D. V-Mann des bayerischen Verfassungsschutzes" +date: 2014-11-19 +kategorien: ["Behörden"] +lat: 48.19235 +lng: 11.5712943 +address: "Knorrstraße 139, 80937 München" +datum: "19.11.2014" +quelle: "Mecklenburg, Jens: Handbuch deutscher Rechtsextremismus, Berlin 1996, S. 269 Protokoll 161. Verhandlungstag – 19. November 2014, veröffentlicht am 19.11.2014 auf www.nsu-watch.info, Internetseite: https://www.nsu-watch.info/2014/11/protokoll-161-verhandlungstag-19-november-2014/ [Aufruf 8.9.2021] Schlussbericht des bayerischen NSU-Untersuchungsausschusses vom 10.7.2013, Bayerischer Landtag, 16. Wahlperiode Drucksache 16/17740, S. 32 ff, S. 53 Internetseite: https://www.bayern.landtag.de/fileadmin/images/content/NEU_Drs_16-17740_NSU_FINAL_18072013.pdf [Aufruf 7.9.2021] https://www.der-rechte-rand.de/archive/4045/kai-dalek-nazi-spitzel/ [Aufruf 7.9.2021] https://www.nsu-nebenklage.de/blog/tag/kai-dalek/ [Aufruf 7.9.2021] Spezialitäten aus Mittelfranken – Ein Überblick über rechte und rechtsextreme Strukturen. antifaschistisches dokumentations- und informationsprojekt. Hg. argumente. netzwerk antirassistischer bildung e.V., Berlin 2003, S. 73, Internetseite: https://we.riseup.net/assets/333175/mittelfranken.pdf [Aufruf 7.9.2021]" +--- +Neonazi Kai Dalek, ehemaliger V-Mann des bayerischen Verfassungsschutzes, war in den 1990er Jahren ein sehr aktiver und führender Nazi-Kader. Er wohnte zeitweise in Oberfranken. Seine Handynummer und sein Name tauchten auf der so genannten Garagenliste von Uwe Mundlos als Kontaktperson im fränkischen Raum auf („Kai D.“). In den 1990er Jahren nahm er zeitweise an den Mittwochstreffen des „Thüringer Heimatschutzes“ (THS) teil. Dalek war unter anderem in der „Gesinnungsgemeinschaft der Neuen Front“ (GdNF) tätig. Diese galt als zeitweise koordinierende und führende Neonazistruktur. Der V-Mann war aktiv beim Aufbau des neonazistischen Thule-Netzwerkes und engagierte sich in den militanten Anti-Antifa-Strukturen der damaligen rechten Szene. Beteiligt war er auch an der Vorbereitung der Rudolf-Hess-Märsche. In den 1990er Jahren bis Anfang 2000 wurde gegen Dalek und andere Neonazis drei Mal wegen des Verdachts der Bildung einer kriminellen Vereinigung ermittelt. Diese Verfahren wurde wie diverse weitere Ermittlungsverfahren gegen Dalek eingestellt, in einem Fall im Hinblick auf seine V-Mann-Tätigkeit. Der zumindest zeitweise vom Staat finanzierte Neonazi und V-Mann des bayerischen Verfassungsschutzes agierte insgesamt eher wie ein verdeckter Ermittler. diff --git a/content/schauplaetze/kai-d-v-mann-des-bayerischen-verfassungsschutzes-muenchen/index.en.md b/content/schauplaetze/kai-d-v-mann-des-bayerischen-verfassungsschutzes-muenchen/index.en.md new file mode 100644 index 0000000..0ba4ce7 --- /dev/null +++ b/content/schauplaetze/kai-d-v-mann-des-bayerischen-verfassungsschutzes-muenchen/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Kai D., informant of the Bavarian domestic intelligence agency" +date: 2014-11-19 +kategorien: ["Behörden"] +lat: 48.19235 +lng: 11.5712943 +address: "Knorrstraße 139, 80937 München" +datum: "19.11.2014" +quelle: "Mecklenburg, Jens: Handbuch deutscher Rechtsextremismus, Berlin 1996, S. 269 Protokoll 161. Verhandlungstag – 19. November 2014, veröffentlicht am 19.11.2014 auf www.nsu-watch.info, Internetseite: https://www.nsu-watch.info/2014/11/protokoll-161-verhandlungstag-19-november-2014/ [Aufruf 8.9.2021] Schlussbericht des bayerischen NSU-Untersuchungsausschusses vom 10.7.2013, Bayerischer Landtag, 16. Wahlperiode Drucksache 16/17740, S. 32 ff, S. 53 Internetseite: https://www.bayern.landtag.de/fileadmin/images/content/NEU_Drs_16-17740_NSU_FINAL_18072013.pdf [Aufruf 7.9.2021] https://www.der-rechte-rand.de/archive/4045/kai-dalek-nazi-spitzel/ [Aufruf 7.9.2021] https://www.nsu-nebenklage.de/blog/tag/kai-dalek/ [Aufruf 7.9.2021] Spezialitäten aus Mittelfranken – Ein Überblick über rechte und rechtsextreme Strukturen. antifaschistisches dokumentations- und informationsprojekt. Hg. argumente. netzwerk antirassistischer bildung e.V., Berlin 2003, S. 73, Internetseite: https://we.riseup.net/assets/333175/mittelfranken.pdf [Aufruf 7.9.2021]" +--- +Neo-Nazi Kai Dalek, a former informant of the Bavarian domestic intelligence agency, was a highly active and leading Nazi cadre in the 1990s. He lived for a time in Upper Franconia. His mobile number and name appeared on Uwe Mundlos's so-called garage list as a contact person in the Franconian region ("Kai D."). In the 1990s, he occasionally took part in the Wednesday meetings of the "Thüringer Heimatschutz" (THS). Among other activities, Dalek was involved in the "Gesinnungsgemeinschaft der Neuen Front" (GdNF), which was at times regarded as a coordinating and leading neo-Nazi structure. The informant was active in building up the neo-Nazi Thule network and was engaged in the militant Anti-Antifa structures of the far-right scene at the time. He was also involved in preparing the Rudolf Hess marches. Between the 1990s and the early 2000s, Dalek and other neo-Nazis were investigated three times on suspicion of forming a criminal organization. These proceedings, like various other investigations against Dalek, were discontinued — in one case with reference to his work as an informant. The neo-Nazi and informant of the Bavarian domestic intelligence agency, at least at times financed by the state, overall acted more like an undercover investigator. diff --git a/content/schauplaetze/kampfgeist-nr-1-jena/cover.jpg b/content/schauplaetze/kampfgeist-nr-1-jena/cover.jpg new file mode 100644 index 0000000..3792f52 --- /dev/null +++ b/content/schauplaetze/kampfgeist-nr-1-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45ae1c31ed3dc016306e9e83be4fb3a4a700cafb4dbc64a7d8ed7bbb63ff7f0e +size 352671 diff --git a/content/schauplaetze/kampfgeist-nr-1-jena/index.de.md b/content/schauplaetze/kampfgeist-nr-1-jena/index.de.md new file mode 100644 index 0000000..b36cc7a --- /dev/null +++ b/content/schauplaetze/kampfgeist-nr-1-jena/index.de.md @@ -0,0 +1,12 @@ +--- +title: "„Kampfgeist“ Nr. 1" +subtitle: "Thomas Dienel" +date: 2021-04-01 +kategorien: ["Fanzines"] +lat: 50.9282049 +lng: 11.5880582 +address: "Markt, 07743 Jena" +--- +Unter dem Titel „Kampfgeist“ erschien Anfang 1992 im A5-Format die erste Nummer eines neuen Jenaer Fanzines. Auf 24 Seiten gab es neben aktuellen Fotos einen Rückblick auf die Entstehung der Jenaer und Kahlaer Szene ab 1987 sowie Berichte über diverse auswärtige Konzert-Besuche. Die Redaktion dankte namentlich für die technische Unterstützung bei der Produktion des Heftes durch Thomas Dienel/Weimar (NPD, Gründer der Deutschen Nationalen Partei, nach Haftstrafen V-Mann des Landesamtes für Verfassungsschutz Thüringen). + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/kampfgeist-nr-1-jena/index.en.md b/content/schauplaetze/kampfgeist-nr-1-jena/index.en.md new file mode 100644 index 0000000..47d6029 --- /dev/null +++ b/content/schauplaetze/kampfgeist-nr-1-jena/index.en.md @@ -0,0 +1,12 @@ +--- +title: "\"Kampfgeist\" No. 1" +subtitle: "Thomas Dienel" +date: 2021-04-01 +kategorien: ["Fanzines"] +lat: 50.9282049 +lng: 11.5880582 +address: "Markt, 07743 Jena" +--- +Under the title „Kampfgeist“, the first issue of a new Jena fanzine appeared in early 1992 in A5 format. Across 24 pages, alongside current photos, it featured a retrospective on the development of the Jena and Kahla scene from 1987 onward, as well as reports on various concert trips to other towns. The editorial team thanked, by name, Thomas Dienel/Weimar (NPD, founder of the Deutsche Nationale Partei, and after serving prison sentences an informant for the Thuringian Office for the Protection of the Constitution) for technical support in producing the magazine. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/landespolizeiinspektion-jena/cover.jpg b/content/schauplaetze/landespolizeiinspektion-jena/cover.jpg new file mode 100644 index 0000000..27b1278 --- /dev/null +++ b/content/schauplaetze/landespolizeiinspektion-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d933950173d56ce0b8f30b54b00a25d2c5bfb98dc7318419fde7f7907983487c +size 223073 diff --git a/content/schauplaetze/landespolizeiinspektion-jena/index.de.md b/content/schauplaetze/landespolizeiinspektion-jena/index.de.md new file mode 100644 index 0000000..d36d4c9 --- /dev/null +++ b/content/schauplaetze/landespolizeiinspektion-jena/index.de.md @@ -0,0 +1,14 @@ +--- +title: "Landespolizeiinspektion" +subtitle: "Uwe Böhnhardt, Uwe Mundlos" +date: 1997-01-04 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9324774 +lng: 11.592049 +address: "Am Anger 30, 07743 Jena" +datum: "4.1.1997" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 49; Thüringer Landtag, 5. Wahlperiode Zwischenbericht des Untersuchungsausschusses 5/1, Drucksache 5/5810, 7.3.2013, S. 183" +--- +Am 4.1.1997 betraten Böhnhardt und Mundlos an der Wache vorbei das Gelände der Polizeidirektion Jena in der Käthe-Kollwitz-Straße 1 in der Absicht, die Kennzeichen von Polizeifahrzeugen zu notieren. Bei der Festnahme leistet Mundlos Widerstand. Vor der PD warten in einem Auto Andre K. und Robert H. Bei der Durchsuchung des Fahrzeugs stellte die Polizei eine Schreckschusswaffe und ein Gotcha-Gewehr sicher, ein Ermittlungsverfahren wegen Hausfriedensbruchs gemäß § 123 StGB wurde eingeleitet. Vier Tage später überbrachte Böhnhardt  der Stadtverwaltung Jena die Anmeldung für eine Versammlung unter dem Motto „Für eine schärfere Kontrolle der Polizei“. Als Veranstalter und verantwortlicher Leiter war Mundlos angegeben. Die Stadt Jena erließ ein Versammlungsverbot. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/landespolizeiinspektion-jena/index.en.md b/content/schauplaetze/landespolizeiinspektion-jena/index.en.md new file mode 100644 index 0000000..c363cfd --- /dev/null +++ b/content/schauplaetze/landespolizeiinspektion-jena/index.en.md @@ -0,0 +1,14 @@ +--- +title: "Regional Police Inspectorate" +subtitle: "Uwe Böhnhardt, Uwe Mundlos" +date: 1997-01-04 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9324774 +lng: 11.592049 +address: "Am Anger 30, 07743 Jena" +datum: "4.1.1997" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 49; Thüringer Landtag, 5. Wahlperiode Zwischenbericht des Untersuchungsausschusses 5/1, Drucksache 5/5810, 7.3.2013, S. 183" +--- +On 4 January 1997, Böhnhardt and Mundlos walked past the guardhouse onto the grounds of the Jena police headquarters at Käthe-Kollwitz-Straße 1, intending to note down the license plates of police vehicles. Mundlos resisted arrest. Andre K. and Robert H. waited in a car in front of the police headquarters. During a search of the vehicle, police seized a blank-firing pistol and a "Gotcha" rifle, and an investigation for trespassing under Section 123 of the Criminal Code was opened. Four days later, Böhnhardt submitted a registration to the Jena city administration for a rally under the motto "For stricter oversight of the police." Mundlos was listed as the organizer and person responsible. The city of Jena issued a ban on the assembly. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/mordanschlag-auf-abdurrahim-oezuedo-ru-nuernberg/cover.jpeg b/content/schauplaetze/mordanschlag-auf-abdurrahim-oezuedo-ru-nuernberg/cover.jpeg new file mode 100644 index 0000000..efa8b36 --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-abdurrahim-oezuedo-ru-nuernberg/cover.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3af4aec93a0f88fe8de81bc4fea5646bdd62cdbb8dfa629d3258cdc3130e0a9b +size 148500 diff --git a/content/schauplaetze/mordanschlag-auf-abdurrahim-oezuedo-ru-nuernberg/index.de.md b/content/schauplaetze/mordanschlag-auf-abdurrahim-oezuedo-ru-nuernberg/index.de.md new file mode 100644 index 0000000..1504da9 --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-abdurrahim-oezuedo-ru-nuernberg/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Mordanschlag auf Abdurrahim Özüdoğru" +date: 2001-06-13 +kategorien: ["Mordanschläge"] +lat: 49.4345312 +lng: 11.0825061 +address: "90459 Nürnberg" +datum: "13.06.2001" +quelle: "Quelle: Mair, Birgit: Die Opfer des NSU und die Aufarbeitung der Verbrechen (5. aktualisierte und erweiterte Auflage 2021) Nürnberg, S. 15." +--- +Abdurrahim Özüdoğru war 1972 nach Deutschland gezogen, um an der Universität Erlangen-Nürnberg Maschinenbau zu studieren. Am 13. Juni 2001 begann der 49-Jährige seine Schicht als Maschinenführer bei der Firma Diehl um 5.45 Uhr. Nach der Arbeit fuhr er mit einem Kollegen nach Hause. Dann ging er in seine Schneiderei in der Siemensstraße / Ecke Gyulaer Straße in der Nürnberger Südstadt. Dort wurde er mit zwei Schüssen in den Kopf ermordet. Abdurrahim Özüdoğru wurde mit derselben Waffe ermordet wie Enver Şimşek. Jahrelang wurde ausschließlich und erfolglos in Richtung „Organisierte Kriminalität“ ermittelt, was die Familie schwer belastete. Die Tochter des Mordopfers war zum Zeitpunkt des Mordes noch eine Teenagerin. Aufkleber der neonazistischen, 2004 verbotenen „Fränkischen Aktionsfront“, die jahrelang an den Fallrohren des Tatorts klebten, wurden ignoriert. diff --git a/content/schauplaetze/mordanschlag-auf-abdurrahim-oezuedo-ru-nuernberg/index.en.md b/content/schauplaetze/mordanschlag-auf-abdurrahim-oezuedo-ru-nuernberg/index.en.md new file mode 100644 index 0000000..ae17eda --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-abdurrahim-oezuedo-ru-nuernberg/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Murder of Abdurrahim Özüdoğru" +date: 2001-06-13 +kategorien: ["Mordanschläge"] +lat: 49.4345312 +lng: 11.0825061 +address: "90459 Nürnberg" +datum: "13.06.2001" +quelle: "Quelle: Mair, Birgit: Die Opfer des NSU und die Aufarbeitung der Verbrechen (5. aktualisierte und erweiterte Auflage 2021) Nürnberg, S. 15." +--- +Abdurrahim Özüdoğru had moved to Germany in 1972 to study mechanical engineering at the University of Erlangen-Nürnberg. On 13 June 2001, the 49-year-old began his shift as a machine operator at the Diehl company at 5:45 a.m. After work, he drove home with a colleague. He then went to his tailor shop at the corner of Siemensstraße and Gyulaer Straße in the Südstadt district of Nuremberg. There he was murdered with two shots to the head. Abdurrahim Özüdoğru was killed with the same weapon as Enver Şimşek. For years, investigators pursued exclusively and unsuccessfully the theory of "organized crime," which placed a heavy burden on the family. The murder victim's daughter was still a teenager at the time of the murder. Stickers from the neo-Nazi "Fränkische Aktionsfront," banned in 2004, which for years remained stuck to the downpipes at the crime scene, were ignored. diff --git a/content/schauplaetze/mordanschlag-auf-enver-im-ek-nuernberg/cover.jpeg b/content/schauplaetze/mordanschlag-auf-enver-im-ek-nuernberg/cover.jpeg new file mode 100644 index 0000000..2d1d18d --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-enver-im-ek-nuernberg/cover.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99cdc725707c75322c2d86a1b97e949107c4e847274da9165171d05fccd1fe2f +size 198509 diff --git a/content/schauplaetze/mordanschlag-auf-enver-im-ek-nuernberg/index.de.md b/content/schauplaetze/mordanschlag-auf-enver-im-ek-nuernberg/index.de.md new file mode 100644 index 0000000..7b5af9f --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-enver-im-ek-nuernberg/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Mordanschlag auf Enver Şimşek" +date: 2000-09-09 +kategorien: ["Mordanschläge"] +lat: 49.3982626 +lng: 11.1460101 +address: "Liegnitzer Straße, Nürnberg" +datum: "9.9.2000" +quelle: "Mair, Birgit: Die Opfer des NSU und die Aufarbeitung der Verbrechen (5. aktualisierte und erweiterte Auflage 2021) Nürnberg, S. 12." +--- +Am 9. September 2000 vertrat der hessische Blumengroßhändler Enver Şimşek in der Liegnitzer Straße in Nürnberg einen Mitarbeiter, der im Urlaub war und der normalerweise den Stand betreute. Am Nachmittag fand die Polizei den schwer verletzten Blumenhändler in seinem Lieferwagen. In seinem Körper steckten acht Kugeln. Der 38-Jährige, der seit seinem 24. Lebensjahr in Hessen gelebt hatte, starb zwei Tage später im nahegelegenen Klinikum Süd. Er hinterließ eine vierzehnjährige Tochter und einen dreizehnjährigen Sohn. Beide Kinder wurden in Deutschland geboren. Dass der Blumenstand sich auf dem ehemaligen NSDAP-Reichsparteitagsgelände in unmittelbarer Nähe des ehemaligen SS-Lagers befand, spielte bei den polizeilichen Vermittlungen keine Rolle. Stattdessen wurde die Ehefrau des Mordopfers verdächtigt, den Mord in Auftrag gegeben zu haben. Anschließend wurde jahrelang erfolglos in Richtung „Organisierte Kriminalität“ ermittelt, was die Familie schwer belastete. diff --git a/content/schauplaetze/mordanschlag-auf-enver-im-ek-nuernberg/index.en.md b/content/schauplaetze/mordanschlag-auf-enver-im-ek-nuernberg/index.en.md new file mode 100644 index 0000000..a31269a --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-enver-im-ek-nuernberg/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Murder of Enver Şimşek" +date: 2000-09-09 +kategorien: ["Mordanschläge"] +lat: 49.3982626 +lng: 11.1460101 +address: "Liegnitzer Straße, Nürnberg" +datum: "9.9.2000" +quelle: "Mair, Birgit: Die Opfer des NSU und die Aufarbeitung der Verbrechen (5. aktualisierte und erweiterte Auflage 2021) Nürnberg, S. 12." +--- +On 9 September 2000, the Hessian flower wholesaler Enver Şimşek was covering for a colleague who was on vacation and who normally ran the stand on Liegnitzer Straße in Nuremberg. In the afternoon, police found the severely injured flower vendor in his delivery van. Eight bullets were lodged in his body. The 38-year-old, who had lived in Hesse since he was 24, died two days later at the nearby Klinikum Süd. He left behind a fourteen-year-old daughter and a thirteen-year-old son. Both children had been born in Germany. The fact that the flower stand was located on the former NSDAP Reich Party Rally Grounds, in the immediate vicinity of a former SS camp, played no role in the police investigation. Instead, the murder victim's wife was suspected of having ordered the murder. Investigators subsequently pursued, for years and without success, the theory of "organized crime," which placed a heavy burden on the family. diff --git a/content/schauplaetze/mordanschlag-auf-habil-k-l-muenchen/index.de.md b/content/schauplaetze/mordanschlag-auf-habil-k-l-muenchen/index.de.md new file mode 100644 index 0000000..514f3ca --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-habil-k-l-muenchen/index.de.md @@ -0,0 +1,12 @@ +--- +title: "Mordanschlag auf Habil Kılıç" +subtitle: "Habil Kılıç" +date: 2001-09-29 +kategorien: ["Mordanschläge"] +lat: 48.1204 +lng: 11.61588 +address: "Bad-Schachener-Straße 14, 81671 München" +datum: "29.09.2001" +quelle: "Mair, Brigit (2021): Habil Kılıç. In: Zimmermann/ Klaus (Hg.): Vom Lernen und Verlernen – Methodenhandbuch zur rassismuskritischen Aufarbeitung des NSU" +--- +Im März 2000 eröffnete das Ehepaar Kılıç einen kleinen Frischwarenladen mit Obst, Gemüse und türkischen Spezialitäten. Am 29. August 2001 kümmerte sich Habil Kılıç allein um den Laden. Seine Frau und die Tochter machten zu dieser Zeit Urlaub in der Tür­kei. Um 10.35 Uhr telefonierte er noch mit einem Kollegen in der Groß­markthalle. Zehn Minuten später wurde er von einer Kundin, die für ihre Kinder Süßigkeiten kaufen wollte, schwer verletzt aufgefunden. Diese informierte sofort den Notarzt. Als die Sanitäter eintrafen, lebte er noch. Kurze Zeit später starb der 38-jährige Familienvater an den Schuss­wunden in seinem Kopf. Mehr als zehn Jahre lang lebte die Familie in Ungewissheit über die Hintergründe des Mordes. Erst im November 2011 wurde bekannt, dass Neonazis der Terrorgruppe „Nationalso­zialistischer Untergrund“ (NSU) den Familienvater ermordet hatten. diff --git a/content/schauplaetze/mordanschlag-auf-habil-k-l-muenchen/index.en.md b/content/schauplaetze/mordanschlag-auf-habil-k-l-muenchen/index.en.md new file mode 100644 index 0000000..33b58cc --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-habil-k-l-muenchen/index.en.md @@ -0,0 +1,12 @@ +--- +title: "Murder of Habil Kılıç" +subtitle: "Habil Kılıç" +date: 2001-09-29 +kategorien: ["Mordanschläge"] +lat: 48.1204 +lng: 11.61588 +address: "Bad-Schachener-Straße 14, 81671 München" +datum: "29.09.2001" +quelle: "Mair, Brigit (2021): Habil Kılıç. In: Zimmermann/ Klaus (Hg.): Vom Lernen und Verlernen – Methodenhandbuch zur rassismuskritischen Aufarbeitung des NSU" +--- +In March 2000, the Kılıç couple opened a small fresh-produce shop selling fruit, vegetables, and Turkish specialties. On 29 August 2001, Habil Kılıç was tending the shop alone. His wife and daughter were on vacation in Turkey at the time. At 10:35 a.m. he was still on the phone with a colleague at the wholesale market hall. Ten minutes later he was found severely injured by a customer who had wanted to buy sweets for her children. She immediately called the emergency doctor. When the paramedics arrived, he was still alive. A short time later, the 38-year-old father died from the gunshot wounds to his head. For more than ten years, the family lived in uncertainty about the background of the murder. It was not until November 2011 that it became known that neo-Nazis from the terrorist group "Nationalsozialistischer Untergrund" (NSU) had murdered the father. diff --git a/content/schauplaetze/mordanschlag-auf-halit-yozgat-kassel/index.de.md b/content/schauplaetze/mordanschlag-auf-halit-yozgat-kassel/index.de.md new file mode 100644 index 0000000..4168318 --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-halit-yozgat-kassel/index.de.md @@ -0,0 +1,12 @@ +--- +title: "Mordanschlag auf Halit Yozgat" +subtitle: "Halit Yozgat" +date: 2006-04-06 +kategorien: ["Mordanschläge"] +lat: 51.3276956 +lng: 9.500002 +address: "Holländische Straße 82, 34127 Kassel" +datum: "06.04.2006" +quelle: "Mair, Brigit (2021): Halit Yozgat. In: Zimmermann/ Klaus (Hg.): Vom Lernen und Verlernen – Methodenhandbuch zur rassismuskritischen Aufarbeitung des NSU" +--- +Im Jahr 2004 eröffnete Halit Yozgat mit Hilfe seines Vaters in der Holländischen Straße 82 ein „Tele-Internet-Café“ mit mehreren Com­putern und Telefonzellen. Am 6. April 2006, kurz vor 17 Uhr, wartete der junge Mann auf sei­nen Vater, der ihn wie üblich um diese Zeit ablösen sollte. Halit wollte pünktlich in der Abendschule sein. Das Internetcafé war gut besucht: Im Hinterzimmer saßen mehrere Menschen an den Computern, im vorderen Raum waren zwei Telefonzellen besetzt. Wie sich später herausstellte, hielt sich [bis mindestes] kurz vor dem Mord an Halit Yozgat ein Mitarbeiter des Landesamtes für Verfassungsschutz Hes­sen in dem Internetcafé auf. Im selben Raum befand sich auch der Verkaufstresen, hinter dem sich Halit aufhielt. Als sein Vater kurz nach fünf im Internetcafé ankam, fand er seinen Sohn sterbend vor. Der 21-Jährige starb wenig spä­ter am Tatort. diff --git a/content/schauplaetze/mordanschlag-auf-halit-yozgat-kassel/index.en.md b/content/schauplaetze/mordanschlag-auf-halit-yozgat-kassel/index.en.md new file mode 100644 index 0000000..8d859e4 --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-halit-yozgat-kassel/index.en.md @@ -0,0 +1,12 @@ +--- +title: "Murder of Halit Yozgat" +subtitle: "Halit Yozgat" +date: 2006-04-06 +kategorien: ["Mordanschläge"] +lat: 51.3276956 +lng: 9.500002 +address: "Holländische Straße 82, 34127 Kassel" +datum: "06.04.2006" +quelle: "Mair, Brigit (2021): Halit Yozgat. In: Zimmermann/ Klaus (Hg.): Vom Lernen und Verlernen – Methodenhandbuch zur rassismuskritischen Aufarbeitung des NSU" +--- +In 2004, Halit Yozgat, with his father's help, opened a "tele-internet café" with several computers and telephone booths at Holländische Straße 82. On 6 April 2006, shortly before 5 p.m., the young man was waiting for his father, who was due to relieve him at that time as usual. Halit wanted to be at evening school on time. The internet café was busy: in the back room several people sat at the computers, and in the front room two telephone booths were occupied. As later emerged, an employee of the Hesse State Office for the Protection of the Constitution was present in the internet café until at least shortly before the murder of Halit Yozgat. The sales counter, behind which Halit stood, was in the same room. When his father arrived at the internet café shortly after five, he found his son dying. The 21-year-old died a short time later at the scene. diff --git a/content/schauplaetze/mordanschlag-auf-i-smail-ya-ar-nuernberg/cover.jpeg b/content/schauplaetze/mordanschlag-auf-i-smail-ya-ar-nuernberg/cover.jpeg new file mode 100644 index 0000000..6ef934b --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-i-smail-ya-ar-nuernberg/cover.jpeg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afcc14a544115640b7bb8dd9458a2e367cadfd38b106e1600fc4d55bfda92534 +size 304139 diff --git a/content/schauplaetze/mordanschlag-auf-i-smail-ya-ar-nuernberg/index.de.md b/content/schauplaetze/mordanschlag-auf-i-smail-ya-ar-nuernberg/index.de.md new file mode 100644 index 0000000..073e8c2 --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-i-smail-ya-ar-nuernberg/index.de.md @@ -0,0 +1,10 @@ +--- +title: "Mordanschlag auf İsmail Yaşar" +date: 2021-04-01 +kategorien: ["Mordanschläge"] +lat: 49.4430239 +lng: 11.104766 +address: "Scharrerstraße, Nürnberg" +quelle: "Mair, Birgit: Die Opfer des NSU und die Aufarbeitung der Verbrechen (5. aktualisierte und erweiterte Auflage 2021) Nürnberg, S. 28 ff. sowie S. 65" +--- +Am Morgen des 9. Juni 2005 öffnete İsmail Yaşar wie gewöhnlich seine Imbissbude in der Nürnberger Scharrerstraße / Ecke Vehlburger Straße gegenüber der Scharrerschule. Um 10.15 Uhr wurde er in seinem Imbiss tot aufgefunden. Er hatte Schussverletzungen an Kopf und Oberkörper. Der 50-Jährige, der seit seinem 23. Lebensjahr in Deutschland gelebt hatte, hinterließ drei Kinder. Er war das sechste Mordopfer der damals in vielen Medien abwertend so genannten „Dönermord“-Serie. Erst 2017 wurde öffentlich bekannt, dass der Imbissstand von İsmail Yaşar einige Monate vor dem Mord durch den Neonazi Jürgen F. attackiert worden war. Herr Yaşar hatte den Mann angezeigt, weil dieser eine zum Imbissstand gehörende Dekofigur zerstört hatte. Der Neonazi wurde daraufhin verurteilt. Wie sich später herausstellte, hatte der Mann Kontakt zum NSU-Umfeld. Wie bei anderen NSU-Morden wurden Hinweise auf Neonazis auch in diesem Fall konsequent ignoriert. diff --git a/content/schauplaetze/mordanschlag-auf-i-smail-ya-ar-nuernberg/index.en.md b/content/schauplaetze/mordanschlag-auf-i-smail-ya-ar-nuernberg/index.en.md new file mode 100644 index 0000000..b4c0527 --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-i-smail-ya-ar-nuernberg/index.en.md @@ -0,0 +1,10 @@ +--- +title: "Murder of İsmail Yaşar" +date: 2021-04-01 +kategorien: ["Mordanschläge"] +lat: 49.4430239 +lng: 11.104766 +address: "Scharrerstraße, Nürnberg" +quelle: "Mair, Birgit: Die Opfer des NSU und die Aufarbeitung der Verbrechen (5. aktualisierte und erweiterte Auflage 2021) Nürnberg, S. 28 ff. sowie S. 65" +--- +On the morning of 9 June 2005, İsmail Yaşar opened his snack stand on Scharrerstraße in Nuremberg, at the corner of Vehlburger Straße opposite the Scharrerschule, as usual. At 10:15 a.m. he was found dead in his stand. He had gunshot wounds to the head and upper body. The 50-year-old, who had lived in Germany since he was 23, left behind three children. He was the sixth murder victim in the series that many media outlets at the time disparagingly called the "Döner murders." Only in 2017 did it become publicly known that İsmail Yaşar's snack stand had been attacked by the neo-Nazi Jürgen F. a few months before the murder. Mr. Yaşar had reported the man to the police because he had destroyed a decorative figure belonging to the stand. The neo-Nazi was subsequently convicted. As later emerged, the man had contact with the NSU network. As in other NSU murders, indications pointing to neo-Nazis were consistently ignored in this case as well. diff --git a/content/schauplaetze/mordanschlag-auf-mehmet-kuba-k-dortmund/index.de.md b/content/schauplaetze/mordanschlag-auf-mehmet-kuba-k-dortmund/index.de.md new file mode 100644 index 0000000..5158ed9 --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-mehmet-kuba-k-dortmund/index.de.md @@ -0,0 +1,12 @@ +--- +title: "Mordanschlag auf Mehmet Kubaşık" +subtitle: "Mehmet Kubaşık" +date: 2006-04-04 +kategorien: ["Mordanschläge"] +lat: 51.5239401 +lng: 7.4557302 +address: "Mallinckrodtstraße 190, 44147 Dortmund" +datum: "04.04.2006" +quelle: "Mair, Brigit (2021): Mehmet Kubaşık. In: Zimmermann/ Klaus (Hg.): Vom Lernen und Verlernen – Methodenhandbuch zur rassismuskritischen Aufarbeitung des NSU" +--- +Im Juni 2004 kaufte Mehmet Kubaşık in Dortmund einen Kiosk und machte sich selbstständig. Im Ruhrgebiet sind „Trinkhallen“, wie Mehmet Kubaşık eine betrieb, weit verbreitet und beliebt. Dort gibt es bis spät in die Nacht Zeitschriften, Süßigkeiten, Getränke und Zigaretten zu kaufen. Der Laden an der vierspurig befahrenen Mallinckrodtstraße 190 hatte von morgens um sieben bis nachts um eins geöffnet. Die ganze Familie half mit. Am Morgen des 4. April 2006 frühstückte Mehmet Kubaşık mit seiner Frau. Weil sie Besuch von ihrer Schwester aus London hatte, übernahm ihr Mann die Mittagsschicht. Tochter Gamze brachte den kleinen Bruder in den Kindergarten, ging zur Schule und wollte ihren Vater am Nachmittag ablösen. Als sie zurückkam, war dieser tot. Gamze war damals zwanzig Jahre alt, ihre Brüder sechs und zwölf. Der dreifache Familienvater wurde nur 39 Jahre alt. Nach dem Mord wurde die Familie sozial ausgegrenzt. diff --git a/content/schauplaetze/mordanschlag-auf-mehmet-kuba-k-dortmund/index.en.md b/content/schauplaetze/mordanschlag-auf-mehmet-kuba-k-dortmund/index.en.md new file mode 100644 index 0000000..faa55cc --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-mehmet-kuba-k-dortmund/index.en.md @@ -0,0 +1,12 @@ +--- +title: "Murder of Mehmet Kubaşık" +subtitle: "Mehmet Kubaşık" +date: 2006-04-04 +kategorien: ["Mordanschläge"] +lat: 51.5239401 +lng: 7.4557302 +address: "Mallinckrodtstraße 190, 44147 Dortmund" +datum: "04.04.2006" +quelle: "Mair, Brigit (2021): Mehmet Kubaşık. In: Zimmermann/ Klaus (Hg.): Vom Lernen und Verlernen – Methodenhandbuch zur rassismuskritischen Aufarbeitung des NSU" +--- +In June 2004, Mehmet Kubaşık bought a kiosk in Dortmund and became self-employed. In the Ruhr region, "Trinkhallen" (drink stalls), like the one Mehmet Kubaşık ran, are widespread and popular. They sell magazines, sweets, drinks and cigarettes until late at night. The shop on the four-lane Mallinckrodtstraße 190 was open from seven in the morning until one at night. The whole family helped out. On the morning of 4 April 2006, Mehmet Kubaşık had breakfast with his wife. Because she had a visit from her sister from London, her husband took over the midday shift. Their daughter Gamze took her little brother to kindergarten, went to school, and planned to relieve her father in the afternoon. When she came back, he was dead. Gamze was twenty years old at the time; her brothers were six and twelve. The father of three was only 39 years old. After the murder, the family was socially ostracized. diff --git a/content/schauplaetze/mordanschlag-auf-mehmet-turgut-rostock/index.de.md b/content/schauplaetze/mordanschlag-auf-mehmet-turgut-rostock/index.de.md new file mode 100644 index 0000000..33608c6 --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-mehmet-turgut-rostock/index.de.md @@ -0,0 +1,12 @@ +--- +title: "Mordanschlag auf Mehmet Turgut" +subtitle: "Mehmet Turgut" +date: 2004-02-25 +kategorien: ["Mordanschläge"] +lat: 54.1104949 +lng: 12.1544098 +address: "Neudierkower Weg 2, 18146 Rostock" +datum: "25.02.2004" +quelle: "Mair, Brigit (2021): Mehmet Turgut. In: Zimmermann/ Klaus (Hg.): Vom Lernen und Verlernen – Methodenhandbuch zur rassismuskritischen Aufarbeitung des NSU" +--- +Am 25. Februar 2004 sperrte Mehmet Turgut gegen zehn Uhr vormittags den Imbissstand „Mr. Kebab Grill“ seines Bekannten in Rostock-Toitenwinkel auf, wo er seit kurzer Zeit arbeitete. Er hatte bereits den Kaffee aufgebrüht. Kurze Zeit später fand ihn sein Chef auf dem Boden des Standes. Er wurde durch mehrere Schüsse schwer verletzt und starb wenig später im Rettungswagen. Dass Neonazis des NSU den jungen Mann erschossen hatten, wurde erst sieben Jahre später öffentlich bekannt. diff --git a/content/schauplaetze/mordanschlag-auf-mehmet-turgut-rostock/index.en.md b/content/schauplaetze/mordanschlag-auf-mehmet-turgut-rostock/index.en.md new file mode 100644 index 0000000..5a1bf2f --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-mehmet-turgut-rostock/index.en.md @@ -0,0 +1,12 @@ +--- +title: "Murder of Mehmet Turgut" +subtitle: "Mehmet Turgut" +date: 2004-02-25 +kategorien: ["Mordanschläge"] +lat: 54.1104949 +lng: 12.1544098 +address: "Neudierkower Weg 2, 18146 Rostock" +datum: "25.02.2004" +quelle: "Mair, Brigit (2021): Mehmet Turgut. In: Zimmermann/ Klaus (Hg.): Vom Lernen und Verlernen – Methodenhandbuch zur rassismuskritischen Aufarbeitung des NSU" +--- +On 25 February 2004, at around ten in the morning, Mehmet Turgut unlocked the "Mr. Kebab Grill" snack stand belonging to an acquaintance in Rostock-Toitenwinkel, where he had been working for a short time. He had already brewed the coffee. A short time later his boss found him on the floor of the stand. He had been severely injured by several gunshots and died a short time later in the ambulance. That neo-Nazis from the NSU had shot the young man only became publicly known seven years later. diff --git a/content/schauplaetze/mordanschlag-auf-mich-le-kiesewetter-heilbronn/index.de.md b/content/schauplaetze/mordanschlag-auf-mich-le-kiesewetter-heilbronn/index.de.md new file mode 100644 index 0000000..3ae9ee0 --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-mich-le-kiesewetter-heilbronn/index.de.md @@ -0,0 +1,12 @@ +--- +title: "Mordanschlag auf Michèle Kiesewetter" +subtitle: "Michèle Kiesewetter" +date: 2007-04-25 +kategorien: ["Mordanschläge"] +lat: 49.13838 +lng: 9.20352 +address: "Karlsruher Straße 24, 74072 Heilbronn" +datum: "25.04.2007" +quelle: "Mair, Brigit (2021): Michèle Kiesewetter . In: Zimmermann/ Klaus (Hg.): Vom Lernen und Verlernen – Methodenhandbuch zur rassismuskritischen Aufarbeitung des NSU" +--- +Am 25. April 2007 begann der Arbeitstag für Michèle Kiesewetter und ihren Kollegen bereits früh am Morgen. Die beiden gingen Streife in Heilbronn. Nach zwei Stunden machten sie auf der dortigen Theresienwiese Rast. Nach einer Einsatzbesprechung im Polizeirevier pausierten sie erneut auf einem Parkplatz auf der Theresienwiese. Sie blieben im Auto sitzen, die Fenster geöffnet. Sie aßen Brötchen und rauchten. Gegen 14 Uhr setzte ein beunruhigter Passant einen Notruf ab. Als der Notarzt eintraf, war die junge Polizistin tot, ihr Kollege lebte noch. Den beiden war von hinten in den Kopf geschossen worden. Mit Gewalt waren ihnen die Polizeiwaffen vom Körper gerissen, der Polizeibeamtin zusätzlich die Handschellen und andere Ausrüstungsgegenstände entwendet worden. Der 24-jährige Kollege, der schwer verletzt überlebte, lag mehrere Wochen im Koma. Durch den Kopfschuss und die lebensbedrohlichen Folgen wird er für den Rest seines Lebens physisch und psychisch leiden. Anstatt nach Neonazis zu fahnden, wurden Sinti und Roma als Täter:innen verdächtigt und öffentlich an den Pranger gestellt. diff --git a/content/schauplaetze/mordanschlag-auf-mich-le-kiesewetter-heilbronn/index.en.md b/content/schauplaetze/mordanschlag-auf-mich-le-kiesewetter-heilbronn/index.en.md new file mode 100644 index 0000000..6339cfa --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-mich-le-kiesewetter-heilbronn/index.en.md @@ -0,0 +1,12 @@ +--- +title: "Murder of Michèle Kiesewetter" +subtitle: "Michèle Kiesewetter" +date: 2007-04-25 +kategorien: ["Mordanschläge"] +lat: 49.13838 +lng: 9.20352 +address: "Karlsruher Straße 24, 74072 Heilbronn" +datum: "25.04.2007" +quelle: "Mair, Brigit (2021): Michèle Kiesewetter . In: Zimmermann/ Klaus (Hg.): Vom Lernen und Verlernen – Methodenhandbuch zur rassismuskritischen Aufarbeitung des NSU" +--- +On 25 April 2007, the working day began early in the morning for Michèle Kiesewetter and her colleague. The two were on patrol in Heilbronn. After two hours they took a break at the Theresienwiese there. After a briefing at the police station, they took another break in a parking lot on the Theresienwiese. They stayed sitting in the car with the windows open. They ate bread rolls and smoked. At around 2 p.m., a concerned passer-by called emergency services. When the emergency doctor arrived, the young police officer was dead; her colleague was still alive. Both had been shot in the back of the head. Their service weapons had been forcibly torn from their bodies, and the police officer had also had her handcuffs and other equipment stolen. The 24-year-old colleague, who survived severely injured, lay in a coma for several weeks. Because of the gunshot wound to the head and its life-threatening consequences, he will suffer physically and psychologically for the rest of his life. Instead of investigating neo-Nazis, Sinti and Roma were suspected as the perpetrators and publicly pilloried. diff --git a/content/schauplaetze/mordanschlag-auf-sueleyman-ta-koeprue-hamburg/index.de.md b/content/schauplaetze/mordanschlag-auf-sueleyman-ta-koeprue-hamburg/index.de.md new file mode 100644 index 0000000..ff2b547 --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-sueleyman-ta-koeprue-hamburg/index.de.md @@ -0,0 +1,12 @@ +--- +title: "Mordanschlag auf Süleyman Taşköprü" +subtitle: "Süleyman Taşköprü" +date: 2001-06-27 +kategorien: ["Mordanschläge"] +lat: 53.5624768 +lng: 9.9286881 +address: "Schützenstraße 39, 22761 Hamburg" +datum: "27.06.2001" +quelle: "Mair, Brigit (2021): Süleyman Taşköprü. In: Zimmermann/ Klaus (Hg.): Vom Lernen und Verlernen – Methodenhandbuch zur rassismuskritischen Aufarbeitung des NSU" +--- +Am 27. Juni 2001 arbeiteten Süleyman Taşköprü und sein Vater im Laden. Der Vater ging kurz weg, um Oliven zu besorgen. Als er zurück­kam, fand er seinen Sohn blutüberströmt vor. Süleyman war noch bei Bewusstsein, konnte aber nicht mehr sprechen. Erst zehn Jahre später wurde bekannt, dass Neonazis des NSU den Familienvater erschos­sen hatten. Der Hinweis auf zwei „deutsch“ aussehende Männer, die der Vater des Ermordeten kurz vor der Tat in der Nähe des Ladens beobachtet hatte, wurde von den Polizeibeamt:innen nicht verfolgt. Im Gegen­teil: Das Opfer selbst wurde massiv kriminalisiert. Zehn Jahre lang richteten sich die polizeilichen Ermittlungen gegen den Ermordeten und sein soziales Umfeld. In der Folge distanzierten sich immer mehr Menschen von der Familie des Mordopfers. diff --git a/content/schauplaetze/mordanschlag-auf-sueleyman-ta-koeprue-hamburg/index.en.md b/content/schauplaetze/mordanschlag-auf-sueleyman-ta-koeprue-hamburg/index.en.md new file mode 100644 index 0000000..d35baa3 --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-sueleyman-ta-koeprue-hamburg/index.en.md @@ -0,0 +1,12 @@ +--- +title: "Murder of Süleyman Taşköprü" +subtitle: "Süleyman Taşköprü" +date: 2001-06-27 +kategorien: ["Mordanschläge"] +lat: 53.5624768 +lng: 9.9286881 +address: "Schützenstraße 39, 22761 Hamburg" +datum: "27.06.2001" +quelle: "Mair, Brigit (2021): Süleyman Taşköprü. In: Zimmermann/ Klaus (Hg.): Vom Lernen und Verlernen – Methodenhandbuch zur rassismuskritischen Aufarbeitung des NSU" +--- +On 27 June 2001, Süleyman Taşköprü and his father were working in their shop. The father stepped out briefly to buy olives. When he returned, he found his son covered in blood. Süleyman was still conscious but could no longer speak. It was not until ten years later that it became known that neo-Nazis from the NSU had shot the father of the family. The police did not follow up on the description of two "German"-looking men whom the victim's father had noticed near the shop shortly before the crime. On the contrary: the victim himself was massively criminalized. For ten years, the police investigation was directed against the murdered man and his social circle. As a result, more and more people distanced themselves from the victim's family. diff --git a/content/schauplaetze/mordanschlag-auf-theodoros-boulgarides-muenchen/index.de.md b/content/schauplaetze/mordanschlag-auf-theodoros-boulgarides-muenchen/index.de.md new file mode 100644 index 0000000..54f346a --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-theodoros-boulgarides-muenchen/index.de.md @@ -0,0 +1,12 @@ +--- +title: "Mordanschlag auf Theodoros Boulgarides" +subtitle: "Theodoros Boulgarides" +date: 2005-06-15 +kategorien: ["Mordanschläge"] +lat: 48.1394336 +lng: 11.533818 +address: "Trappentreustraße 4, 80339 München" +datum: "15.06.2005" +quelle: "Mair, Brigit (2021): Theodoros Boulgarides. In: Zimmermann/ Klaus (Hg.): Vom Lernen und Verlernen – Methodenhandbuch zur rassismuskritischen Aufarbeitung des NSU" +--- +Am 15. Juni 2005 arbeitete Theodoros Boulgarides in seinem neu eröffneten Schlüsseldienst mit 24-Stunden-Service. Er war unweit des Ladens aufgewachsen, viele Menschen kannten und mochten ihn. Monatelang hatte er den Laden renoviert. Der Schlüssel­dienst wurde gut angenommen. Gerade hatte Theodoros Boulgarides seinen 41. Geburtstag gefeiert, seit dreißig Jahren lebte er nun in Bayern. Gegen 18.30 Uhr rief ihn sein Geschäftspartner an, doch niemand hob den Hörer ab. Sein Kompagnon fuhr in das Geschäft, wo er Theodoros Boulgarides tot auffand. Dieser wurde von drei Schüssen getroffen und war sofort tot. Die Familie litt unter der sozialen Ausgrenzung, die Folge der poli­zeilichen Ermittlungen war. Immer noch wurden die Täter im Drogen-und Glücksspielmilieu gesucht. diff --git a/content/schauplaetze/mordanschlag-auf-theodoros-boulgarides-muenchen/index.en.md b/content/schauplaetze/mordanschlag-auf-theodoros-boulgarides-muenchen/index.en.md new file mode 100644 index 0000000..98e8f8f --- /dev/null +++ b/content/schauplaetze/mordanschlag-auf-theodoros-boulgarides-muenchen/index.en.md @@ -0,0 +1,12 @@ +--- +title: "Murder of Theodoros Boulgarides" +subtitle: "Theodoros Boulgarides" +date: 2005-06-15 +kategorien: ["Mordanschläge"] +lat: 48.1394336 +lng: 11.533818 +address: "Trappentreustraße 4, 80339 München" +datum: "15.06.2005" +quelle: "Mair, Brigit (2021): Theodoros Boulgarides. In: Zimmermann/ Klaus (Hg.): Vom Lernen und Verlernen – Methodenhandbuch zur rassismuskritischen Aufarbeitung des NSU" +--- +On 15 June 2005, Theodoros Boulgarides was working in his newly opened 24-hour locksmith shop. He had grown up not far from the shop, and many people knew and liked him. He had spent months renovating the premises, and the locksmith business was going well. Theodoros Boulgarides had just celebrated his 41st birthday and had been living in Bavaria for thirty years. At around 6:30 p.m., his business partner called him, but no one answered. His partner drove to the shop, where he found Theodoros Boulgarides dead. He had been hit by three shots and died instantly. The family suffered from the social exclusion that resulted from the police investigation, which continued to search for the perpetrators within the drug and gambling milieu. diff --git a/content/schauplaetze/nagelbombenanschlag-koeln/index.de.md b/content/schauplaetze/nagelbombenanschlag-koeln/index.de.md new file mode 100644 index 0000000..c195817 --- /dev/null +++ b/content/schauplaetze/nagelbombenanschlag-koeln/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Nagelbombenanschlag" +date: 2004-06-09 +kategorien: ["Anschläge"] +lat: 50.9651804 +lng: 7.0097367 +address: "Keupstraße 60, 51063 Köln" +datum: "09.06.2004" +quelle: "http://keupstrasse-ist-ueberall.de Röpke/ Speit (2013): Blut und Ehre. Geschichte und Gegenwart rechter Gewalt in Deutsch-land. Berlin: Christoph Links Verlag" +--- +Am Nachmittag des 9. Juni 2004 deponieren zwei Männer eine auf einem Fahrrad befestigte Bombe, gefüllt mit 5kg Sprengstoff und 800 Nägeln, in der Keupstraße 60 in Köln Mühlheim. Die belebte Straße ist gesäumt von vielen kleinen Geschäften und Restaurants, die größtenteils von Menschen mit Migrationsgeschichte betrieben werden. Durch die Explosion werden 22 Personen teilweise schwer verletzt. Die Bewohner:innen gehen schnell von einem rassistisch motivierten Terroranschlag von Neonazis aus. Die Ermittlungsbehörden hingegen vermuten Täter*innen im Umfeld „der organisierten Kriminalität“ und ermitteln gegen die Betroffenen. diff --git a/content/schauplaetze/nagelbombenanschlag-koeln/index.en.md b/content/schauplaetze/nagelbombenanschlag-koeln/index.en.md new file mode 100644 index 0000000..3a5f43b --- /dev/null +++ b/content/schauplaetze/nagelbombenanschlag-koeln/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Nail Bomb Attack" +date: 2004-06-09 +kategorien: ["Anschläge"] +lat: 50.9651804 +lng: 7.0097367 +address: "Keupstraße 60, 51063 Köln" +datum: "09.06.2004" +quelle: "http://keupstrasse-ist-ueberall.de Röpke/ Speit (2013): Blut und Ehre. Geschichte und Gegenwart rechter Gewalt in Deutsch-land. Berlin: Christoph Links Verlag" +--- +On the afternoon of 9 June 2004, two men planted a bomb attached to a bicycle, packed with 5 kg of explosives and 800 nails, at Keupstraße 60 in Cologne-Mülheim. The busy street is lined with many small shops and restaurants, most of them run by people with a migration history. The explosion left 22 people injured, some seriously. Residents quickly assumed it was a racially motivated terrorist attack by neo-Nazis. The investigating authorities, however, suspected perpetrators from the milieu of "organized crime" and investigated those affected by the attack. diff --git a/content/schauplaetze/neonazistische-aufkleber-am-tatort-nuernberg/index.de.md b/content/schauplaetze/neonazistische-aufkleber-am-tatort-nuernberg/index.de.md new file mode 100644 index 0000000..0e89c34 --- /dev/null +++ b/content/schauplaetze/neonazistische-aufkleber-am-tatort-nuernberg/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Neonazistische Aufkleber am Tatort" +date: 2011-11-14 +kategorien: ["Unterstützende"] +lat: 49.4345312 +lng: 11.0825061 +address: "90459 Nürnberg" +datum: "14.11.2011" +quelle: "Mair, Birgit: Die Opfer des NSU und die Aufarbeitung der Verbrechen (5. aktualisierte und erweiterte Auflage 2021) Nürnberg, S. 65" +--- +Kurz nach Bekanntwerden der NSU-Verbrechen Anfang November 2011 wurden an den Fallrohren des Hauses, in dem 2001 Abdurrahim Özüdoğru ermordet worden war, Reste neonazistischer Aufkleber entdeckt. Es handelte sich um Aufkleber der „Fränkischen Aktionsfront“ (F.A.F.), die 2004 vom bayerischen Innenministerium verboten worden war. Anführer der F.A.F. war der damals in Nürnberg wohnhafte Neonazi Matthias Fischer, dessen Name und Telefonnummer ebenfalls auf der „Garagenliste“ der späteren NSU-Terroristen stand. Da die polizeilichen Ermittler zu diesem Zeitpunkt gar nicht nach Neonazis suchten, konnten solche Verbindungen nicht hergestellt werden. Die Frage, ob die Aufkleber bereits zum Zeitpunkt des Mordes an Herrn Özüdoğru auf den Fallrohren des Tatortes in der Siemensstraße/ Gyulaer Straße Nürnberg klebten, wurde nicht geklärt. diff --git a/content/schauplaetze/neonazistische-aufkleber-am-tatort-nuernberg/index.en.md b/content/schauplaetze/neonazistische-aufkleber-am-tatort-nuernberg/index.en.md new file mode 100644 index 0000000..869b0ed --- /dev/null +++ b/content/schauplaetze/neonazistische-aufkleber-am-tatort-nuernberg/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Neo-Nazi Stickers at the Crime Scene" +date: 2011-11-14 +kategorien: ["Unterstützende"] +lat: 49.4345312 +lng: 11.0825061 +address: "90459 Nürnberg" +datum: "14.11.2011" +quelle: "Mair, Birgit: Die Opfer des NSU und die Aufarbeitung der Verbrechen (5. aktualisierte und erweiterte Auflage 2021) Nürnberg, S. 65" +--- +Shortly after the NSU's crimes became known in early November 2011, remnants of neo-Nazi stickers were discovered on the downpipes of the building in which Abdurrahim Özüdoğru had been murdered in 2001. The stickers belonged to the "Fränkische Aktionsfront" (F.A.F.), which had been banned by the Bavarian Ministry of the Interior in 2004. The leader of the F.A.F. was the neo-Nazi Matthias Fischer, who at the time lived in Nuremberg and whose name and phone number also appeared on the "garage list" of the later NSU terrorists. Because the police investigators were not looking for neo-Nazis at the time, such connections could not be established. The question of whether the stickers were already attached to the downpipes at the crime scene on Siemensstraße/Gyulaer Straße in Nuremberg at the time of the murder of Mr. Özüdoğru was never clarified. diff --git a/content/schauplaetze/neonazistisches-print-magazin-der-landser-nuernberg/index.de.md b/content/schauplaetze/neonazistisches-print-magazin-der-landser-nuernberg/index.de.md new file mode 100644 index 0000000..50db045 --- /dev/null +++ b/content/schauplaetze/neonazistisches-print-magazin-der-landser-nuernberg/index.de.md @@ -0,0 +1,11 @@ +--- +title: "neonazistisches Print-Magazin ‚Der Landser‘" +date: 2014-04-10 +kategorien: ["Fanzines"] +lat: 49.4599525 +lng: 11.0955054 +address: "Martin-Richter-Straße 34, 90489 Nürnberg" +datum: "10.04.2014" +quelle: "Spezialitäten aus Mittelfranken – Ein Überblick über rechte und rechtsextreme Strukturen. Hg. argumente. netzwerk antifaschistischer bildung e.V., Berlin 2003, S. 57 Landser-Hefte im Archiv des Instituts für sozialwissenschaftliche Forschung, Bildung und Beratung (ISFBB e.V.) Nürnberg „‘White Power Mandy‘ druckst herum“ auf sueddeutsche.de am 10.04.2014, Internetseite: https://www.sueddeutsche.de/politik/zeugin-im-nsu-prozess-white-power-mandy-druckst-herum-1.1934187 [Aufruf 08.09.2021] „Frauen und Männer im Untergrund – Geschlechterverhältnisse im NSU und in seinem Umfeld“ auf der www.nsu-watch.info, veröffentlich am 16.05.2012, Internetseite: https://www.nsu-watch.info/2012/05/geschlechterverhaltnisse/ [Aufruf 8.9.2021]" +--- +Das zunächst von den „Skinheads Nürnberg“ und später von den „Nationalisten Nürnberg“ herausgegebene Fanzine „Der Landser“ war ein neonazistisches Print-Magazin im DIN-A-5-Format. Zwischen 1998 und 2001 erschienen acht Ausgaben. Als Kontaktadresse wurde ein Postfach der „IG WIR‘“ in „90020 Nürnberg“ angegeben. Ausgabe Nr. 6 wurde für „5 Reichsmark“ verkauft und presserechtlich verantwortet von Matthias Fischer, Kontaktadresse war die Martin-Richter-Straße 34 in Nürnberg. Interessant sind die möglichen Verbindungen zwischen den fränkischen Neonazi-AktivistInnen rund um den „Landser“ und dem NSU. Der Name des damals in Franken lebenden Neonazi-Aktivisten Matthias Fischer stand samt Telefonnummer auf einer Kontaktliste, die im Januar 1998 in einer von Beate Zschäpe angemieteten Garage in Jena gefunden wurde. In einem Landser-Heft wurde Werbung für das Heft Nr. 13 des Fanzines „Der weiße Wolf“ gemacht. In Ausgabe 18 von „Der Weiße Wolf“ wurde im Jahr 2002 dem NSU gedankt. Eine weitere Verbindung zwischen dem „Landser“-Umfeld und dem NSU: Die aus Sachsen stammende Neonazistin Mandy S., die von 2002 bis 2003 in Mittelfranken lebte, hatte dem im Januar 1998 untergetauchten NSU-Trio einen Unterschlupf organisiert. Sie schrieb gemeinsam mit einem anderen Neonazi einen Aufsatz in der Ausgabe Nr. 8 des „Landser“. diff --git a/content/schauplaetze/neonazistisches-print-magazin-der-landser-nuernberg/index.en.md b/content/schauplaetze/neonazistisches-print-magazin-der-landser-nuernberg/index.en.md new file mode 100644 index 0000000..28fea04 --- /dev/null +++ b/content/schauplaetze/neonazistisches-print-magazin-der-landser-nuernberg/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Neo-Nazi Print Magazine 'Der Landser'" +date: 2014-04-10 +kategorien: ["Fanzines"] +lat: 49.4599525 +lng: 11.0955054 +address: "Martin-Richter-Straße 34, 90489 Nürnberg" +datum: "10.04.2014" +quelle: "Spezialitäten aus Mittelfranken – Ein Überblick über rechte und rechtsextreme Strukturen. Hg. argumente. netzwerk antifaschistischer bildung e.V., Berlin 2003, S. 57 Landser-Hefte im Archiv des Instituts für sozialwissenschaftliche Forschung, Bildung und Beratung (ISFBB e.V.) Nürnberg „‘White Power Mandy‘ druckst herum“ auf sueddeutsche.de am 10.04.2014, Internetseite: https://www.sueddeutsche.de/politik/zeugin-im-nsu-prozess-white-power-mandy-druckst-herum-1.1934187 [Aufruf 08.09.2021] „Frauen und Männer im Untergrund – Geschlechterverhältnisse im NSU und in seinem Umfeld“ auf der www.nsu-watch.info, veröffentlich am 16.05.2012, Internetseite: https://www.nsu-watch.info/2012/05/geschlechterverhaltnisse/ [Aufruf 8.9.2021]" +--- +The fanzine "Der Landser," initially published by the "Skinheads Nürnberg" and later by the "Nationalisten Nürnberg," was a neo-Nazi print magazine in DIN A5 format. Eight issues appeared between 1998 and 2001. A P.O. box belonging to the "IG WIR'" in "90020 Nürnberg" was given as the contact address. Issue No. 6 was sold for "5 Reichsmark" and was legally responsible under Matthias Fischer, with Martin-Richter-Straße 34 in Nuremberg as the contact address. Of particular interest are the possible connections between the Franconian neo-Nazi activists around "Landser" and the NSU. The name of the neo-Nazi activist Matthias Fischer, who lived in Franconia at the time, appeared together with his phone number on a contact list found in January 1998 in a garage in Jena rented by Beate Zschäpe. One issue of Landser carried an advertisement for issue No. 13 of the fanzine "Der weiße Wolf." In issue 18 of "Der Weiße Wolf," published in 2002, thanks were given to the NSU. Another connection between the "Landser" milieu and the NSU: the neo-Nazi Mandy S., originally from Saxony, who lived in Middle Franconia from 2002 to 2003, had arranged a hideout for the NSU trio after they went underground in January 1998. Together with another neo-Nazi, she wrote an article in issue No. 8 of "Landser." diff --git a/content/schauplaetze/puppentorso-i-jena/cover.jpg b/content/schauplaetze/puppentorso-i-jena/cover.jpg new file mode 100644 index 0000000..bc204ad --- /dev/null +++ b/content/schauplaetze/puppentorso-i-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc2649ffa2862caac58d55c9c0197b815cb1a28cdaa6450eee6477f0da0c2dcf +size 207760 diff --git a/content/schauplaetze/puppentorso-i-jena/index.de.md b/content/schauplaetze/puppentorso-i-jena/index.de.md new file mode 100644 index 0000000..a721026 --- /dev/null +++ b/content/schauplaetze/puppentorso-i-jena/index.de.md @@ -0,0 +1,13 @@ +--- +title: "Puppentorso I" +date: 1995-11-09 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9161131 +lng: 11.5783053 +address: "Kahlaische Straße, 07745 Jena" +datum: "9.11.1995" +quelle: "OTZ Jena, 21.12.2011." +--- +Ein sogenannter Puppentorso wurde in den Morgenstunden des 9.11.1995 an einer über die Kahlaischen Straße führenden Rohrbrücke für eine Fernwärmeleitung entdeckt. Auch dieser Gegenstand trug einen nachgemachten Davidstern. Aufgrund des frühen Auffindens war die Öffentlichkeitswirkung wie auch an der Autobahnbrücke gering. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/puppentorso-i-jena/index.en.md b/content/schauplaetze/puppentorso-i-jena/index.en.md new file mode 100644 index 0000000..b82b4d4 --- /dev/null +++ b/content/schauplaetze/puppentorso-i-jena/index.en.md @@ -0,0 +1,13 @@ +--- +title: "Doll Torso I" +date: 1995-11-09 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9161131 +lng: 11.5783053 +address: "Kahlaische Straße, 07745 Jena" +datum: "9.11.1995" +quelle: "OTZ Jena, 21.12.2011." +--- +A so-called doll's torso was discovered in the early morning hours of 9 November 1995 on a pipe bridge carrying a district heating line across Kahlaische Straße. This object, too, bore a fake Star of David. Because it was found at an early hour, its public impact, as with the motorway bridge incident, was limited. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/puppentorso-ii-ort/cover.jpg b/content/schauplaetze/puppentorso-ii-ort/cover.jpg new file mode 100644 index 0000000..593e43e --- /dev/null +++ b/content/schauplaetze/puppentorso-ii-ort/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb37586d712a9a8088d0d7aca3b38997d5d0a9f9fa0bccabd738dd84d1112dcc +size 304704 diff --git a/content/schauplaetze/puppentorso-ii-ort/index.de.md b/content/schauplaetze/puppentorso-ii-ort/index.de.md new file mode 100644 index 0000000..2cedec6 --- /dev/null +++ b/content/schauplaetze/puppentorso-ii-ort/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Puppentorso II" +subtitle: "Uwe Böhnhardt" +date: 1996-04-13 +kategorien: ["Tatorte vor dem Untertauchen"] +datum: "13.04.1996" +quelle: "Thüringer Landtag, 5. Wahlperiode, Zwischenbericht des Untersuchungsausschusses 5/1, Drucksache 5/5810, 7.3.2013, S. 214, auch 78, 108, 183 Bild-Zeitung vom 16.4.1996 Aust/ Laabs,Heimatschutz S. 159 f." +--- +Am 13.04.1996 wurde an der Pösener Brücke über die Autobahn A4 bei Kilometer 178,5 (Gemarkung Bucha, Ortsteil Pösen) ein Puppentorso aufgehängt. Der Puppentorso war mit einem gelben Davidstern, darüber das Wort „Jude“ geschrieben, und einer unkonventionellen Spreng- und Brandvorrichtung (USBV) versehen. Sie bestand aus zwei Kartons, die mit Elektrokabeln an den Puppentorso angeschlossen waren, sowie einem Verkehrsschild mit der Aufschrift ‚Vorsicht Bombe’. Die Sonderkommission der Kripo, die SoKo „Rex“, ermittelte wegen Eingriff in den Straßenverkehr, Störung des öffentlichen Friedens und Volksverhetzung. Auf einem der Kartons fand sich der Abdruck des Mittelfingers der linken Hand von Böhnhardt. Es wurde eine Belohnung von 5000 DM zur Ergreifung der Täter ausgesetzt. Offensichtlich gab es einen zeitlichen Zusammenhang zwischen der Tat und dem 51. Jahrestag der Befreiung des KZ Buchenwald 1945. Wenige Tage zuvor hatte der Zentralrat der Juden Deutschlands die Gedenkstätte besucht. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/puppentorso-ii-ort/index.en.md b/content/schauplaetze/puppentorso-ii-ort/index.en.md new file mode 100644 index 0000000..fa0ac6f --- /dev/null +++ b/content/schauplaetze/puppentorso-ii-ort/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Doll Torso II" +subtitle: "Uwe Böhnhardt" +date: 1996-04-13 +kategorien: ["Tatorte vor dem Untertauchen"] +datum: "13.04.1996" +quelle: "Thüringer Landtag, 5. Wahlperiode, Zwischenbericht des Untersuchungsausschusses 5/1, Drucksache 5/5810, 7.3.2013, S. 214, auch 78, 108, 183 Bild-Zeitung vom 16.4.1996 Aust/ Laabs,Heimatschutz S. 159 f." +--- +On 13 April 1996, a doll's torso was hung from the Pösen Bridge over the A4 motorway at kilometre 178.5 (district of Bucha, borough of Pösen). The doll's torso bore a yellow Star of David with the word "Jude" [Jew] written above it, and was fitted with an improvised explosive and incendiary device (USBV). It consisted of two cardboard boxes connected to the doll's torso by electrical cables, along with a traffic sign reading "Vorsicht Bombe" [Caution, bomb]. The special police commission, SoKo "Rex", investigated the case as interference with road traffic, disturbance of public peace, and incitement to hatred. On one of the cardboard boxes, the print of the middle finger of Böhnhardt's left hand was found. A reward of 5,000 DM was offered for information leading to the perpetrators' capture. There was evidently a temporal connection between the act and the 51st anniversary of the liberation of Buchenwald concentration camp in 1945. A few days earlier, the Central Council of Jews in Germany had visited the memorial site. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/raubueberfall-auf-eine-postfiliale-chemnitz/index.de.md b/content/schauplaetze/raubueberfall-auf-eine-postfiliale-chemnitz/index.de.md new file mode 100644 index 0000000..29c1a34 --- /dev/null +++ b/content/schauplaetze/raubueberfall-auf-eine-postfiliale-chemnitz/index.de.md @@ -0,0 +1,10 @@ +--- +title: "Raubüberfall auf eine Postfiliale" +date: 1999-10-27 +kategorien: ["Raubüberfälle"] +lat: 50.83493 +lng: 12.88572 +address: "Limbacher Straße 148, 09116 Chemnitz" +datum: "27.10.1999" +--- +Der dritte Überfall, der dem Kerntrio des NSU zugerechnet wird, ist am 27.10.1999. Böhnhardt und Mundlos überfallen eine Postfiliale in der Limbacher Straße 148 in Chemnitz. Sie drohen mit Schusswaffen und erzwingen so, dass der Tresor geöffnet wird. Die Beute beträgt knapp 63.000 DM. Die Postfiliale befindet sich nicht weit entfernt von der Wohnung von Max-Florian B., in der die Drei von Februar bis in den Spätsommer 1998 mit Hilfe von Mandy S. Unterschlupf fanden. diff --git a/content/schauplaetze/raubueberfall-auf-eine-postfiliale-chemnitz/index.en.md b/content/schauplaetze/raubueberfall-auf-eine-postfiliale-chemnitz/index.en.md new file mode 100644 index 0000000..d50db23 --- /dev/null +++ b/content/schauplaetze/raubueberfall-auf-eine-postfiliale-chemnitz/index.en.md @@ -0,0 +1,10 @@ +--- +title: "Robbery of a Post Office Branch" +date: 1999-10-27 +kategorien: ["Raubüberfälle"] +lat: 50.83493 +lng: 12.88572 +address: "Limbacher Straße 148, 09116 Chemnitz" +datum: "27.10.1999" +--- +The third robbery attributed to the NSU's core trio took place on 27 October 1999. Böhnhardt and Mundlos raided a post office branch at Limbacher Straße 148 in Chemnitz. They threatened staff with firearms, forcing them to open the safe. The haul amounted to just under 63,000 DM. The post office branch is located not far from the flat of Max-Florian B., where the three of them found shelter with the help of Mandy S. from February to late summer 1998. diff --git a/content/schauplaetze/raubueberfall-auf-eine-postfiliale-zwickau/index.de.md b/content/schauplaetze/raubueberfall-auf-eine-postfiliale-zwickau/index.de.md new file mode 100644 index 0000000..5bfda8e --- /dev/null +++ b/content/schauplaetze/raubueberfall-auf-eine-postfiliale-zwickau/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Raubüberfall auf eine Postfiliale" +date: 2001-07-05 +kategorien: ["Raubüberfälle"] +lat: 50.72954 +lng: 12.51984 +address: "Max-Planck-Straße 1A, 08066 Zwickau" +datum: "05.07.2001" +quelle: "NSU Watch (2016): Protokoll – 274.Verhandlungstag. Online unter: https://www.nsu-watch.info/2016/04/protokoll-274-verhandlungstag-12-april-2016/" +--- +Die Postfiliale in der Max-Planck-Straße in Zwickau ist am 5. Juli 2001 Objekt des fünften Raubüberfalls, der dem NSU zugerechnet wird. Es ist ein schöner Sommertag, als vormittags zwei maskierte Personen in die Postfiliale kommen und die Öffnung des Tresors gewaltvoll erzwingen. Als weitere Kund:innen die Filiale betreten wollen werden sie mit Reizgas verletzt. Die beiden Täter verlassen die Postfiliale mit einer Beute von knapp 75.000 DM. diff --git a/content/schauplaetze/raubueberfall-auf-eine-postfiliale-zwickau/index.en.md b/content/schauplaetze/raubueberfall-auf-eine-postfiliale-zwickau/index.en.md new file mode 100644 index 0000000..6d5753a --- /dev/null +++ b/content/schauplaetze/raubueberfall-auf-eine-postfiliale-zwickau/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Robbery of a Post Office Branch" +date: 2001-07-05 +kategorien: ["Raubüberfälle"] +lat: 50.72954 +lng: 12.51984 +address: "Max-Planck-Straße 1A, 08066 Zwickau" +datum: "05.07.2001" +quelle: "NSU Watch (2016): Protokoll – 274.Verhandlungstag. Online unter: https://www.nsu-watch.info/2016/04/protokoll-274-verhandlungstag-12-april-2016/" +--- +The post office branch on Max-Planck-Straße in Zwickau was the site of the fifth robbery attributed to the NSU, on 5 July 2001. It was a beautiful summer day when two masked individuals entered the post office branch in the late morning and violently forced open the safe. When other customers tried to enter the branch, they were injured with pepper spray. The two perpetrators left the post office branch with a haul of just under 75,000 DM. diff --git a/content/schauplaetze/raubueberfall-auf-eine-sparkasse-arnstadt/index.de.md b/content/schauplaetze/raubueberfall-auf-eine-sparkasse-arnstadt/index.de.md new file mode 100644 index 0000000..2aa894c --- /dev/null +++ b/content/schauplaetze/raubueberfall-auf-eine-sparkasse-arnstadt/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Raubüberfall auf eine Sparkasse" +date: 2011-09-07 +kategorien: ["Raubüberfälle"] +lat: 50.8375245 +lng: 10.9356151 +address: "Goethestraße 2, 99310 Arnstadt" +datum: "07.09.2011" +quelle: "https://www.bpb.de/politik/extremismus/rechtsextremismus/172933/interaktive-grafik-die-taten-des-nsu" +--- +Am 7. September 2011 überfallen Böhnhardt und Mundlos eine Sparkasse in der Goethestraße in Arnstadt. Die Mitarbeitenden werden von den beiden mit Waffen und einer Handgranatenattrappe bedroht, eine Person wird verletzt. Böhnhardt und Mundlos fliehen mit 15.000 Euro. diff --git a/content/schauplaetze/raubueberfall-auf-eine-sparkasse-arnstadt/index.en.md b/content/schauplaetze/raubueberfall-auf-eine-sparkasse-arnstadt/index.en.md new file mode 100644 index 0000000..c9f2d61 --- /dev/null +++ b/content/schauplaetze/raubueberfall-auf-eine-sparkasse-arnstadt/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Robbery of a Sparkasse Bank Branch" +date: 2011-09-07 +kategorien: ["Raubüberfälle"] +lat: 50.8375245 +lng: 10.9356151 +address: "Goethestraße 2, 99310 Arnstadt" +datum: "07.09.2011" +quelle: "https://www.bpb.de/politik/extremismus/rechtsextremismus/172933/interaktive-grafik-die-taten-des-nsu" +--- +On 7 September 2011, Böhnhardt and Mundlos robbed a Sparkasse bank branch on Goethestraße in Arnstadt. The two threatened staff with weapons and a dummy hand grenade, injuring one person. Böhnhardt and Mundlos fled with 15,000 euros. diff --git a/content/schauplaetze/raubueberfall-auf-eine-sparkasse-eisenach/index.de.md b/content/schauplaetze/raubueberfall-auf-eine-sparkasse-eisenach/index.de.md new file mode 100644 index 0000000..b8922cd --- /dev/null +++ b/content/schauplaetze/raubueberfall-auf-eine-sparkasse-eisenach/index.de.md @@ -0,0 +1,12 @@ +--- +title: "Raubüberfall auf eine Sparkasse" +subtitle: "Uwe Mundlos, Uwe Böhnhardt" +date: 2011-11-04 +kategorien: ["Raubüberfälle"] +lat: 50.9957427 +lng: 10.3086582 +address: "Nordplatz, 99817 Eisenach" +datum: "04.11.2011" +quelle: "https://www.bpb.de/politik/extremismus/rechtsextremismus/172933/interaktive-grafik-die-taten-des-nsu Röpke/ Speit (2013): Blut und Ehre. Geschichte und Gegenwart rechter Gewalt in Deutsch-land. Berlin: Christoph Links Verlag, S.61-63" +--- +Am 4. November 2011 um 9 Uhr morgens überfallen Uwe Mundlos und Uwe Böhnhardt bewaffnet die Sparkasse am Nordplatz in Eisenach. Unter Androhung und Einsatz von Gewalt erzwingen sie die Öffnung des Tresors. Sie erbeuten knapp 72 000€ und fliehen. Drei Stunden später werden sie tot in ihrem einen Kilometer entfernt geparkten Wohnmobil aufgefunden. diff --git a/content/schauplaetze/raubueberfall-auf-eine-sparkasse-eisenach/index.en.md b/content/schauplaetze/raubueberfall-auf-eine-sparkasse-eisenach/index.en.md new file mode 100644 index 0000000..282a0b1 --- /dev/null +++ b/content/schauplaetze/raubueberfall-auf-eine-sparkasse-eisenach/index.en.md @@ -0,0 +1,12 @@ +--- +title: "Robbery of a Sparkasse Bank" +subtitle: "Uwe Mundlos, Uwe Böhnhardt" +date: 2011-11-04 +kategorien: ["Raubüberfälle"] +lat: 50.9957427 +lng: 10.3086582 +address: "Nordplatz, 99817 Eisenach" +datum: "04.11.2011" +quelle: "https://www.bpb.de/politik/extremismus/rechtsextremismus/172933/interaktive-grafik-die-taten-des-nsu Röpke/ Speit (2013): Blut und Ehre. Geschichte und Gegenwart rechter Gewalt in Deutsch-land. Berlin: Christoph Links Verlag, S.61-63" +--- +On the morning of 4 November 2011, at 9 a.m., Uwe Mundlos and Uwe Böhnhardt raided the Sparkasse bank at Nordplatz in Eisenach, armed. Through the threat and use of violence, they forced the safe open. They stole nearly €72,000 and fled. Three hours later they were found dead in their camper van, parked one kilometer away. diff --git a/content/schauplaetze/raubueberfall-auf-eine-sparkasse-zwickau/index.de.md b/content/schauplaetze/raubueberfall-auf-eine-sparkasse-zwickau/index.de.md new file mode 100644 index 0000000..53596d5 --- /dev/null +++ b/content/schauplaetze/raubueberfall-auf-eine-sparkasse-zwickau/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Raubüberfall auf eine Sparkasse" +date: 2006-10-05 +kategorien: ["Raubüberfälle"] +lat: 50.7359249 +lng: 12.5075569 +address: "Kosmonautenstraße 2, 08066 Zwickau" +datum: "05.10.2006" +quelle: "Bundezentrale für politische Bildung: Interaktive Grafik: Die Taten des NSU. Online Unter: https://www.bpb.de/politik/extremismus/rechtsextremismus/172933/interaktive-grafik-die-taten-des-nsu" +--- +Beim elften Raub versucht Uwe Böhnhardt allein die Sparkasse Kosmonautenstraße in Zwickau zu überfallen. Auch dieser Überfall ist von massiver Gewalt gegenüber den Angestellten gekennzeichnet. Als ein Auszubildender der Bank versucht Böhnhardt zu fassen verletzt ihn Böhnhardt mit einem Bauchschuss lebensgefährlich und dauerhaft. Böhnhardt flieht anschließend ohne Beute. diff --git a/content/schauplaetze/raubueberfall-auf-eine-sparkasse-zwickau/index.en.md b/content/schauplaetze/raubueberfall-auf-eine-sparkasse-zwickau/index.en.md new file mode 100644 index 0000000..6ce6e06 --- /dev/null +++ b/content/schauplaetze/raubueberfall-auf-eine-sparkasse-zwickau/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Robbery of a Sparkasse Bank" +date: 2006-10-05 +kategorien: ["Raubüberfälle"] +lat: 50.7359249 +lng: 12.5075569 +address: "Kosmonautenstraße 2, 08066 Zwickau" +datum: "05.10.2006" +quelle: "Bundezentrale für politische Bildung: Interaktive Grafik: Die Taten des NSU. Online Unter: https://www.bpb.de/politik/extremismus/rechtsextremismus/172933/interaktive-grafik-die-taten-des-nsu" +--- +In the eleventh robbery, Uwe Böhnhardt attempted alone to rob the Sparkasse branch on Kosmonautenstraße in Zwickau. This robbery, too, was marked by massive violence against the staff. When a trainee at the bank tried to grab hold of him, Böhnhardt shot him in the abdomen, inflicting life-threatening and permanent injuries. Böhnhardt then fled without any loot. diff --git a/content/schauplaetze/raubueberfall-auf-sparkasse-stralsund/index.de.md b/content/schauplaetze/raubueberfall-auf-sparkasse-stralsund/index.de.md new file mode 100644 index 0000000..64ec3ba --- /dev/null +++ b/content/schauplaetze/raubueberfall-auf-sparkasse-stralsund/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Raubüberfall auf Sparkasse" +date: 2006-11-07 +kategorien: ["Raubüberfälle"] +lat: 54.3309536 +lng: 13.074239 +address: "Kleine Parower Straße 51-53, 18435 Stralsund" +datum: "07.11.2006" +quelle: "https://www.bpb.de/politik/extremismus/rechtsextremismus/167684/der-nationalsozialistische-untergrund-nsu https://www.nsu-watch.info/2017/08/der-nsu-in-mecklenburg-vorpommern-kaum-interesse-an-aufklaerung/" +--- +Am 7. Dezember 2006 und 18. Januar 2007 überfallen mutmaßlich Mundlos und Böhnhardt eine Sparkassenfiliale in der Kleinen Parower Straße 51-53 in der Innenstadt von Stralsund. Mit einer Schreckschusswaffe schießen sie beide Male Richtung Decke und bedrohen anschließend die Angestellten und anwesenden Kund:innen mit einer Pistole. Zusammengenommen erbeuten die beiden knapp 255.000€ in Stralsund. Bemerkenswert ist, dass sich der Ort der Überfälle hunderte Kilometer entfernt von den sonstigen Raubüberfallsorten befindet. Ob es ortsansässige Hinweisgeber:innen gab, gehört bis heute zu den offenen Fragen. diff --git a/content/schauplaetze/raubueberfall-auf-sparkasse-stralsund/index.en.md b/content/schauplaetze/raubueberfall-auf-sparkasse-stralsund/index.en.md new file mode 100644 index 0000000..c2f5578 --- /dev/null +++ b/content/schauplaetze/raubueberfall-auf-sparkasse-stralsund/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Robbery of a Sparkasse Bank" +date: 2006-11-07 +kategorien: ["Raubüberfälle"] +lat: 54.3309536 +lng: 13.074239 +address: "Kleine Parower Straße 51-53, 18435 Stralsund" +datum: "07.11.2006" +quelle: "https://www.bpb.de/politik/extremismus/rechtsextremismus/167684/der-nationalsozialistische-untergrund-nsu https://www.nsu-watch.info/2017/08/der-nsu-in-mecklenburg-vorpommern-kaum-interesse-an-aufklaerung/" +--- +On 7 December 2006 and 18 January 2007, Mundlos and Böhnhardt allegedly raided a Sparkasse branch at Kleine Parower Straße 51-53 in the center of Stralsund. On both occasions they fired a blank-firing pistol toward the ceiling and then threatened the staff and customers present with a handgun. Together, the two stole nearly €255,000 in Stralsund. Notably, the location of these robberies lies hundreds of kilometers away from the sites of the other robberies. Whether there were local informants remains an open question to this day. diff --git a/content/schauplaetze/rohrbombenanschlag-auf-mehmet-o-nuernberg/cover.png b/content/schauplaetze/rohrbombenanschlag-auf-mehmet-o-nuernberg/cover.png new file mode 100644 index 0000000..49c3238 --- /dev/null +++ b/content/schauplaetze/rohrbombenanschlag-auf-mehmet-o-nuernberg/cover.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9890cd860b913facb3d10991ffbfe25a33e485cfc92a4208cd89526824d986 +size 1441539 diff --git a/content/schauplaetze/rohrbombenanschlag-auf-mehmet-o-nuernberg/index.de.md b/content/schauplaetze/rohrbombenanschlag-auf-mehmet-o-nuernberg/index.de.md new file mode 100644 index 0000000..4751387 --- /dev/null +++ b/content/schauplaetze/rohrbombenanschlag-auf-mehmet-o-nuernberg/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Rohrbombenanschlag auf Mehmet O." +subtitle: "Frau von André E." +date: 2021-04-01 +kategorien: ["Anschläge"] +lat: 49.4447768 +lng: 11.08905 +address: "Scheurlstraße, Nürnberg" +quelle: "Mair, Birgit: Die Opfer des NSU und die Aufarbeitung der Verbrechen (5. aktualisierte und erweiterte Auflage 2021) Nürnberg, S.45." +--- +Am 23. Juni 1999 detonierte in der Pilsbar „Sonnenschein“ in der Nürnberger Scheurlstraße eine als Taschenlampe getarnte Rohrbombe. Der damals 18-jährige Wirt entdeckte die Taschenlampe am Tag nach der Eröffnungsparty in der Herrentoilette, nahm sie in die Hand. Dabei explodierte der Gegenstand. O. erlitt erhebliche Verletzungen und musste mehrere Wochen von seiner Mutter zuhause gepflegt werden. Fünf Jahre nach dem Anschlag verließ Mehmet O. seine Heimatstadt, nachdem Gerüchte, er sei in die Tat verwickelt gewesen, nicht verstummt waren. Bereits in seiner Jugend waren er und seine Freunde in der Frankenmetropole von Neonazis verfolgt worden; ein Freund war dabei zusammengeschlagen worden. 14 Jahre lang wusste der gebürtige Nürnberger Mehmet O. (Name geändert) nicht, wer die Bombe gelegt hatte. Dass der NSU hinter dem Anschlag steckte, wurde erst durch die Aussage von Carsten S. im Jahr 2013 im Münchner NSU-Prozess bekannt. Mehmet O. wurden daraufhin bei einer polizeilichen Vernehmung mehr als einhundert Fotos vorgelegt. Auf einem der Fotos erkannte er eine Frau. Dass es sich um die Frau des Neonazis André E. handelte, erfuhr er später durch JournalistInnen. diff --git a/content/schauplaetze/rohrbombenanschlag-auf-mehmet-o-nuernberg/index.en.md b/content/schauplaetze/rohrbombenanschlag-auf-mehmet-o-nuernberg/index.en.md new file mode 100644 index 0000000..6c5aebc --- /dev/null +++ b/content/schauplaetze/rohrbombenanschlag-auf-mehmet-o-nuernberg/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Pipe Bomb Attack on Mehmet O." +subtitle: "Wife of André E." +date: 2021-04-01 +kategorien: ["Anschläge"] +lat: 49.4447768 +lng: 11.08905 +address: "Scheurlstraße, Nürnberg" +quelle: "Mair, Birgit: Die Opfer des NSU und die Aufarbeitung der Verbrechen (5. aktualisierte und erweiterte Auflage 2021) Nürnberg, S.45." +--- +On 23 June 1999, a pipe bomb disguised as a flashlight detonated in the Pilsner bar "Sonnenschein" on Scheurlstraße in Nuremberg. The bar's owner, then 18 years old, discovered the flashlight in the men's restroom the day after the opening party and picked it up. The object exploded in his hands. O. suffered serious injuries and had to be cared for by his mother at home for several weeks. Five years after the attack, Mehmet O. left his hometown after rumors that he had been involved in the act refused to die down. Already in his youth, he and his friends had been pursued by neo-Nazis in the Franconian metropolis; one friend had been beaten up in the process. For 14 years, Nuremberg-born Mehmet O. (name changed) did not know who had planted the bomb. That the NSU was behind the attack only became known through the testimony of Carsten S. in 2013 at the NSU trial in Munich. Mehmet O. was subsequently shown more than one hundred photographs during a police interview. In one of the photos, he recognized a woman. He later learned from journalists that she was the wife of the neo-Nazi André E. diff --git a/content/schauplaetze/ruecktritt-beim-verfassungsschutz-dresden/index.de.md b/content/schauplaetze/ruecktritt-beim-verfassungsschutz-dresden/index.de.md new file mode 100644 index 0000000..c052d57 --- /dev/null +++ b/content/schauplaetze/ruecktritt-beim-verfassungsschutz-dresden/index.de.md @@ -0,0 +1,15 @@ +--- +title: "Rücktritt beim Verfassungsschutz" +subtitle: "Reinhard Boos" +date: 2021-04-01 +kategorien: ["Behörden"] +lat: 51.0961922 +lng: 13.7022006 +address: "Neuländer Straße 60, 01129 Dresden" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Am 11. Juli 2012 tritt Reinhard Boss, der oberste Verfassungsschützer + +von Sachsen zurück. Auslöser war eine Aktenpanne im Zusammenhang mit dem + +NSU. diff --git a/content/schauplaetze/ruecktritt-beim-verfassungsschutz-dresden/index.en.md b/content/schauplaetze/ruecktritt-beim-verfassungsschutz-dresden/index.en.md new file mode 100644 index 0000000..42b69a4 --- /dev/null +++ b/content/schauplaetze/ruecktritt-beim-verfassungsschutz-dresden/index.en.md @@ -0,0 +1,15 @@ +--- +title: "Resignation at the Office for the Protection of the Constitution" +subtitle: "Reinhard Boos" +date: 2021-04-01 +kategorien: ["Behörden"] +lat: 51.0961922 +lng: 13.7022006 +address: "Neuländer Straße 60, 01129 Dresden" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +On 11 July 2012, Reinhard Boss, the head of the Office for the Protection of the Constitution + +of Saxony, resigns. The trigger was a filing mishap connected to the + +NSU. diff --git a/content/schauplaetze/saalebruecke-burgau-ort/cover.jpg b/content/schauplaetze/saalebruecke-burgau-ort/cover.jpg new file mode 100644 index 0000000..fd34d5e --- /dev/null +++ b/content/schauplaetze/saalebruecke-burgau-ort/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08478b70f4fd3b9c4abe6fab2a8bcfc5925001019080674ceffc69c0b90b8116 +size 248066 diff --git a/content/schauplaetze/saalebruecke-burgau-ort/index.de.md b/content/schauplaetze/saalebruecke-burgau-ort/index.de.md new file mode 100644 index 0000000..0018124 --- /dev/null +++ b/content/schauplaetze/saalebruecke-burgau-ort/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Saalebrücke Burgau" +subtitle: "Uwe Böhnhardt, Uwe Mundlos" +date: 1997-11-25 +kategorien: ["Flucht aus Jena"] +datum: "25.11.1997" +quelle: "Aust/Laabs,Heimatschutz, S. 254 ff." +--- +Ein Observationsteam des Verfassungsschutzes stellte am 25.11.1997 fest, dass Böhnhardt und Mundlos zuvor in einem Supermarkt gekauften Brennspiritus sowie Gummiringe von ihrem in Jena-Burgau abgestellten Fahrzeug über die Saale-Brücke zu der jenseitig gelegenen Garagen-Anlage „An der Kläranlage“ brachten, in einer Garage verschwanden, und nach kurzer Zeit zurückkehrten. Aufgrund dieser und weiterer Erkenntnisse beantragte die Staatsanwaltschaft Gera schließlich am 19.1.1998 beim Amtsgericht Jena einen Durchsuchungsbeschluss. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/saalebruecke-burgau-ort/index.en.md b/content/schauplaetze/saalebruecke-burgau-ort/index.en.md new file mode 100644 index 0000000..501d1f6 --- /dev/null +++ b/content/schauplaetze/saalebruecke-burgau-ort/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Saale Bridge Burgau" +subtitle: "Uwe Böhnhardt, Uwe Mundlos" +date: 1997-11-25 +kategorien: ["Flucht aus Jena"] +datum: "25.11.1997" +quelle: "Aust/Laabs,Heimatschutz, S. 254 ff." +--- +On 25 November 1997, a surveillance team of the Office for the Protection of the Constitution observed that Böhnhardt and Mundlos carried denatured alcohol previously bought at a supermarket, as well as rubber rings, from their vehicle parked in Jena-Burgau across the Saale bridge to the garage complex "An der Kläranlage" on the other side, disappeared into a garage, and returned a short time later. On the basis of this and further findings, the Gera public prosecutor's office finally applied to the Jena district court on 19 January 1998 for a search warrant. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/sechste-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/cover.jpg b/content/schauplaetze/sechste-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/cover.jpg new file mode 100644 index 0000000..e19242e --- /dev/null +++ b/content/schauplaetze/sechste-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6acd00248bef11f6a738cf70df0fb2cf35e5e6c7fe5d9282cd074f748da99f3 +size 237871 diff --git a/content/schauplaetze/sechste-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.de.md b/content/schauplaetze/sechste-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.de.md new file mode 100644 index 0000000..e6ba2e5 --- /dev/null +++ b/content/schauplaetze/sechste-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Sechste Wohnung von Zschäpe, Mundlos und Böhnhardt" +subtitle: "Beate Zschäpe, Uwe Mundlos, Uwe Böhnhardt, Matthias D." +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.7204918 +lng: 12.4709157 +address: "Polenzstraße 2, 08060 Zwickau" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann. Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.13" +--- +Im Mai 2001 zogen die drei in die Zwickauer Polenzstraße, wo sie bis 2008 lebten. Angemietet wurde die Wohnung vom befreundeten Matthias D. Nachbarn berichten zufolge waren Mundlos und Böhnhardt nicht oft anzutreffen, Zschäpe präsentierte sich jedoch als freundliche, offene und hilfsbereite Nachbarin. diff --git a/content/schauplaetze/sechste-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.en.md b/content/schauplaetze/sechste-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.en.md new file mode 100644 index 0000000..d743ecb --- /dev/null +++ b/content/schauplaetze/sechste-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Sixth Apartment of Zschäpe, Mundlos and Böhnhardt" +subtitle: "Beate Zschäpe, Uwe Mundlos, Uwe Böhnhardt, Matthias D." +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.7204918 +lng: 12.4709157 +address: "Polenzstraße 2, 08060 Zwickau" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann. Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.13" +--- +In May 2001, the three moved into the Polenzstraße in Zwickau, where they lived until 2008. The apartment was rented by their friend Matthias D. According to neighbors, Mundlos and Böhnhardt were not often seen, but Zschäpe presented herself as a friendly, open, and helpful neighbor. diff --git a/content/schauplaetze/seidel-parkplatz-jena/cover.jpg b/content/schauplaetze/seidel-parkplatz-jena/cover.jpg new file mode 100644 index 0000000..c350a1d --- /dev/null +++ b/content/schauplaetze/seidel-parkplatz-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aff51a14c2b894f51c9adc68c1da9a69191c658641d51a821fb203dc09629854 +size 207097 diff --git a/content/schauplaetze/seidel-parkplatz-jena/index.de.md b/content/schauplaetze/seidel-parkplatz-jena/index.de.md new file mode 100644 index 0000000..d7edda9 --- /dev/null +++ b/content/schauplaetze/seidel-parkplatz-jena/index.de.md @@ -0,0 +1,14 @@ +--- +title: "Seidel-Parkplatz" +subtitle: "Ralf Wohlleben" +date: 2019-09-30 +kategorien: ["Demo-Orte"] +lat: 50.922198 +lng: 11.5905503 +address: "Seidelstraße, 07749 Jena" +datum: "30.9.2019" +quelle: "Bericht des Untersuchungsausschusses 6/1 des Thüringer Landtages, 6. Wahlperiode, 30.9.2019, S. 773 ff." +--- +Auf dem Seidel-Parkplatz an der Stadtrodaer Straße fand 2005 erstmals das rechtsextreme „Fest der Völker“, an dem einschlägige Redner und Bands aus Deutschland und mehreren europäischen Ländern teilnahmen. Zu den Organisatoren gehörten Ralf Wohlleben und Andre K., eingebunden waren Strukturen von Blood & Honour sowie der Hammerskins.  Gegen diese Veranstaltungen formierte sich in Jena ein breiter Protest der Zivilgesellschaft, was mit dazu führte, dass 2006 ein Verbot durchgesetzt wurde. 2007 fand erneut das „Fest“ in Jena statt. 2008 wichen die Veranstalter nach Altenburg aus, 2009 nach Pößneck in Thüringen. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/seidel-parkplatz-jena/index.en.md b/content/schauplaetze/seidel-parkplatz-jena/index.en.md new file mode 100644 index 0000000..b02eb27 --- /dev/null +++ b/content/schauplaetze/seidel-parkplatz-jena/index.en.md @@ -0,0 +1,14 @@ +--- +title: "Seidel Parking Lot" +subtitle: "Ralf Wohlleben" +date: 2019-09-30 +kategorien: ["Demo-Orte"] +lat: 50.922198 +lng: 11.5905503 +address: "Seidelstraße, 07749 Jena" +datum: "30.9.2019" +quelle: "Bericht des Untersuchungsausschusses 6/1 des Thüringer Landtages, 6. Wahlperiode, 30.9.2019, S. 773 ff." +--- +In 2005, the far-right "Fest der Völker" ("Festival of Nations") took place for the first time at the Seidel parking lot on Stadtrodaer Straße, attended by well-known speakers and bands from Germany and several European countries. Among the organizers were Ralf Wohlleben and Andre K., with structures of Blood & Honour and the Hammerskins involved. Broad civil society protest formed in Jena against these events, which contributed to a ban being enforced in 2006. In 2007, the "Fest" took place again in Jena. In 2008 the organizers moved to Altenburg, and in 2009 to Pößneck in Thuringia. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/selbstenttarnung-eisenach/index.de.md b/content/schauplaetze/selbstenttarnung-eisenach/index.de.md new file mode 100644 index 0000000..ab40ea6 --- /dev/null +++ b/content/schauplaetze/selbstenttarnung-eisenach/index.de.md @@ -0,0 +1,14 @@ +--- +title: "Selbstenttarnung" +subtitle: "Uwe Mundlos, Uwe Böhnhardt" +date: 2004-11-04 +kategorien: [] +lat: 51.0073201 +lng: 10.3095001 +address: "Am Schafrain, 99817 Eisenach" +datum: "04.11.2004" +quelle: "https://www.bpb.de/politik/extremismus/rechtsextremismus/172933/interaktive-grafik-die-taten-des-nsu Röpke/ Speit (2013): Blut und Ehre. Geschichte und Gegenwart rechter Gewalt in Deutsch-land. Berlin: Christoph Links Verlag, S. 61-63" +--- +Am 4. November 2011 werden die Leichen von Uwe Mundlos und Uwe Böhnhardt von zwei Streifenbeamt*innen in einem weißen parkenden Wohnmobil im Wohngebiet Wartburgblick in Eisenach gefunden. Nach dem Banküberfall auf eine Sparkasse wird eine Ringfahndung nach den Täter:innen von der Polizei aufgegeben. Mundlos und Böhnhardt flüchten in das Wohnmobil, in dem sie drei Stunden nach dem Banküberfall von der Polizei tot aufgefunden werden. Neben den Leichen stoßen die Beamt:innen auf Funkgeräte, einer Kamera, die den Bereich vor dem Wohnwagen abdenkte, und ein ganzes Waffenarsenal. Darunter auch die Pistole, mit der Michèle Kiesewetter  umgebracht wurde, sowie die Česká mit der Enver Şimşek, Abdurrahim Özüdoğru, Süleyman Taşköprü, Habil Kılıç, Mehmet Turgut, İsmail Yaşar, Theodoros Boulgarides, + +Mehmet Kubaşık und Halit Yozgat ermordet wurden. diff --git a/content/schauplaetze/selbstenttarnung-eisenach/index.en.md b/content/schauplaetze/selbstenttarnung-eisenach/index.en.md new file mode 100644 index 0000000..8463e29 --- /dev/null +++ b/content/schauplaetze/selbstenttarnung-eisenach/index.en.md @@ -0,0 +1,14 @@ +--- +title: "Self-Exposure" +subtitle: "Uwe Mundlos, Uwe Böhnhardt" +date: 2004-11-04 +kategorien: [] +lat: 51.0073201 +lng: 10.3095001 +address: "Am Schafrain, 99817 Eisenach" +datum: "04.11.2004" +quelle: "https://www.bpb.de/politik/extremismus/rechtsextremismus/172933/interaktive-grafik-die-taten-des-nsu Röpke/ Speit (2013): Blut und Ehre. Geschichte und Gegenwart rechter Gewalt in Deutsch-land. Berlin: Christoph Links Verlag, S. 61-63" +--- +On 4 November 2011, the bodies of Uwe Mundlos and Uwe Böhnhardt are found by two patrol officers in a white camper van parked in the Wartburgblick residential area in Eisenach. After the robbery of a savings bank, the police called off a dragnet manhunt for the perpetrators. Mundlos and Böhnhardt fled into the camper van, where they are found dead by police three hours after the bank robbery. Next to the bodies, the officers come across radio equipment, a camera that covered the area in front of the camper van, and an entire arsenal of weapons. Among them was the pistol used to kill Michèle Kiesewetter, as well as the Česká with which Enver Şimşek, Abdurrahim Özüdoğru, Süleyman Taşköprü, Habil Kılıç, Mehmet Turgut, İsmail Yaşar, Theodoros Boulgarides, + +Mehmet Kubaşık and Halit Yozgat were murdered. diff --git a/content/schauplaetze/siebte-und-letzte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/cover.jpg b/content/schauplaetze/siebte-und-letzte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/cover.jpg new file mode 100644 index 0000000..78058c2 --- /dev/null +++ b/content/schauplaetze/siebte-und-letzte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069923122655255a233167d7f4b555a96127e374a1e6bfc53c9a7fe03d882773 +size 291488 diff --git a/content/schauplaetze/siebte-und-letzte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.de.md b/content/schauplaetze/siebte-und-letzte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.de.md new file mode 100644 index 0000000..7a778fe --- /dev/null +++ b/content/schauplaetze/siebte-und-letzte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Siebte und letzte Wohnung von Zschäpe, Mundlos und Böhnhardt" +subtitle: "Beate Zschäpe, Uwe Mundlos, Uwe Böhnhardt" +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.743 +lng: 12.47522 +address: "Frühlingsstraße 26, 08058 Zwickau" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann. Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.13" +--- +Das Trio zog 2008 in ihre letzte gemeinsame Wohnung auf der Frühlingsstraße 26 in Zwickau. Am 4. November 2011 gab es eine Explosion und einen Brand, welcher von Beate Zschäpe verursacht wurde. Das Haus ist abgerissen worden, um zu vermeiden, dass der Ort zu einer Pilgerstätte für Neonazis wird. diff --git a/content/schauplaetze/siebte-und-letzte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.en.md b/content/schauplaetze/siebte-und-letzte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.en.md new file mode 100644 index 0000000..ad29c0c --- /dev/null +++ b/content/schauplaetze/siebte-und-letzte-wohnung-von-zschaepe-mundlos-und-boehnhardt-zwickau/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Seventh and Last Apartment of Zschäpe, Mundlos and Böhnhardt" +subtitle: "Beate Zschäpe, Uwe Mundlos, Uwe Böhnhardt" +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.743 +lng: 12.47522 +address: "Frühlingsstraße 26, 08058 Zwickau" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann. Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.13" +--- +In 2008, the trio moved into their last shared apartment at Frühlingsstraße 26 in Zwickau. On 4 November 2011, an explosion and fire occurred there, caused by Beate Zschäpe. The building was demolished in order to prevent the site from becoming a place of pilgrimage for neo-Nazis. diff --git a/content/schauplaetze/soko-halbmond-nuernberg/index.de.md b/content/schauplaetze/soko-halbmond-nuernberg/index.de.md new file mode 100644 index 0000000..8542330 --- /dev/null +++ b/content/schauplaetze/soko-halbmond-nuernberg/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Soko Halbmond" +date: 2013-07-10 +kategorien: ["Behörden"] +lat: 49.4494154 +lng: 11.0685264 +address: "Jakobsplatz 3, 90402 Nürnberg" +datum: "10.7.2013" +quelle: "Schlussbericht des bayerischen NSU-Untersuchungsausschusses vom 10.7.2013, Bayerischer Landtag, 16. Wahlperiode Drucksache 16/17740, S. 92, S. 98, S. 138 Internetseite: https://www.bayern.landtag.de/fileadmin/images/content/NEU_Drs_16-17740_NSU_FINAL_18072013.pdf [Aufruf 7.9.2021] https://www.nordbayern.de/region/nuernberg/trauertag-vor-zehn-jahren-totete-der-nsu-ismail-yasar-1.4431151 [Aufruf 7.9.2021] https://www.faz.net/aktuell/gesellschaft/kriminalitaet/kriminalitaet-soko-halbmond-mordserie-gibt-polizei-raetsel-auf-12" +--- +Am 12. September 2001 wurde in Nürnberg die „Soko Halbmond“ gegründet. Angesiedelt war die Soko beim Polizeipräsidium Mittelfranken, Kriminaldirektion Nürnberg. Dort wurden laut bayerischem NSU-Untersuchungsausschuss „die bayerischen Fälle (…) als Koordinierungsstelle gebündelt und mit der Sonderkommission in Hamburg abgestimmt“. Bis zur Gründung der „Soko Halbmond“ waren vier Menschen mit derselben Waffe ermordet worden. Alle vier waren türkischer Herkunft. Während Neonazis als potenzielle TäterInnen ausgeblendet wurden, wurden die Opfer öffentlich als Drogenhändler diskreditiert, indem ausschließlich in Richtung „Organisierte Kriminalität“ ermittelt wurde. Selbst nach dem siebten Mord an ausländischen Gewerbetreibenden in Deutschland wurde in Zeitungen noch öffentlich über angebliche Drogengeschäfte spekuliert. In der FAZ vom 18. Juni 2005 hieß es beispielsweise: „Spekuliert wird, ob Mafia-Killer aus dem internationalen Drogenmilieu hinter den Morden stecken – und vielleicht Abtrünnige mundtot machen wollen. Jedoch gibt es dafür keinerlei Beweise.“ diff --git a/content/schauplaetze/soko-halbmond-nuernberg/index.en.md b/content/schauplaetze/soko-halbmond-nuernberg/index.en.md new file mode 100644 index 0000000..4b658d6 --- /dev/null +++ b/content/schauplaetze/soko-halbmond-nuernberg/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Soko Halbmond" +date: 2013-07-10 +kategorien: ["Behörden"] +lat: 49.4494154 +lng: 11.0685264 +address: "Jakobsplatz 3, 90402 Nürnberg" +datum: "10.7.2013" +quelle: "Schlussbericht des bayerischen NSU-Untersuchungsausschusses vom 10.7.2013, Bayerischer Landtag, 16. Wahlperiode Drucksache 16/17740, S. 92, S. 98, S. 138 Internetseite: https://www.bayern.landtag.de/fileadmin/images/content/NEU_Drs_16-17740_NSU_FINAL_18072013.pdf [Aufruf 7.9.2021] https://www.nordbayern.de/region/nuernberg/trauertag-vor-zehn-jahren-totete-der-nsu-ismail-yasar-1.4431151 [Aufruf 7.9.2021] https://www.faz.net/aktuell/gesellschaft/kriminalitaet/kriminalitaet-soko-halbmond-mordserie-gibt-polizei-raetsel-auf-12" +--- +On 12 September 2001, the "Soko Halbmond" was established in Nuremberg. The task force was based at the Police Headquarters of Mittelfranken, Nuremberg Criminal Investigation Division. According to the Bavarian NSU Committee of Inquiry, this was where "the Bavarian cases [...] were bundled together as a coordination office and aligned with the special task force in Hamburg." By the time "Soko Halbmond" was founded, four people had already been murdered with the same weapon. All four were of Turkish origin. While neo-Nazis were ruled out as potential perpetrators, the victims were publicly discredited as drug dealers, as investigations focused exclusively on "organized crime." Even after the seventh murder of a foreign business owner in Germany, newspapers continued to publicly speculate about alleged drug deals. The FAZ of 18 June 2005, for example, stated: "There is speculation as to whether mafia killers from the international drug scene are behind the murders — perhaps seeking to silence defectors. However, there is no evidence whatsoever for this." diff --git a/content/schauplaetze/sprengstoffanschlag-koeln/index.de.md b/content/schauplaetze/sprengstoffanschlag-koeln/index.de.md new file mode 100644 index 0000000..082e875 --- /dev/null +++ b/content/schauplaetze/sprengstoffanschlag-koeln/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Sprengstoffanschlag" +date: 2001-01-19 +kategorien: ["Anschläge"] +lat: 50.9451917 +lng: 6.9462928 +address: "Probsteigasse 44-46, 50670 Köln" +datum: "19.01.2001" +quelle: "https://www.bpb.de/politik/extremismus/rechtsextremismus/172933/interaktive-grafik-die-taten-des-nsu Röpke/ Speit (2013): Blut und Ehre. Geschichte und Gegenwart rechter Gewalt in Deutschland. Berlin: Christoph Links Verlag" +--- +Zwischen dem 19. und 21. Dezember 2000 wird eine mit etwa einem Kilogramm Schwarzpulver befüllte Gasdruckflasche in einem Lebensmittelgeschäft iranischer Staatsangehöriger in der Kölner Altstadt deponiert. Die Bombe befindet sich in einer Christstollendose. Mundlos oder Böhnhardt geben sich als Kunden aus und lassen die Dose im Laden zurück, um angeblich den vergessenen Geldbeutel zu holen. Einen Monat später, am 19. Januar 2001, öffnet die 19- jährige Tochter des Ladeninhabers, Mashia M., die Dose. Sie erleidet durch die Explosion schwere Verletzungen. diff --git a/content/schauplaetze/sprengstoffanschlag-koeln/index.en.md b/content/schauplaetze/sprengstoffanschlag-koeln/index.en.md new file mode 100644 index 0000000..7952bbb --- /dev/null +++ b/content/schauplaetze/sprengstoffanschlag-koeln/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Bomb Attack" +date: 2001-01-19 +kategorien: ["Anschläge"] +lat: 50.9451917 +lng: 6.9462928 +address: "Probsteigasse 44-46, 50670 Köln" +datum: "19.01.2001" +quelle: "https://www.bpb.de/politik/extremismus/rechtsextremismus/172933/interaktive-grafik-die-taten-des-nsu Röpke/ Speit (2013): Blut und Ehre. Geschichte und Gegenwart rechter Gewalt in Deutschland. Berlin: Christoph Links Verlag" +--- +Between 19 and 21 December 2000, a gas cylinder filled with about one kilogram of black powder was planted in a grocery store owned by Iranian nationals in Cologne's old town. The bomb was concealed inside a Christmas stollen tin. Mundlos or Böhnhardt posed as customers and left the tin behind in the shop, claiming they would return for a forgotten wallet. A month later, on 19 January 2001, the shop owner's 19-year-old daughter, Mashia M., opened the tin. She suffered severe injuries from the explosion. diff --git a/content/schauplaetze/stadion-bombe-jena/cover.jpg b/content/schauplaetze/stadion-bombe-jena/cover.jpg new file mode 100644 index 0000000..b8ba8cb --- /dev/null +++ b/content/schauplaetze/stadion-bombe-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:623a5f5190948fd2db1fe7d27e9f2394fa9f9130ae56ce552ae8f9654040d110 +size 269622 diff --git a/content/schauplaetze/stadion-bombe-jena/index.de.md b/content/schauplaetze/stadion-bombe-jena/index.de.md new file mode 100644 index 0000000..6c88df2 --- /dev/null +++ b/content/schauplaetze/stadion-bombe-jena/index.de.md @@ -0,0 +1,14 @@ +--- +title: "„Stadion-Bombe“" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1996-09-30 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.91675 +lng: 11.58305 +address: "Oberaue 3, 07745 Jena" +datum: "30.9.1996" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 51." +--- +Am 30.9.1996 ging bei der Polizei eine anonyme Bombendrohung ein: Im Ernst-Abbe-Sportfeld in der Stadtrodaer Straße 1 sei ein Sprengsatz deponiert. 22 Minuten zuvor hatte das Fußballspiel FC Carl Zeiss  gegen Eintracht Frankfurt (2. Bundesliga) begonnen, das im Fernsehen übertragen wurde. Die sofort eingeleitete Suche nach dem Gegenstand verlief ergebnislos. Die Polizei entschied, das Spiel dennoch nicht abzubrechen. Erst Tage später, am 6.10.1996, wurde unter dem Gäste-Block E, verborgen in einer Hochsprungmatte, eine rot angestrichene Holzkiste, versehen mit einem schwarzen Hakenkreuz auf rundem weißen Grund und der Aufschrift „Bombe“, entdeckt. Sie enthielt einen mit Granit gefüllten 20-Liter-Kanister und ein Rohrstück. Die Staatsanwaltschaft Gera leitete ein Ermittlungsverfahren ein, in dessen Verlauf der Beschuldigtenkreis um Böhnhardt, Mundlos und Zschäpe sowie Andre K. und Ralf w. erweitert wurde. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/stadion-bombe-jena/index.en.md b/content/schauplaetze/stadion-bombe-jena/index.en.md new file mode 100644 index 0000000..dbcc52a --- /dev/null +++ b/content/schauplaetze/stadion-bombe-jena/index.en.md @@ -0,0 +1,14 @@ +--- +title: "\"Stadium Bomb\"" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1996-09-30 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.91675 +lng: 11.58305 +address: "Oberaue 3, 07745 Jena" +datum: "30.9.1996" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 51." +--- +On 30 September 1996, an anonymous bomb threat was phoned in to the police: an explosive device had allegedly been placed at the Ernst-Abbe-Sportfeld on Stadtrodaer Straße 1. The football match between FC Carl Zeiss and Eintracht Frankfurt (2. Bundesliga), which was being broadcast live on television, had begun 22 minutes earlier. The search for the object, launched immediately, was unsuccessful. The police nevertheless decided not to call off the match. Only days later, on 6 October 1996, a red-painted wooden box was discovered hidden in a high-jump mat beneath the away supporters' block E, marked with a black swastika on a round white background and the inscription "Bombe" ("bomb"). It contained a 20-liter canister filled with granite and a piece of pipe. The Gera public prosecutor's office opened an investigation, in the course of which the circle of suspects was expanded to include Böhnhardt, Mundlos and Zschäpe, as well as Andre K. and Ralf W. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/szenetreffpunkt-gaststaette-heilsberg-remda-teichel/index.de.md b/content/schauplaetze/szenetreffpunkt-gaststaette-heilsberg-remda-teichel/index.de.md new file mode 100644 index 0000000..2df560f --- /dev/null +++ b/content/schauplaetze/szenetreffpunkt-gaststaette-heilsberg-remda-teichel/index.de.md @@ -0,0 +1,12 @@ +--- +title: "Szenetreffpunkt Gaststätte „Heilsberg“" +date: 2021-04-01 +kategorien: ["Aufenthaltsorte"] +lat: 50.7664389 +lng: 11.2644144 +address: "Große Gasse 2, 07407 Remda-Teichel" +quelle: "Dirk Laabs (2017): „Wir arbeiten weiter“ – Der „Nationalsozialistische Untergrund“ in Sachsen. Online unter: https://www.nsu-watch.info/2017/06/wir-arbeiten-weiter-der-nationalsozialistische-untergrund-in-sachsen/ Röpke/ Speit (2013): Blut und Ehre. Geschichte und Gegenwart rechter Gewalt in Deutschland. Berlin: Christoph Links Verlag, S. 123-125" +--- +Die ehemalige Gaststätte „Heilsberg“ wurde ab Frühjahr 1997 zur überregionalen Anlaufstelle für Neonazis und zum regelmäßigen Treffpunkt für Mitglieder des Thüringer Heimatschutz. Der Thüringer Heimatschutz ist ein neonazistisches Netzwerk, dass länderübergreifend ausgerichtet ist und einen engen Kontakt zu den Blood&Honour Strukturen pflegte. Zu den Aktivitäten, die dem Thüringer Heimatschutz zugrechnet werden, zählen sowohl öffentliche Aktionen als auch das Verschicken von zahlreichen Bombenattrappen und das Ablegen von Sprengsätzen. Bei einer Durchsuchung der Gaststätte 1997 wurde das bis dahin größte Waffenlager Thüringens gefunden. + +Auch Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe hatten sich als „Sektion Jena“ dem Thüringer Heimatschutz angeschlossen. Nach ihrer Flucht aus Jena und dem beginnenden Leben in der Illegalität wurde in der Gaststätte noch ein Konzert veranstaltet, bei dem 700 DM für die Drei gesammelt wurden. diff --git a/content/schauplaetze/szenetreffpunkt-gaststaette-heilsberg-remda-teichel/index.en.md b/content/schauplaetze/szenetreffpunkt-gaststaette-heilsberg-remda-teichel/index.en.md new file mode 100644 index 0000000..52ceb10 --- /dev/null +++ b/content/schauplaetze/szenetreffpunkt-gaststaette-heilsberg-remda-teichel/index.en.md @@ -0,0 +1,12 @@ +--- +title: "Scene Meeting Point: \"Heilsberg\" Restaurant" +date: 2021-04-01 +kategorien: ["Aufenthaltsorte"] +lat: 50.7664389 +lng: 11.2644144 +address: "Große Gasse 2, 07407 Remda-Teichel" +quelle: "Dirk Laabs (2017): „Wir arbeiten weiter“ – Der „Nationalsozialistische Untergrund“ in Sachsen. Online unter: https://www.nsu-watch.info/2017/06/wir-arbeiten-weiter-der-nationalsozialistische-untergrund-in-sachsen/ Röpke/ Speit (2013): Blut und Ehre. Geschichte und Gegenwart rechter Gewalt in Deutschland. Berlin: Christoph Links Verlag, S. 123-125" +--- +From spring 1997, the former "Heilsberg" restaurant became a nationwide meeting point for neo-Nazis and a regular gathering place for members of the Thüringer Heimatschutz. The Thüringer Heimatschutz is a neo-Nazi network operating across state lines, which maintained close contact with the Blood & Honour structures. Activities attributed to the Thüringer Heimatschutz include both public actions and the mailing of numerous fake bombs as well as the planting of explosive devices. During a search of the restaurant in 1997, the largest weapons cache found in Thuringia up to that point was discovered there. + +Uwe Böhnhardt, Uwe Mundlos and Beate Zschäpe had also joined the Thüringer Heimatschutz as the "Sektion Jena." After their flight from Jena and the start of their life underground, a concert was still held at the restaurant, at which 700 DM was collected for the three of them. diff --git a/content/schauplaetze/tennisclub-grossgruendlach-e-v-nuernberg/index.de.md b/content/schauplaetze/tennisclub-grossgruendlach-e-v-nuernberg/index.de.md new file mode 100644 index 0000000..5c1dec0 --- /dev/null +++ b/content/schauplaetze/tennisclub-grossgruendlach-e-v-nuernberg/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Tennisclub Großgründlach e.V." +date: 2013-09-24 +kategorien: ["Aufenthaltsorte", "Unterstützende"] +lat: 49.521811 +lng: 11.0101503 +address: "Würzburger Straße 63, 90427 Nürnberg" +datum: "24.09.2013" +quelle: "NSU-Prozess, Protokoll des 38. Verhandlungstags am 24.09.2013, veröffentlicht am 25.09.2013 auf der www.nsu-watch.info, Internetseite: https://www.nsu-watch.info/2013/09/protokoll-38-verhandlungstag-24-sept-2013/ [Aufruf 08.09.2021] „Mandy S. war auch in der fränkischen Neonazi-Szene aktiv“, nordbayern.de vom 08.12.2017, Internet: https://www.nordbayern.de/region/mandy-s-war-auch-in-der-frankischen-neonazi-szene-aktiv-1.6966580 [Aufruf 07.09.2021] Zeugenaussage von Mandy S. im NSU-Prozess München am 11.03.2014, Internetseite: https://www.nsu-watch.info/2014/03/protokoll-89-verhandlungstag-26-februar-2014/ [Aufruf 07.09.2021] Zeugenaussage von Mandy S. im NSU-Prozess München am 27.02.2014, Internetseite: https://www.nsu-watch.info/2014/03/protokoll-90-verhandlungstag-27-februar-2014/ [Aufruf 07.09.2021] Zeugenaussage von Mandy S. im NSU-Prozess München am 10.04.2014, Internetseite: https://www.nsu-watch.info/2014/04/protokoll-105-verhandlungstag-10-april-2014/ [Aufruf 07.09.2021] Deutscher Bundestag, 19. Wahlperiode: Antwort der Bundesregierung auf die Kleine Anfrage der Abgeordneten Martina Renner, Dr. André Hahn, Gökay Akbulut, weiterer Abgeordneter und der Fraktion DIE LINKE. Drucksache 19/6749 – Aktueller Stand laufender Ermittlungsverfahren im Zusammenhang mit Unterstützungshandlungen für den „Nationalsozialistischen Untergrund“ und Aktivitäten bereits verurteilter NSU-Helfer vom 18.01.2019, Internetseite: https://dserver.bundestag.de/btd/19/071/1907165.pdf [Aufruf 08.09.2021]" +--- +Beate Zschäpe benutzte einen gefälschten „Mitgliedsausweis“ des „Tennisclub Großgründlach e.V.“ in der Würzburger Str. 63 in Nürnberg. Der Ausweis war mit einem Foto von Beate Zschäpe mit getönter Brille versehen. Der Tarnname von Zschäpe war Mandy S.; als Tarnadresse wurde die Adresse von Mandy S. in der Glückaufsiedlung im sächsischen Erla angegeben. Mandy S. war eine aus Sachsen stammende Neonazistin. Sie lebte von 2002 bis 2003 in Büchenbach im Landkreis Roth nahe Nürnberg und unterhielt Kontakte zur fränkischen Neonaziszene und zum NSU-Umfeld. Unter anderem organisierte Mandy S. dem späteren NSU-Trio nach seiner Flucht Ende Januar 1998 einen Unterschlupf in einer Wohnung in Chemnitz. Beate Zschäpe verwendete den Namen von Mandy S. in verschiedenen Dokumenten als Tarnnamen. Gegen Mandy S, die nicht mehr in Franken lebt, läuft im Zusammenhang mit den NSU-Verbrechen seit Jahren ein Ermittlungsverfahren wegen des Verdachts der Unterstützung einer terroristischen Vereinigung. diff --git a/content/schauplaetze/tennisclub-grossgruendlach-e-v-nuernberg/index.en.md b/content/schauplaetze/tennisclub-grossgruendlach-e-v-nuernberg/index.en.md new file mode 100644 index 0000000..c33717c --- /dev/null +++ b/content/schauplaetze/tennisclub-grossgruendlach-e-v-nuernberg/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Tennisclub Großgründlach e.V." +date: 2013-09-24 +kategorien: ["Aufenthaltsorte", "Unterstützende"] +lat: 49.521811 +lng: 11.0101503 +address: "Würzburger Straße 63, 90427 Nürnberg" +datum: "24.09.2013" +quelle: "NSU-Prozess, Protokoll des 38. Verhandlungstags am 24.09.2013, veröffentlicht am 25.09.2013 auf der www.nsu-watch.info, Internetseite: https://www.nsu-watch.info/2013/09/protokoll-38-verhandlungstag-24-sept-2013/ [Aufruf 08.09.2021] „Mandy S. war auch in der fränkischen Neonazi-Szene aktiv“, nordbayern.de vom 08.12.2017, Internet: https://www.nordbayern.de/region/mandy-s-war-auch-in-der-frankischen-neonazi-szene-aktiv-1.6966580 [Aufruf 07.09.2021] Zeugenaussage von Mandy S. im NSU-Prozess München am 11.03.2014, Internetseite: https://www.nsu-watch.info/2014/03/protokoll-89-verhandlungstag-26-februar-2014/ [Aufruf 07.09.2021] Zeugenaussage von Mandy S. im NSU-Prozess München am 27.02.2014, Internetseite: https://www.nsu-watch.info/2014/03/protokoll-90-verhandlungstag-27-februar-2014/ [Aufruf 07.09.2021] Zeugenaussage von Mandy S. im NSU-Prozess München am 10.04.2014, Internetseite: https://www.nsu-watch.info/2014/04/protokoll-105-verhandlungstag-10-april-2014/ [Aufruf 07.09.2021] Deutscher Bundestag, 19. Wahlperiode: Antwort der Bundesregierung auf die Kleine Anfrage der Abgeordneten Martina Renner, Dr. André Hahn, Gökay Akbulut, weiterer Abgeordneter und der Fraktion DIE LINKE. Drucksache 19/6749 – Aktueller Stand laufender Ermittlungsverfahren im Zusammenhang mit Unterstützungshandlungen für den „Nationalsozialistischen Untergrund“ und Aktivitäten bereits verurteilter NSU-Helfer vom 18.01.2019, Internetseite: https://dserver.bundestag.de/btd/19/071/1907165.pdf [Aufruf 08.09.2021]" +--- +Beate Zschäpe used a forged "membership card" of the "Tennisclub Großgründlach e.V." at Würzburger Str. 63 in Nürnberg. The card bore a photo of Beate Zschäpe wearing tinted glasses. Zschäpe's cover name was Mandy S.; the address given as her cover address was that of Mandy S. in the Glückaufsiedlung in Erla, Saxony. Mandy S. was a neo-Nazi originally from Saxony. From 2002 to 2003 she lived in Büchenbach in the district of Roth near Nürnberg and maintained contacts with the Franconian neo-Nazi scene and the NSU's circle. Among other things, Mandy S. arranged a hideout for the later NSU trio in an apartment in Chemnitz after their flight at the end of January 1998. Beate Zschäpe used the name of Mandy S. as a cover name in various documents. Mandy S., who no longer lives in Franconia, has for years been the subject of an ongoing criminal investigation in connection with the NSU crimes on suspicion of supporting a terrorist organization. diff --git a/content/schauplaetze/theaterhaus-bombe-jena/cover.jpg b/content/schauplaetze/theaterhaus-bombe-jena/cover.jpg new file mode 100644 index 0000000..382223b --- /dev/null +++ b/content/schauplaetze/theaterhaus-bombe-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3a0817aba9dcbd8fa2c51f845807d973c4292575ee0217af2baa4b2cda84507 +size 178596 diff --git a/content/schauplaetze/theaterhaus-bombe-jena/index.de.md b/content/schauplaetze/theaterhaus-bombe-jena/index.de.md new file mode 100644 index 0000000..c86b872 --- /dev/null +++ b/content/schauplaetze/theaterhaus-bombe-jena/index.de.md @@ -0,0 +1,12 @@ +--- +title: "Theaterhaus-Bombe" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1997-09-02 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.92553 +lng: 11.58342 +address: "Schillergäßchen 1, 07745 Jena" +datum: "2.9.1997" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 54 Aust/ Laabs, Heimatschutz, S. 240 f." +--- +Am 2.9.1997 fanden spielende Kinder auf dem Theatervorplatz im Schillergässchen einen rot lackierten Koffer mit einem auf weißen Untergrund aufgemalten schwarzen Hakenkreuz. Am 4.0.1997 meldete ein Theatertechniker der Polizei, dass der Koffer, den man für eine Requisite hielt, im Theater stehe. Als ein Ermittler des LKA erfuhr im Theater, dass der Koffer mit einem Streifenwagen zur Polizeidirektion gebracht worden war, ohne Spurensicherung. Bei der Untersuchung schlug ein Sprengstoffhund an. Der Koffer enthielt eine in eine Plastiktüte eingewickelte Rohrbombe mit 10 bis 12 Gramm gelben Pulvers (TNT), jedoch keinen Zünder. Die Staatsanwaltschaft Gera ermittelte gegen Böhnhardt, Mundlos und Zschäpe sowie Andre K., Ralf W. und H. Bei der Durchsuchung der Wohnung von H. wurde eine Rohrbombe gefunden.  Nach Einschätzung des LKA sei die Bombe gefährlich gewesen, da sie zwar nicht zündfähig, jedoch explosionsfähig war. diff --git a/content/schauplaetze/theaterhaus-bombe-jena/index.en.md b/content/schauplaetze/theaterhaus-bombe-jena/index.en.md new file mode 100644 index 0000000..4a186df --- /dev/null +++ b/content/schauplaetze/theaterhaus-bombe-jena/index.en.md @@ -0,0 +1,12 @@ +--- +title: "Theaterhaus Bomb" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1997-09-02 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.92553 +lng: 11.58342 +address: "Schillergäßchen 1, 07745 Jena" +datum: "2.9.1997" +quelle: "Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 54 Aust/ Laabs, Heimatschutz, S. 240 f." +--- +On September 2, 1997, children playing in front of the theater in the Schillergässchen found a red-lacquered suitcase with a black swastika painted on a white background. On September 4, 1997, a theater technician reported to the police that the suitcase, which had been taken for a stage prop, was standing in the theater. When an investigator from the State Criminal Police Office (LKA) learned at the theater that the suitcase had been taken to police headquarters in a patrol car without any forensic examination at the scene. During the examination, an explosives-detection dog alerted. The suitcase contained a pipe bomb wrapped in a plastic bag with 10 to 12 grams of yellow powder (TNT), but no detonator. The Gera public prosecutor's office investigated Böhnhardt, Mundlos, and Zschäpe, as well as Andre K., Ralf W., and H. During a search of H.'s apartment, a pipe bomb was found. According to the LKA's assessment, the bomb had been dangerous, since although it was not capable of detonating, it was capable of exploding. diff --git a/content/schauplaetze/todesliste-jena/index.de.md b/content/schauplaetze/todesliste-jena/index.de.md new file mode 100644 index 0000000..f4fd1a0 --- /dev/null +++ b/content/schauplaetze/todesliste-jena/index.de.md @@ -0,0 +1,13 @@ +--- +title: "Todesliste" +date: 2011-12-14 +kategorien: ["Sonstiges"] +lat: 50.9282049 +lng: 11.5880582 +address: "Markt, 07743 Jena" +datum: "14.12.2011" +quelle: "OTZ Jena, 14.12.2011." +--- +Im Dezember 2011 informierte das LKA Thüringen Karin K., Abgeordnete der Linken im Jenaer Stadtrat sowie im Thüringer Landtag, dass sie mit Adresse und Telefonnummer des Parteibüros auf einer „Todesliste“ stehe, die das Jenaer Trio zusammengetragen habe. Die Abgeordnete war in den vergangenen Jahren mehrfach von Neonazis fotografiert und gefilmt worden. Sie sei, so habe ihr ein stadtbekannter Jenaer Neonazis erklärt, „für ein neues Konzentrationslager und den nächsten Autobahnbau“ vorgesehen. Zudem habe es mehrere Einbruchsversuche in das Büro der Linken in Jena gegeben. + +(Text: Frank Döbert) diff --git a/content/schauplaetze/todesliste-jena/index.en.md b/content/schauplaetze/todesliste-jena/index.en.md new file mode 100644 index 0000000..e5baa13 --- /dev/null +++ b/content/schauplaetze/todesliste-jena/index.en.md @@ -0,0 +1,13 @@ +--- +title: "Death List" +date: 2011-12-14 +kategorien: ["Sonstiges"] +lat: 50.9282049 +lng: 11.5880582 +address: "Markt, 07743 Jena" +datum: "14.12.2011" +quelle: "OTZ Jena, 14.12.2011." +--- +In December 2011, the Thuringia State Criminal Police Office (LKA) informed Karin K., a member of the Left Party in the Jena city council and in the Thuringian state parliament, that she appeared with the address and phone number of the party office on a "death list" that the Jena trio had compiled. In previous years, the councilwoman had repeatedly been photographed and filmed by neo-Nazis. According to a neo-Nazi well known in Jena, she had been earmarked "for a new concentration camp and the next stretch of highway to be built." In addition, there had been several attempted break-ins at the Left Party office in Jena. + +(Text: Frank Döbert) diff --git a/content/schauplaetze/trauerdemonstration-kein-10-opfer-in-dortmund-dortmund/index.de.md b/content/schauplaetze/trauerdemonstration-kein-10-opfer-in-dortmund-dortmund/index.de.md new file mode 100644 index 0000000..7e12834 --- /dev/null +++ b/content/schauplaetze/trauerdemonstration-kein-10-opfer-in-dortmund-dortmund/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Trauerdemonstration „Kein 10.Opfer“ in Dortmund" +date: 2006-06-13 +kategorien: ["Widerstand"] +lat: 51.5182198 +lng: 7.4589798 +address: "Königswall 15, 44137 Dortmund" +datum: "13.06.2006" +quelle: "https://taz.de/!420305/" +--- +Die Demonstration „Kein 10. Opfer“ wurde von den Familien und Freund:innen der NSU-Opfer organisiert. Sie fand am 6. Mai 2006 in Kassel und im Juni 2006 in Dortmund statt. Kurz zuvor wurden Halit Yozgat am 6. April 2006 und Mehmet Kubaşık am 4. April 2006 ermordet. In Dortmund geht die Trauerdemonstration mit 200 Demonatrant:innen von dem Kiosk in der Mallinckrodtstraße 190, den Mehmet Kubaşık betrieben hat bis zu einer Kundgebung am Hauptbahnhof. „Stoppt die Mörder“, steht unter dem Bild von Mehmet Kubaşık, „9. Opfer – Wir wollen kein 10. Opfer“ und „Wo ist die Polizei?“. diff --git a/content/schauplaetze/trauerdemonstration-kein-10-opfer-in-dortmund-dortmund/index.en.md b/content/schauplaetze/trauerdemonstration-kein-10-opfer-in-dortmund-dortmund/index.en.md new file mode 100644 index 0000000..1f57dca --- /dev/null +++ b/content/schauplaetze/trauerdemonstration-kein-10-opfer-in-dortmund-dortmund/index.en.md @@ -0,0 +1,11 @@ +--- +title: "\"No 10th Victim\" Memorial Demonstration in Dortmund" +date: 2006-06-13 +kategorien: ["Widerstand"] +lat: 51.5182198 +lng: 7.4589798 +address: "Königswall 15, 44137 Dortmund" +datum: "13.06.2006" +quelle: "https://taz.de/!420305/" +--- +The demonstration "No 10th Victim" was organized by the families and friends of the NSU victims. It took place on May 6, 2006 in Kassel and in June 2006 in Dortmund. Shortly before, Halit Yozgat had been murdered on April 6, 2006, and Mehmet Kubaşık on April 4, 2006. In Dortmund, the memorial demonstration, with 200 participants, proceeded from the kiosk at Mallinckrodtstraße 190, which Mehmet Kubaşık had run, to a rally at the main train station. "Stop the murderers" appeared beneath the picture of Mehmet Kubaşık, along with "9th victim – We don't want a 10th victim" and "Where is the police?" diff --git a/content/schauplaetze/trauerdemonstration-kein-10-opfer-in-kassel-kassel/index.de.md b/content/schauplaetze/trauerdemonstration-kein-10-opfer-in-kassel-kassel/index.de.md new file mode 100644 index 0000000..e041907 --- /dev/null +++ b/content/schauplaetze/trauerdemonstration-kein-10-opfer-in-kassel-kassel/index.de.md @@ -0,0 +1,10 @@ +--- +title: "Trauerdemonstration „Kein 10.Opfer“ in Kassel" +date: 2006-05-06 +kategorien: ["Widerstand"] +lat: 51.3120764 +lng: 9.4923868 +address: "Obere Königsstraße 8, 34117 Kassel" +datum: "06.05.2006" +--- +Die Demonstration „Kein 10. Opfer“ wurde von den Familien und Freund:innen der NSU-Opfer organisiert. Sie fand am 6. Mai 2006 in Kassel und im Juni 2006 in Dortmund statt. Kurz zuvor wurden Halit Yozgat am 6. April 2006 und Mehmet Kubaşık am 4. April 2006 ermordet. In Kassel führte die Route aus der Nähe des Internet-Cafés der Familie Yozgat zum Kasseler Rathaus. Mit den Transparenten und in Redebeiträgen forderten die rund 4000 Teilnehmer:innen die Politik und die Öffentlichkeit auf, die rassistischen Muster hinter den Taten zu erkennen und nach den Täter:innen zu suchen. diff --git a/content/schauplaetze/trauerdemonstration-kein-10-opfer-in-kassel-kassel/index.en.md b/content/schauplaetze/trauerdemonstration-kein-10-opfer-in-kassel-kassel/index.en.md new file mode 100644 index 0000000..20af3f4 --- /dev/null +++ b/content/schauplaetze/trauerdemonstration-kein-10-opfer-in-kassel-kassel/index.en.md @@ -0,0 +1,10 @@ +--- +title: "\"No 10th Victim\" Memorial Demonstration in Kassel" +date: 2006-05-06 +kategorien: ["Widerstand"] +lat: 51.3120764 +lng: 9.4923868 +address: "Obere Königsstraße 8, 34117 Kassel" +datum: "06.05.2006" +--- +The demonstration "No 10th Victim" was organized by the families and friends of the NSU victims. It took place on May 6, 2006 in Kassel and in June 2006 in Dortmund. Shortly before, Halit Yozgat had been murdered on April 6, 2006, and Mehmet Kubaşık on April 4, 2006. In Kassel, the route led from near the Yozgat family's internet café to Kassel City Hall. With banners and speeches, the roughly 4,000 participants called on politicians and the public to recognize the racist pattern behind the crimes and to search for the perpetrators. diff --git a/content/schauplaetze/treffpunkt-kneipe-suedblick-chemnitz/index.de.md b/content/schauplaetze/treffpunkt-kneipe-suedblick-chemnitz/index.de.md new file mode 100644 index 0000000..0825b44 --- /dev/null +++ b/content/schauplaetze/treffpunkt-kneipe-suedblick-chemnitz/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Treffpunkt Kneipe „Südblick“" +subtitle: "Uwe Mundlos, Uwe Böhnhardt, Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Aufenthaltsorte", "Unterstützende"] +lat: 50.7921725 +lng: 12.8836074 +address: "Max-Türpe-Straße, 09122 Chemnitz" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.25" +--- +Die 1993 geschlossene Kneipe „Südblick“ war regelmäßiger Aufenthaltsort von Uwe Böhnhardt, Uwe Mundlos und Beate Zschäpe. Sie trafen sich dort mit vielen ihrer Unterstützer:innen und Akteur:innen der Chemnitzer Neonaziszene, u.a. Thomas R., Herausgeber des Fanzines „White Supremacy“, Thomas S., Mandy S. André E.. Die Kneipe befand sich im Heckert-Gebiet in Chemnitz, dass von vielen Neonazis als „national befreite Zone“ deklariert wurde. diff --git a/content/schauplaetze/treffpunkt-kneipe-suedblick-chemnitz/index.en.md b/content/schauplaetze/treffpunkt-kneipe-suedblick-chemnitz/index.en.md new file mode 100644 index 0000000..8599173 --- /dev/null +++ b/content/schauplaetze/treffpunkt-kneipe-suedblick-chemnitz/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Meeting Point: Pub „Südblick“" +subtitle: "Uwe Mundlos, Uwe Böhnhardt, Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Aufenthaltsorte", "Unterstützende"] +lat: 50.7921725 +lng: 12.8836074 +address: "Max-Türpe-Straße, 09122 Chemnitz" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.25" +--- +The pub „Südblick“, which closed in 1993, was a regular meeting point for Uwe Böhnhardt, Uwe Mundlos and Beate Zschäpe. There they met with many of their supporters and figures from the Chemnitz neo-Nazi scene, including Thomas R., publisher of the fanzine „White Supremacy“, Thomas S., Mandy S. and André E. The pub was located in the Heckert district of Chemnitz, which many neo-Nazis declared a „nationally liberated zone“. diff --git a/content/schauplaetze/ueberfall-auf-edeka-markt-chemnitz/cover.jpg b/content/schauplaetze/ueberfall-auf-edeka-markt-chemnitz/cover.jpg new file mode 100644 index 0000000..8bd95bb --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-edeka-markt-chemnitz/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f08db15895208c5f7c9826a353c024e931dbfb65437f5cf9a6678d73b0b8fb1 +size 141525 diff --git a/content/schauplaetze/ueberfall-auf-edeka-markt-chemnitz/index.de.md b/content/schauplaetze/ueberfall-auf-edeka-markt-chemnitz/index.de.md new file mode 100644 index 0000000..47f7c5a --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-edeka-markt-chemnitz/index.de.md @@ -0,0 +1,12 @@ +--- +title: "Überfall auf Edeka-Markt" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.8139665 +lng: 12.8967205 +address: "Irkutsker Straße 1, 09119 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +1998 fand der erste bekannte Raubüberfall des NSU statt. Mundlos + +und Böhnhardt überfielen dabei einen Chemnitzer Supermarkt und flohen mit einer Beute in Höhe von 30.000 DM. Auf der Flucht schossen sie geziehlt auf Brust und Kopf eines Jugendlichen, als dieser die Verfolgung aufnahm. Die Kugeln verfehlten ihn nur knapp. diff --git a/content/schauplaetze/ueberfall-auf-edeka-markt-chemnitz/index.en.md b/content/schauplaetze/ueberfall-auf-edeka-markt-chemnitz/index.en.md new file mode 100644 index 0000000..3c65aaf --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-edeka-markt-chemnitz/index.en.md @@ -0,0 +1,12 @@ +--- +title: "Robbery of an Edeka Supermarket" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.8139665 +lng: 12.8967205 +address: "Irkutsker Straße 1, 09119 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +In 1998, the NSU's first known robbery took place. Mundlos + +and Böhnhardt robbed a Chemnitz supermarket and fled with loot amounting to 30,000 DM. While fleeing, they deliberately shot at the chest and head of a young man who had given chase. The bullets narrowly missed him. diff --git a/content/schauplaetze/ueberfall-auf-postbank-chemnitz-2/cover.jpg b/content/schauplaetze/ueberfall-auf-postbank-chemnitz-2/cover.jpg new file mode 100644 index 0000000..234d3c2 --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-postbank-chemnitz-2/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:056549a256b1ca3fa8abeb905d96a9a1355597437f2a7ae1573a763e5d693b17 +size 222812 diff --git a/content/schauplaetze/ueberfall-auf-postbank-chemnitz-2/index.de.md b/content/schauplaetze/ueberfall-auf-postbank-chemnitz-2/index.de.md new file mode 100644 index 0000000..0f2ffd1 --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-postbank-chemnitz-2/index.de.md @@ -0,0 +1,13 @@ +--- +title: "Überfall auf Postbank" +subtitle: "Uwe Böhnhardt, Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.8356389 +lng: 12.9005264 +address: "Barbarossastraße 71, 09112 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Mundlos und Böhnhardt überfallen eine Filiale der Postbank in Chemnitz und + +erbeuten 5.700 DM. diff --git a/content/schauplaetze/ueberfall-auf-postbank-chemnitz-2/index.en.md b/content/schauplaetze/ueberfall-auf-postbank-chemnitz-2/index.en.md new file mode 100644 index 0000000..d42db3d --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-postbank-chemnitz-2/index.en.md @@ -0,0 +1,13 @@ +--- +title: "Robbery of a Postbank Branch" +subtitle: "Uwe Böhnhardt, Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.8356389 +lng: 12.9005264 +address: "Barbarossastraße 71, 09112 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Mundlos and Böhnhardt robbed a Postbank branch in Chemnitz and + +made off with 5,700 DM. diff --git a/content/schauplaetze/ueberfall-auf-postbank-chemnitz/cover.jpg b/content/schauplaetze/ueberfall-auf-postbank-chemnitz/cover.jpg new file mode 100644 index 0000000..82a9cc4 --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-postbank-chemnitz/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09683e61523f7958ac9652be00cf844dbfd11e957b5f75238738201de4c93c14 +size 412104 diff --git a/content/schauplaetze/ueberfall-auf-postbank-chemnitz/index.de.md b/content/schauplaetze/ueberfall-auf-postbank-chemnitz/index.de.md new file mode 100644 index 0000000..4340efd --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-postbank-chemnitz/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Überfall auf Postbank" +subtitle: "Uwe Böhnhardt, Uwe Mundos" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.78696 +lng: 12.88566 +address: "Johannes-Dick-Straße 4, 09123 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Am 30. November 2000 ereignet sich der vierte Raubüberfall, der dem NSU zugerechnet wird. Um 11:07 Uhr bedrohen zwei maskierte Personen in der Postfiliale in der Johannes-Dick-Straße 4 in Chemnitz zwei Angestellte mit Faustfeuerwaffen und forderen Geld. Die Beute beträgt insgesamt 38 900 DM. diff --git a/content/schauplaetze/ueberfall-auf-postbank-chemnitz/index.en.md b/content/schauplaetze/ueberfall-auf-postbank-chemnitz/index.en.md new file mode 100644 index 0000000..46e04d6 --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-postbank-chemnitz/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Robbery of a Postbank Branch" +subtitle: "Uwe Böhnhardt, Uwe Mundos" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.78696 +lng: 12.88566 +address: "Johannes-Dick-Straße 4, 09123 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +On 30 November 2000, the fourth robbery attributed to the NSU took place. At 11:07 a.m., two masked individuals threatened two employees with handguns at the post office branch at Johannes-Dick-Straße 4 in Chemnitz and demanded money. The total loot amounted to 38,900 DM. diff --git a/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-2/cover.jpg b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-2/cover.jpg new file mode 100644 index 0000000..ee6bd3e --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-2/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:909b7df3b2f11e52919735fe55a28e87ab9bce5a5d7072492ec9abec8b019cb1 +size 211591 diff --git a/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-2/index.de.md b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-2/index.de.md new file mode 100644 index 0000000..3904d8f --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-2/index.de.md @@ -0,0 +1,13 @@ +--- +title: "Überfall auf Sparkasse" +subtitle: "Uwe Böhnhardt, Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.8574059 +lng: 12.8874537 +address: "Sandstraße 37, 09114 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Am 18. Mai 2004 verübt der NSU einen bewaffneten Überfall auf eine Filiale der + +Chemnitzer Sparkasse. Diesmal erbeuteten die Täter 73.815 Euro. diff --git a/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-2/index.en.md b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-2/index.en.md new file mode 100644 index 0000000..ae38768 --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-2/index.en.md @@ -0,0 +1,13 @@ +--- +title: "Robbery of a Sparkasse Branch" +subtitle: "Uwe Böhnhardt, Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.8574059 +lng: 12.8874537 +address: "Sandstraße 37, 09114 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +On 18 May 2004, the NSU carried out an armed robbery of a branch of the + +Chemnitz Sparkasse. This time the perpetrators made off with 73,815 euros. diff --git a/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-3/cover.jpg b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-3/cover.jpg new file mode 100644 index 0000000..b000f78 --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-3/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91dfa791160ef80b5884f5dc984fcdfe2f2a1527e85bb5b1052363bac47107ed +size 203169 diff --git a/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-3/index.de.md b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-3/index.de.md new file mode 100644 index 0000000..9d291cd --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-3/index.de.md @@ -0,0 +1,17 @@ +--- +title: "Überfall auf Sparkasse" +subtitle: "Uwe Böhnhardt, Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.8022029 +lng: 12.8874619 +address: "Paul-Bertz-Straße 14, 09120 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Am 23. September 2003 überfallen Mundlos und Böhnhardt eine weitere Chemnitzer + +Sparkasse. Aufgrund einer Zeitschaltung lässt sich der Tresor jedoch nicht öffnen. + +Die Täter verletzten daraufhin zwei Bankangestellte und fliehen mit 435 Euro aus + +der Kasse. diff --git a/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-3/index.en.md b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-3/index.en.md new file mode 100644 index 0000000..f6321e5 --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-3/index.en.md @@ -0,0 +1,17 @@ +--- +title: "Robbery of a Sparkasse Branch" +subtitle: "Uwe Böhnhardt, Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.8022029 +lng: 12.8874619 +address: "Paul-Bertz-Straße 14, 09120 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +On 23 September 2003, Mundlos and Böhnhardt robbed another Chemnitz + +Sparkasse branch. However, due to a time lock, the safe could not be opened. + +The perpetrators then injured two bank employees and fled with 435 euros from + +the till. diff --git a/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-4/cover.jpg b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-4/cover.jpg new file mode 100644 index 0000000..f200d06 --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-4/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64b27df32ec321416bbc71f2a2f8e622a5e0d2bafa25e90a29c98f56a6be5b18 +size 198301 diff --git a/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-4/index.de.md b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-4/index.de.md new file mode 100644 index 0000000..0bbab92 --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-4/index.de.md @@ -0,0 +1,15 @@ +--- +title: "Überfall auf Sparkasse" +subtitle: "Uwe Böhnhardt, Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.8378551 +lng: 12.8814877 +address: "Albert-Schweitzer-Straße 62, 09116 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Am 14. Mai 2004 überfielen Mundlos und Böhnhardt eine Sparkassenfiliale in + +Chemnitz. Einer Angestellten schlugen sie dabei einen Gewehrkolben ins Gesicht. Die Täter flohen daraufhin mit 33.175 Euro und Reisechecks im Wert + +von 4.250 Euro. diff --git a/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-4/index.en.md b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-4/index.en.md new file mode 100644 index 0000000..1fa0f65 --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz-4/index.en.md @@ -0,0 +1,15 @@ +--- +title: "Robbery of a Sparkasse Branch" +subtitle: "Uwe Böhnhardt, Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.8378551 +lng: 12.8814877 +address: "Albert-Schweitzer-Straße 62, 09116 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +On 14 May 2004, Mundlos and Böhnhardt robbed a Sparkasse branch in + +Chemnitz. They struck an employee in the face with a rifle butt. The perpetrators then fled with 33,175 euros and travelers' checks worth + +4,250 euros. diff --git a/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz/cover.jpg b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz/cover.jpg new file mode 100644 index 0000000..ee6bd3e --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:909b7df3b2f11e52919735fe55a28e87ab9bce5a5d7072492ec9abec8b019cb1 +size 211591 diff --git a/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz/index.de.md b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz/index.de.md new file mode 100644 index 0000000..4cf6930 --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz/index.de.md @@ -0,0 +1,15 @@ +--- +title: "Überfall auf Sparkasse" +subtitle: "Uwe Böhnhardt, Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.8574059 +lng: 12.8874537 +address: "Sandstraße 37, 09114 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Im Herbst 2005 versuchten Mundlos und Böhnhardt ihr Glück erneut und überfielen + +die selbe Sparkassenfiliale auf der Sandstraße in Chemnitz. Sie hatten sie bereits 2003 ausgeraubt. Da ein Zeitschloss die Öffnung des Tresors verhinderte, flohen sie ohne + +Beute. diff --git a/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz/index.en.md b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz/index.en.md new file mode 100644 index 0000000..7a9c07c --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-sparkasse-chemnitz/index.en.md @@ -0,0 +1,15 @@ +--- +title: "Robbery of a Sparkasse Branch" +subtitle: "Uwe Böhnhardt, Uwe Mundlos" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.8574059 +lng: 12.8874537 +address: "Sandstraße 37, 09114 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +In autumn 2005, Mundlos and Böhnhardt tried their luck again and robbed + +the same Sparkasse branch on Sandstraße in Chemnitz. They had already robbed it in 2003. Since a time lock prevented the safe from being opened, they fled without + +any loot. diff --git a/content/schauplaetze/ueberfall-auf-sparkasse-zwickau/cover.jpg b/content/schauplaetze/ueberfall-auf-sparkasse-zwickau/cover.jpg new file mode 100644 index 0000000..171dfbf --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-sparkasse-zwickau/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b9557271c757e90773922abff4a5debd06c3a95af1203039af6d898eae60912 +size 234120 diff --git a/content/schauplaetze/ueberfall-auf-sparkasse-zwickau/index.de.md b/content/schauplaetze/ueberfall-auf-sparkasse-zwickau/index.de.md new file mode 100644 index 0000000..67809e7 --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-sparkasse-zwickau/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Überfall auf Sparkasse" +subtitle: "Uwe Mundlos, Uwe Böhnhardt" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.7357848 +lng: 12.5288749 +address: "Karl-Marx-Straße 10, 08066 Zwickau" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Am 25. September 2002 überfielen Mundlos und Böhnhardt eine Zwickauer Sparkasse und griffen dabei Menschen mit Reizgas an. Sie erbeuteten 48.500 DM. diff --git a/content/schauplaetze/ueberfall-auf-sparkasse-zwickau/index.en.md b/content/schauplaetze/ueberfall-auf-sparkasse-zwickau/index.en.md new file mode 100644 index 0000000..b35c2f2 --- /dev/null +++ b/content/schauplaetze/ueberfall-auf-sparkasse-zwickau/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Robbery of a Sparkasse Branch" +subtitle: "Uwe Mundlos, Uwe Böhnhardt" +date: 2021-04-01 +kategorien: ["Raubüberfälle"] +lat: 50.7357848 +lng: 12.5288749 +address: "Karl-Marx-Straße 10, 08066 Zwickau" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +On 25 September 2002, Mundlos and Böhnhardt robbed a Zwickau Sparkasse branch, attacking people with pepper spray in the process. They made off with 48,500 DM. diff --git a/content/schauplaetze/umzugshelfer-chemnitz/cover.jpg b/content/schauplaetze/umzugshelfer-chemnitz/cover.jpg new file mode 100644 index 0000000..01c49fa --- /dev/null +++ b/content/schauplaetze/umzugshelfer-chemnitz/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e26c5806a73ef77eb651e38bc792bd520d928e345d420775ffe3656f59edd3b +size 130453 diff --git a/content/schauplaetze/umzugshelfer-chemnitz/index.de.md b/content/schauplaetze/umzugshelfer-chemnitz/index.de.md new file mode 100644 index 0000000..b8c0ae8 --- /dev/null +++ b/content/schauplaetze/umzugshelfer-chemnitz/index.de.md @@ -0,0 +1,12 @@ +--- +title: "Umzugshelfer" +subtitle: "Uwe Böhnhardt" +date: 2021-04-01 +kategorien: ["Aufenthaltsorte"] +lat: 50.8280222 +lng: 12.9353732 +address: "Bernhardstraße 11, 09126 Chemnitz" +featured: true +quelle: "NSU Watch Sachsen, Bericht zum NSU-Untersuchungsausschuss, Sitzung 19 (15. Mai 2017). NSU Watch Sachsen, Bericht zum NSU-Untersuchungsausschuss, Sitzung 22." +--- +Eine Videoaufzeichnung vom 6. Mai 2000 zeigt Kai S. (damaliger Neonazi und Ex-Freund von Mandy S.) und einen weiteren Mann bei einem Umzug. Beide sollen Mandy S. beim Umzug geholfen haben. Das BKA identifizierte die unbekannte Person „mit Sicherheit“ als Uwe Böhnhardt und in einem weiteren Videoabschnitt wollen sie Beate Zschäpe erkannt haben. diff --git a/content/schauplaetze/umzugshelfer-chemnitz/index.en.md b/content/schauplaetze/umzugshelfer-chemnitz/index.en.md new file mode 100644 index 0000000..764645b --- /dev/null +++ b/content/schauplaetze/umzugshelfer-chemnitz/index.en.md @@ -0,0 +1,12 @@ +--- +title: "Moving Helpers" +subtitle: "Uwe Böhnhardt" +date: 2021-04-01 +kategorien: ["Aufenthaltsorte"] +lat: 50.8280222 +lng: 12.9353732 +address: "Bernhardstraße 11, 09126 Chemnitz" +featured: true +quelle: "NSU Watch Sachsen, Bericht zum NSU-Untersuchungsausschuss, Sitzung 19 (15. Mai 2017). NSU Watch Sachsen, Bericht zum NSU-Untersuchungsausschuss, Sitzung 22." +--- +A video recording from 6 May 2000 shows Kai S. (a neo-Nazi at the time and Mandy S.'s ex-boyfriend) and another man helping with a move. Both are said to have helped Mandy S. move house. The BKA (Federal Criminal Police Office) identified the unknown person "with certainty" as Uwe Böhnhardt, and in another section of the video they claim to have recognized Beate Zschäpe. diff --git a/content/schauplaetze/unterkunft-fuer-asylsuchende-jena/cover.jpg b/content/schauplaetze/unterkunft-fuer-asylsuchende-jena/cover.jpg new file mode 100644 index 0000000..e5142fb --- /dev/null +++ b/content/schauplaetze/unterkunft-fuer-asylsuchende-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c9bb912691d8ea966095ce83ac194fa813725da0a68d342eaa62490bfd3677a +size 349541 diff --git a/content/schauplaetze/unterkunft-fuer-asylsuchende-jena/index.de.md b/content/schauplaetze/unterkunft-fuer-asylsuchende-jena/index.de.md new file mode 100644 index 0000000..191ba10 --- /dev/null +++ b/content/schauplaetze/unterkunft-fuer-asylsuchende-jena/index.de.md @@ -0,0 +1,13 @@ +--- +title: "Unterkunft für Asylsuchende" +date: 1995-11-10 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9408071 +lng: 11.5931066 +address: "Scharnhorststraße, 07743 Jena" +datum: "10.11.1995" +quelle: "OTZ Jena, 13.11.1995 Aust/ Laabs,Heimatschutz, S. 142." +--- +Am 10.11.1995 warfen Unbekannte einen selbstgebauten Sprengkörper in den Duschraum des damaligen Heimes für bosnische Kriegsflüchtlinge in der Scharnhorststraße in Jena-Nord. Es kam zu einer Explosion, durch die jedoch Menschen nicht verletzt worden waren. Ein Feuer sei nicht ausgebrochen, so die Polizei. De Kripo schloss nach ersten Ermittlungsansätzen zunächst ein politisches Tatmotiv aus. Das Gebäude beherbergte zuvor einen Kindergarten und wurde zum Zeitpunkt der Tat auch von der Jenaer Tafel zur Essensausgabe an bedürftige Jenaer genutzt. An seiner Stelle entstand ein moderner Neubau. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/unterkunft-fuer-asylsuchende-jena/index.en.md b/content/schauplaetze/unterkunft-fuer-asylsuchende-jena/index.en.md new file mode 100644 index 0000000..935084a --- /dev/null +++ b/content/schauplaetze/unterkunft-fuer-asylsuchende-jena/index.en.md @@ -0,0 +1,13 @@ +--- +title: "Accommodation for Asylum Seekers" +date: 1995-11-10 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9408071 +lng: 11.5931066 +address: "Scharnhorststraße, 07743 Jena" +datum: "10.11.1995" +quelle: "OTZ Jena, 13.11.1995 Aust/ Laabs,Heimatschutz, S. 142." +--- +On 10 November 1995, unknown perpetrators threw a homemade explosive device into the shower room of what was then a home for Bosnian war refugees on Scharnhorststraße in Jena-Nord. An explosion occurred, but no one was injured. According to police, no fire broke out. Initial investigations by the criminal police ruled out a political motive for the time being. The building had previously housed a kindergarten and, at the time of the attack, was also being used by the Jena food bank ("Jenaer Tafel") to distribute food to people in need. A modern new building now stands in its place. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/unterstuetzer-aus-johanngeorgenstadt-johanngeorgenstadt/index.de.md b/content/schauplaetze/unterstuetzer-aus-johanngeorgenstadt-johanngeorgenstadt/index.de.md new file mode 100644 index 0000000..a70cec8 --- /dev/null +++ b/content/schauplaetze/unterstuetzer-aus-johanngeorgenstadt-johanngeorgenstadt/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Unterstützer aus Johanngeorgenstadt" +subtitle: "Matthias D., André Eminger, Mandy S." +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.4326006 +lng: 12.7104266 +address: "Eibenstocker Straße 67, 08349 Johanngeorgenstadt" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.12" +--- +Der sächsische Ort Johanngeorgenstadt war für Zschäpe, Mundlos und Böhnhardt von besonderer Bedeutung. Neben der engen Vertrauten Mandy S., kamen auch Matthias D., sowie André und Susann E. aus der kleinen Stadt im Erzgebirge. diff --git a/content/schauplaetze/unterstuetzer-aus-johanngeorgenstadt-johanngeorgenstadt/index.en.md b/content/schauplaetze/unterstuetzer-aus-johanngeorgenstadt-johanngeorgenstadt/index.en.md new file mode 100644 index 0000000..9aa784a --- /dev/null +++ b/content/schauplaetze/unterstuetzer-aus-johanngeorgenstadt-johanngeorgenstadt/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Supporters from Johanngeorgenstadt" +subtitle: "Matthias D., André Eminger, Mandy S." +date: 2021-04-01 +kategorien: ["Unterstützende"] +lat: 50.4326006 +lng: 12.7104266 +address: "Eibenstocker Straße 67, 08349 Johanngeorgenstadt" +quelle: "Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.12" +--- +The Saxon town of Johanngeorgenstadt was of particular significance for Zschäpe, Mundlos and Böhnhardt. Besides the close confidante Mandy S., Matthias D. as well as André and Susann E. also came from the small town in the Ore Mountains (Erzgebirge). diff --git a/content/schauplaetze/vierte-wohnung-von-zschaepe-mundlos-und-boehnhardt-ort/cover.jpg b/content/schauplaetze/vierte-wohnung-von-zschaepe-mundlos-und-boehnhardt-ort/cover.jpg new file mode 100644 index 0000000..eb2a8e0 --- /dev/null +++ b/content/schauplaetze/vierte-wohnung-von-zschaepe-mundlos-und-boehnhardt-ort/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:713b4038649edf49382d203c4d5680a5cf6d90da4d1f8b2dc3aedbba93b83116 +size 186895 diff --git a/content/schauplaetze/vierte-wohnung-von-zschaepe-mundlos-und-boehnhardt-ort/index.de.md b/content/schauplaetze/vierte-wohnung-von-zschaepe-mundlos-und-boehnhardt-ort/index.de.md new file mode 100644 index 0000000..85464d5 --- /dev/null +++ b/content/schauplaetze/vierte-wohnung-von-zschaepe-mundlos-und-boehnhardt-ort/index.de.md @@ -0,0 +1,10 @@ +--- +title: "Vierte Wohnung von Zschäpe, Mundlos und Böhnhardt" +subtitle: "Beate Zschäpe, Uwe Böhnhardt, Uwe Mundlos, André E." +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann. Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.12, S.19" +--- +Im April 1999 zog das Trio in eine Chemnitzer Zwei-Raum Wohnung in der Wolgograder Allee 76. Es ist die letzte Wohnung in Chemnitz, bevor sie 2000 nach Zwickau umzogen, da es in Chemnitz zu viele Mitwissende gab. + +Den Mietvertrag unterschrieb der langjährige Freund und Unterstützer André E. André E. pflegte bis zur Selbstenttarnung des Trios engen Kontakt zu Uwe Mundlos, Uwe Böhnhardt und Beate Zschäpe. Er war einer der Hauptangeklagten im NSU-Verfahren wegen „Beihilfe zum versuchten Mord, zur gefährlichen Körperverletzung, zum Raub und zur Herbeiführung einer schweren Sprengstoffexplosion sowie Unterstützung einer terroristischen Vereinigung“. Im Jahr 2000 gründete er gemeinsam mit seinem Zwillingsbruder Maik E. die „Weiße Bruderschaft Erzgebirge“ (WBE). Die Unterstützungsleitungen für das Trio waren vielfältig. Bei einer Vorladung Zschäpes 2006 auf eine Polizeistation für eine Zeugenaussage zu einem Einbruch in einer benachbarten Wohnung begleitete André E. Zschäpe, welche sich dort als Susanne E. ausgab. Durch das Auftreten als Ehepaar und der Aliasidentiät flog Zschäpe nicht auf. diff --git a/content/schauplaetze/vierte-wohnung-von-zschaepe-mundlos-und-boehnhardt-ort/index.en.md b/content/schauplaetze/vierte-wohnung-von-zschaepe-mundlos-und-boehnhardt-ort/index.en.md new file mode 100644 index 0000000..7e8cd23 --- /dev/null +++ b/content/schauplaetze/vierte-wohnung-von-zschaepe-mundlos-und-boehnhardt-ort/index.en.md @@ -0,0 +1,10 @@ +--- +title: "Fourth Apartment of Zschäpe, Mundlos and Böhnhardt" +subtitle: "Beate Zschäpe, Uwe Böhnhardt, Uwe Mundlos, André E." +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann. Kulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.12, S.19" +--- +In April 1999, the trio moved into a two-room apartment in Chemnitz at Wolgograder Allee 76. It was the last apartment in Chemnitz before they moved to Zwickau in 2000, as there were too many people in Chemnitz who knew about them. + +The lease was signed by their longtime friend and supporter André E. André E. maintained close contact with Uwe Mundlos, Uwe Böhnhardt and Beate Zschäpe up until the trio's self-exposure. He was one of the main defendants in the NSU trial, charged with "aiding and abetting attempted murder, aggravated assault, robbery, and causing a serious explosion, as well as supporting a terrorist organization". In 2000, together with his twin brother Maik E., he founded the "Weiße Bruderschaft Erzgebirge" (White Brotherhood Erzgebirge, WBE). The support provided to the trio took many forms. When Zschäpe was summoned to a police station in 2006 to give a witness statement about a burglary in a neighboring apartment, André E. accompanied Zschäpe, who posed there as Susanne E. By presenting themselves as a married couple and using the alias identity, Zschäpe was not exposed. diff --git a/content/schauplaetze/waffenuebergabe-chemnitz/cover.jpg b/content/schauplaetze/waffenuebergabe-chemnitz/cover.jpg new file mode 100644 index 0000000..462bd77 --- /dev/null +++ b/content/schauplaetze/waffenuebergabe-chemnitz/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f8e5dd8841238814f425b52721b6d23b36339b166a48114ea934c6e6b61fac +size 201694 diff --git a/content/schauplaetze/waffenuebergabe-chemnitz/index.de.md b/content/schauplaetze/waffenuebergabe-chemnitz/index.de.md new file mode 100644 index 0000000..a72aa54 --- /dev/null +++ b/content/schauplaetze/waffenuebergabe-chemnitz/index.de.md @@ -0,0 +1,15 @@ +--- +title: "Waffenübergabe" +subtitle: "Uwe Mundlos, Uwe Böhnhardt, Carsten S." +date: 2021-04-01 +kategorien: ["Waffenlieferung"] +lat: 50.839651 +lng: 12.9303525 +address: "Bahnhofstraße 1, 09111 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann. ARD (2021): Saal 101 – Dokumentarhörspiel zum NSU-Prozess. Mitangeklagter Carsten S. – Beweisaufnahme. Online unter: https://www.ardaudiothek.de/episode/saal-101-dokumentarhoerspiel-zum-nsu-prozess/4-24-mitangeklagter-carsten-s-beweisaufnahme/bayern-2/86652228/ NSU Watch (2014): Protokoll 95. Verhandlungstag – 19. März 2014. Online unter: https://www.nsu-watch.info/2014/04/protokoll-95-verhandlungstag-19-maerz-2014/" +--- +In Jahr 2000 übergibt Carsten S. die Ceska-Pistole, samt Schalldämpfer und Munition in einem Abbruchhaus nahe des Chemnitzer Hauptbahnhofes. Mit der Waffe wurden Enver Şimşek, Abdurrahim Özüdoğru, Süleyman Taşköprü, Habil Kılıç, Mehmet Turgut, İsmail Yaşar, Theodoros Boulgarides, Mehmet Kubaşık und Halit Yozgat ermordet. + +Nach eigenen Angaben hält Carsten S. 1997/1998 zunächst Telefonkontakt mit Uwe Mundlos, Uwe Böhnhardt und Beate Zschäpe, die schon in der Illegalität leben. Die Informationen leitet S. an Ralf W. weiter. Als der Wunsch nach einer Waffe kommuniziert wird, schickt Ralf W. Carsten S. zu Andreas Sch.. Dieser besorgt die Ceska-Pistole und verkauft sie an Carsten S..  Daraufhin fährt S. nach Chemnitz, trifft sich dort mit Beate Zschäpe, Uwe Mundlos und Uwe Böhnhardt in einem Café und übergibt anschließend die Waffe in einem Abbruchhaus. + +Carsten S. ist der einzige Angeklagte, der ein umfassendes Geständnis abgelegt hat und sich bei den Angehörigen der Mordopfer entschuldigt hat. diff --git a/content/schauplaetze/waffenuebergabe-chemnitz/index.en.md b/content/schauplaetze/waffenuebergabe-chemnitz/index.en.md new file mode 100644 index 0000000..3a6dd73 --- /dev/null +++ b/content/schauplaetze/waffenuebergabe-chemnitz/index.en.md @@ -0,0 +1,15 @@ +--- +title: "Weapon Handover" +subtitle: "Uwe Mundlos, Uwe Böhnhardt, Carsten S." +date: 2021-04-01 +kategorien: ["Waffenlieferung"] +lat: 50.839651 +lng: 12.9303525 +address: "Bahnhofstraße 1, 09111 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann. ARD (2021): Saal 101 – Dokumentarhörspiel zum NSU-Prozess. Mitangeklagter Carsten S. – Beweisaufnahme. Online unter: https://www.ardaudiothek.de/episode/saal-101-dokumentarhoerspiel-zum-nsu-prozess/4-24-mitangeklagter-carsten-s-beweisaufnahme/bayern-2/86652228/ NSU Watch (2014): Protokoll 95. Verhandlungstag – 19. März 2014. Online unter: https://www.nsu-watch.info/2014/04/protokoll-95-verhandlungstag-19-maerz-2014/" +--- +In 2000, Carsten S. handed over the Ceska pistol, along with a silencer and ammunition, in a derelict building near Chemnitz Central Station. The weapon was used to murder Enver Şimşek, Abdurrahim Özüdoğru, Süleyman Taşköprü, Habil Kılıç, Mehmet Turgut, İsmail Yaşar, Theodoros Boulgarides, Mehmet Kubaşık and Halit Yozgat. + +According to his own statements, Carsten S. first maintained telephone contact in 1997/1998 with Uwe Mundlos, Uwe Böhnhardt and Beate Zschäpe, who were already living underground. S. passed the information on to Ralf W. When the desire for a weapon was communicated, Ralf W. sent Carsten S. to Andreas Sch. He procured the Ceska pistol and sold it to Carsten S. S. then drove to Chemnitz, met with Beate Zschäpe, Uwe Mundlos and Uwe Böhnhardt in a café, and subsequently handed over the weapon in a derelict building. + +Carsten S. is the only defendant to have made a full confession and to have apologized to the relatives of the murder victims. diff --git a/content/schauplaetze/weisse-liga-nr-9-chemnitz/cover.jpg b/content/schauplaetze/weisse-liga-nr-9-chemnitz/cover.jpg new file mode 100644 index 0000000..b9daebc --- /dev/null +++ b/content/schauplaetze/weisse-liga-nr-9-chemnitz/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:021953334c1a4a7bdfac1271b035b1b4fb45975461981f29552ffc02dfa6c901 +size 221896 diff --git a/content/schauplaetze/weisse-liga-nr-9-chemnitz/index.de.md b/content/schauplaetze/weisse-liga-nr-9-chemnitz/index.de.md new file mode 100644 index 0000000..922b2b9 --- /dev/null +++ b/content/schauplaetze/weisse-liga-nr-9-chemnitz/index.de.md @@ -0,0 +1,12 @@ +--- +title: "„Weiße Liga“ Nr. 9" +subtitle: "Carsten Szczepanski" +date: 2021-04-01 +kategorien: ["Fanzines"] +lat: 50.8332882 +lng: 12.9191694 +address: "Jakobikirchplatz 2, 09111 Chemnitz" +--- +Unter dem Titel „Weiße Liga“ erschien in den 1990er Jahren in Chemnitz ein Fanzine, von dem die Nummer 9 von 1999 vorliegt. Getragen durch die Sektion von Blood & Honour Sachsen, ließ das Blatt unter anderem durch Konzertberichte nicht nur aus Orten innerhalb Deutschlands, sondern auch aus England und Ungarn erkennen eine breite Vernetzungsstruktur erkennen. Viel Raum wurde dem „nationalen Liedermacher“ Frank Rennicke gegeben, darüber hinaus CD- und Video-Besprechungen, der Vorstellung einer Anzahl anderer Skinzines. In der Liste der Gefangenen der „Bewegung“ findet sich in der Kategorie  „Briefkontakt wünschen“ unter anderem der bundesweit gut vernetzte Carsten Szczepanski („Piatto“), der als einer der wichtigsten (bekannten) V-Männer fungierte und auch über das NSU-Trio berichtete. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/weisse-liga-nr-9-chemnitz/index.en.md b/content/schauplaetze/weisse-liga-nr-9-chemnitz/index.en.md new file mode 100644 index 0000000..170f83c --- /dev/null +++ b/content/schauplaetze/weisse-liga-nr-9-chemnitz/index.en.md @@ -0,0 +1,12 @@ +--- +title: "\"White League\" No. 9" +subtitle: "Carsten Szczepanski" +date: 2021-04-01 +kategorien: ["Fanzines"] +lat: 50.8332882 +lng: 12.9191694 +address: "Jakobikirchplatz 2, 09111 Chemnitz" +--- +Under the title "Weiße Liga" ("White League"), a fanzine was published in Chemnitz in the 1990s, of which issue No. 9 from 1999 is available. Produced by the Saxony chapter of Blood & Honour, the publication revealed, among other things through concert reports, a broad network of connections not only within Germany but also to England and Hungary. Considerable space was devoted to the "national songwriter" Frank Rennicke, as well as CD and video reviews and the presentation of a number of other skinzines. In the list of prisoners of the "movement," under the category "wishes to correspond," is found, among others, the nationally well-connected Carsten Szczepanski ("Piatto"), who served as one of the most important (known) informants for the state and also reported on the NSU trio. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/winzerclub-jena/cover.jpg b/content/schauplaetze/winzerclub-jena/cover.jpg new file mode 100644 index 0000000..3716490 --- /dev/null +++ b/content/schauplaetze/winzerclub-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe84995bc34a00915a639afda6690a6004d362fd1e4669c75f2b71e28a0bd6b +size 249025 diff --git a/content/schauplaetze/winzerclub-jena/index.de.md b/content/schauplaetze/winzerclub-jena/index.de.md new file mode 100644 index 0000000..a49aa3b --- /dev/null +++ b/content/schauplaetze/winzerclub-jena/index.de.md @@ -0,0 +1,14 @@ +--- +title: "Winzerclub" +subtitle: "Uwe Mundlos," +date: 1991-09-14 +kategorien: ["Aufenthaltsorte"] +lat: 50.8944859 +lng: 11.5819425 +address: "Hugo-Schrade-Straße 51, 07745 Jena" +datum: "14.9.1991" +quelle: "Ostthüringer Nachrichten, 17.9.1991 OTZ Jena, 19.11.2011" +--- +Im Jahr 1991 wurde in Jena-Winzerla in der Hugo-Schrade-Straße der „Winzerclub“ (heute „Hugo“) eröffnet als ein Treffpunkt für die Jugendlichen des Stadtteils unter Begleitung von Streetworkern.  Uwe Mundlos gehörte zu den Jugendlichen, die an der Instandsetzung der Räume mitwirkten. Bei der Eröffnung des Clubs am 14.9.1991 sagte er der Zeitung: „Wir haben einen Raum gesucht und einen Raum gekriegt.“ Und: „Wenn wir Probleme haben, können wir mit den Streetworkern quatschen und wenn’s hart auf hart kommt, gehen wir einen trinken.“ M. gehörte damals bereits einer Gruppierung von bis zu 20 dem rechten Spektrum  zugeordneten Jugendlichen an, die sich „Winzerclan“ nannte. 1999 zog die Stadt die Konsequenzen und schloss den „Winzerclub“. Im September 2011 wurde an gleicher Stelle als Neubau und  neu strukturiert der Jugendclub „Hugo“ eröffnet. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/winzerclub-jena/index.en.md b/content/schauplaetze/winzerclub-jena/index.en.md new file mode 100644 index 0000000..ca2a09d --- /dev/null +++ b/content/schauplaetze/winzerclub-jena/index.en.md @@ -0,0 +1,14 @@ +--- +title: "Winzerclub" +subtitle: "Uwe Mundlos," +date: 1991-09-14 +kategorien: ["Aufenthaltsorte"] +lat: 50.8944859 +lng: 11.5819425 +address: "Hugo-Schrade-Straße 51, 07745 Jena" +datum: "14.9.1991" +quelle: "Ostthüringer Nachrichten, 17.9.1991 OTZ Jena, 19.11.2011" +--- +In 1991, the "Winzerclub" (today "Hugo") opened on Hugo-Schrade-Straße in Jena-Winzerla as a meeting place for young people in the district, supervised by street workers. Uwe Mundlos was among the young people who helped renovate the premises. At the club's opening on 14 September 1991, he told the newspaper: "We looked for a space and got a space." And: "If we have problems, we can talk to the street workers, and if push comes to shove, we go for a drink." At the time, Mundlos already belonged to a group of up to 20 young people from the right-wing spectrum who called themselves the "Winzerclan." In 1999 the city drew the consequences and closed the "Winzerclub." In September 2011, the youth club "Hugo" was opened on the same site in a newly built and restructured form. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/winzerla-jena/cover.jpg b/content/schauplaetze/winzerla-jena/cover.jpg new file mode 100644 index 0000000..0aca4cc --- /dev/null +++ b/content/schauplaetze/winzerla-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35317f7cdaeb7ac81606084f30e6fdee4a5e82f4bb6799a1a9b9cdfd1e4ffc2d +size 226120 diff --git a/content/schauplaetze/winzerla-jena/index.de.md b/content/schauplaetze/winzerla-jena/index.de.md new file mode 100644 index 0000000..6e2ae0c --- /dev/null +++ b/content/schauplaetze/winzerla-jena/index.de.md @@ -0,0 +1,12 @@ +--- +title: "Winzerla" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1996-11-09 +kategorien: [] +lat: 50.8928102 +lng: 11.5849944 +address: "Rudolstädter Straße, 07745 Jena" +datum: "9.11.1996" +quelle: "OTZ Jena, FD 12.11.1996 Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 47 f. OTZ Jena FD, 17./18.5.2021 Aust/ Laabs, Heimatschutz, S. 194." +--- +Zur Verhinderung von Straftaten anlässlich des Gedenktages zur „Reichskristallnacht“ am 9.11.1996  stoppten zwei Mannschaftsfahrzeuge der Polizei auf der Rudolstädter Straße in Winzerla ein Auto, in dem sich Böhnhardt, Mundlos, Zschäpe sowie Holger G. befanden. Die Insassen verriegelten das Fahrzeug und weigerten sich auszusteigen. Die Beamten nahmen die vier in Gewahrsam, wobei Böhnhardt aktiven Widerstand leistete. Er trug wie auch G. eine SA-ähnliche Uniform – braunes Hemd und Hose, dunkelbraunes Koppel, schwarzer Binder, Springerstiefel mit weißen Schnürsenkeln. Die Polizei stellte u.a. sicher: eine schwarze Sturmhaube, drei Beile, einen Schlagstock mit Reizgassprüheinrichtung, eine Gaspistole, zwei Faustkampfmesser, eine Luftdruckpistole, zwei Magazine mit 15 Gaspatronen, einen Wurfstern. Böhnhardt trug neun Patronen Leuchtspurmunition bei sich, Zschäpe eine Schreckschusspistole mit Schulterholster. Die Polizei leitete ein Verfahren wegen Verstoßes gegen das Waffengesetz ein. diff --git a/content/schauplaetze/winzerla-jena/index.en.md b/content/schauplaetze/winzerla-jena/index.en.md new file mode 100644 index 0000000..73fae43 --- /dev/null +++ b/content/schauplaetze/winzerla-jena/index.en.md @@ -0,0 +1,12 @@ +--- +title: "Winzerla" +subtitle: "Uwe Böhnhardt, Uwe Mundlos, Beate Zschäpe" +date: 1996-11-09 +kategorien: [] +lat: 50.8928102 +lng: 11.5849944 +address: "Rudolstädter Straße, 07745 Jena" +datum: "9.11.1996" +quelle: "OTZ Jena, FD 12.11.1996 Schäfer-Gutachten im Auftrag des Freistaates Thüringen, 2012, S. 47 f. OTZ Jena FD, 17./18.5.2021 Aust/ Laabs, Heimatschutz, S. 194." +--- +To prevent offenses in connection with the commemoration day for the "Reichskristallnacht" (Night of Broken Glass) on 9 November 1996, two police squad vehicles stopped a car on Rudolstädter Straße in Winzerla in which Böhnhardt, Mundlos, Zschäpe, and Holger G. were riding. The occupants locked the vehicle and refused to get out. The officers took the four into custody, with Böhnhardt actively resisting. Like G., he wore an SA-style uniform — brown shirt and trousers, dark brown belt, black tie, combat boots with white laces. Among other things, the police confiscated: a black balaclava, three hatchets, a baton fitted with a pepper-spray device, a gas pistol, two combat knives, an air pistol, two magazines with 15 gas cartridges, and a throwing star. Böhnhardt was carrying nine rounds of tracer ammunition, Zschäpe a blank-firing pistol with a shoulder holster. The police opened proceedings for violation of the Weapons Act. diff --git a/content/schauplaetze/wohnung-als-nazi-szene-treff-nuernberg/index.de.md b/content/schauplaetze/wohnung-als-nazi-szene-treff-nuernberg/index.de.md new file mode 100644 index 0000000..3a336d7 --- /dev/null +++ b/content/schauplaetze/wohnung-als-nazi-szene-treff-nuernberg/index.de.md @@ -0,0 +1,13 @@ +--- +title: "Wohnung als Nazi-Szene-Treff" +date: 2019-07-11 +kategorien: ["Aufenthaltsorte"] +lat: 49.4525249 +lng: 11.1146537 +address: "Marthastraße, 90482 Nürnberg" +datum: "11.07.2019" +quelle: "„Ein Jahr nach NSU-Prozess: Das Helfer-Netz ist nicht enttarnt“ auf nordbayern.de am 11.07.2019, Internetseite: https://www.nordbayern.de/politik/ein-jahr-nach-nsu-prozess-das-helfer-netz-ist-nicht-enttarnt-1.9074904 [Aufruf 08.09.2021]" +--- +Eine Wohnung in der Marthastraße im Osten Nürnbergs war AntifaschistInnen Mitte der 1990er Jahre als Nazi-Szene-Treff bekannt. Beispielsweise wurde am 12. Februar 1995 eine antifaschistische Demonstration vom damals noch existierenden, linksalternativen Kulturzentrum „KOMM“ gegenüber dem Hauptbahnhof gegen den „Nazitreff in der Nürnberger Marthastraße“ veranstaltet. „Wir schauen nicht länger zu! Wir greifen ein!“, hieß es auf dem Flugblatt. + +Wie sich erst Jahre nach der Selbstenttarnung des NSU im Jahr 2011 herausstellte, waren in der Nazi-Wohnung auch spätere NSU-TerroristInnen zu Gast, darunter auch die 2018 zu lebenslanger Haft verurteilte Beate Zschäpe. Dies berichtete ein Aussteiger aus der Neonaziszene dem gemeinsamen Rechercheteam der Nürnberger Nachrichten und des Bayerischen Rundfunks. diff --git a/content/schauplaetze/wohnung-als-nazi-szene-treff-nuernberg/index.en.md b/content/schauplaetze/wohnung-als-nazi-szene-treff-nuernberg/index.en.md new file mode 100644 index 0000000..b8cd214 --- /dev/null +++ b/content/schauplaetze/wohnung-als-nazi-szene-treff-nuernberg/index.en.md @@ -0,0 +1,13 @@ +--- +title: "Apartment as a Neo-Nazi Scene Meeting Place" +date: 2019-07-11 +kategorien: ["Aufenthaltsorte"] +lat: 49.4525249 +lng: 11.1146537 +address: "Marthastraße, 90482 Nürnberg" +datum: "11.07.2019" +quelle: "„Ein Jahr nach NSU-Prozess: Das Helfer-Netz ist nicht enttarnt“ auf nordbayern.de am 11.07.2019, Internetseite: https://www.nordbayern.de/politik/ein-jahr-nach-nsu-prozess-das-helfer-netz-ist-nicht-enttarnt-1.9074904 [Aufruf 08.09.2021]" +--- +An apartment on Marthastraße in the east of Nuremberg was known to anti-fascists in the mid-1990s as a neo-Nazi scene meeting place. For example, on 12 February 1995, an anti-fascist demonstration was held—starting from the then still existing left-alternative cultural center "KOMM" opposite the main railway station—against the "Nazi hangout on Nuremberg's Marthastraße." "We're not standing by any longer! We're taking action!" read the flyer. + +As only became apparent years after the NSU's self-exposure in 2011, later NSU terrorists were also guests at the Nazi apartment, including Beate Zschäpe, who was sentenced to life imprisonment in 2018. This was reported by a defector from the neo-Nazi scene to the joint investigative team of the Nürnberger Nachrichten newspaper and Bayerischer Rundfunk. diff --git a/content/schauplaetze/wohnung-von-ralf-wohlleben-jena/cover.jpg b/content/schauplaetze/wohnung-von-ralf-wohlleben-jena/cover.jpg new file mode 100644 index 0000000..fcdfabd --- /dev/null +++ b/content/schauplaetze/wohnung-von-ralf-wohlleben-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18ec5466f474f1f63cd66bef3e9febeafd29e6a234f5aa75c9d438c9058a8e5d +size 169634 diff --git a/content/schauplaetze/wohnung-von-ralf-wohlleben-jena/index.de.md b/content/schauplaetze/wohnung-von-ralf-wohlleben-jena/index.de.md new file mode 100644 index 0000000..619c8c6 --- /dev/null +++ b/content/schauplaetze/wohnung-von-ralf-wohlleben-jena/index.de.md @@ -0,0 +1,14 @@ +--- +title: "Wohnung von Ralf Wohlleben" +subtitle: "Ralf Wohlleben" +date: 2011-11-24 +kategorien: ["Unterstützende"] +lat: 50.9250667 +lng: 11.6008796 +address: "Burgweg, 07749 Jena" +datum: "24.11.2011" +quelle: "OTZ Jena, 25.11.2011 Bericht des Untersuchungsausschusses 6/1 des Thüringer Landtages, 6. Wahlperiode, 30.9.2019, S. 766 ff. Schultz, NSU, S.420." +--- +Ralf Wohlleben (geboren 1975) wohnte zu Beginn der 90er Jahre zunächst in Jena-Göschwitz, bis er eine Wohnung im Burgweg bezog. Er gehörte zum engsten Kreis um Böhnhardt, Mundlos und Zschäpe, war Initiator von Aktionen und Anmeldungen für Demonstrationen. Zeitweise war er im „Braunen Haus“ in Altlobeda gemeldet.  Als Kreisvorsitzender der NPD Jena ab 1998 war es sein Bestreben, auf kommunaler Ebene politischen Einfluss auszuüben. Am 24.11.2011 wurde er vom LKA Thüringen verhaftet und dem Ermittlungsrichter beim Bundesgerichtshof  vorgeführt. Er stand im Verdacht, dem Trio zur Flucht verholfen und eine Waffe mit Munition an das Trio übergeben zu haben.  Im Münchener Prozess wurde er 2018 wegen Beihilfe zum Mord zu zehn Jahren Haft verurteilt. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/wohnung-von-ralf-wohlleben-jena/index.en.md b/content/schauplaetze/wohnung-von-ralf-wohlleben-jena/index.en.md new file mode 100644 index 0000000..c4853ad --- /dev/null +++ b/content/schauplaetze/wohnung-von-ralf-wohlleben-jena/index.en.md @@ -0,0 +1,14 @@ +--- +title: "Apartment of Ralf Wohlleben" +subtitle: "Ralf Wohlleben" +date: 2011-11-24 +kategorien: ["Unterstützende"] +lat: 50.9250667 +lng: 11.6008796 +address: "Burgweg, 07749 Jena" +datum: "24.11.2011" +quelle: "OTZ Jena, 25.11.2011 Bericht des Untersuchungsausschusses 6/1 des Thüringer Landtages, 6. Wahlperiode, 30.9.2019, S. 766 ff. Schultz, NSU, S.420." +--- +Ralf Wohlleben (born 1975) lived initially in Jena-Göschwitz in the early 1990s, before moving into an apartment on Burgweg. He belonged to the innermost circle around Böhnhardt, Mundlos, and Zschäpe, and was an initiator of actions and applications for demonstrations. For a time he was registered as living at the "Braunes Haus" ("Brown House") in Altlobeda. As district chairman of the NPD in Jena from 1998, he sought to exert political influence at the municipal level. On 24 November 2011, he was arrested by the Thuringia State Criminal Police Office and brought before the investigating judge at the Federal Court of Justice. He was suspected of having helped the trio flee and of having handed over a weapon with ammunition to the trio. In the Munich trial, he was sentenced in 2018 to ten years in prison for aiding and abetting murder. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/zeiss-planetarium-jena/cover.jpg b/content/schauplaetze/zeiss-planetarium-jena/cover.jpg new file mode 100644 index 0000000..cde3ffa --- /dev/null +++ b/content/schauplaetze/zeiss-planetarium-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15c8d141d23e3d681331fea062a40280f6ef9e7e2396a28f5b52c4c8ee360805 +size 223659 diff --git a/content/schauplaetze/zeiss-planetarium-jena/index.de.md b/content/schauplaetze/zeiss-planetarium-jena/index.de.md new file mode 100644 index 0000000..1b0b078 --- /dev/null +++ b/content/schauplaetze/zeiss-planetarium-jena/index.de.md @@ -0,0 +1,14 @@ +--- +title: "Zeiss-Planetarium" +subtitle: "Tino Brandt" +date: 1995-09-15 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9318536 +lng: 11.5867563 +address: "Am Planetarium 5, 07743 Jena" +datum: "15.9.1995" +quelle: "OTZ Jena FD 1995, 1.12.2011 Aust/Laabs, Heimatschutz, 2020, S. 149 f." +--- +Am 15.9.1995 veranstalte das Soziokulturelle Zentrum Kassablanca im Jenaer Planetarium ein Konzert mit der Kultband „Goethes Erben“. Etwa 30 Neonazis, bewaffnet mit Baseballschlägern, versuchten in das Gebäude einzudringen. Bei Feststellung des Angriffs konnten jedoch die Türen verschlossen werden. Vergeblich versuchten die Neonazis, die gläserne Umwandung massiv zu zerstören. Ein dienstfreier Polizeibeamter, der Zeuge des Angriffs wurde, alarmierte die nur wenige hundert Meter entfernten Polizeidirektion. Die Polizei konnte einen Großteil der Angreifer festnehmen. Bei der Feststellung der Personalien zeigte sich, dass diese aus ganz Thüringen stammten. Am späten Abend wurden erneut zehn Neonazis am Jenaer Holzmarkt in Gewahrsam genommen, unter ihnen Tino Brandt, Initiator des Thüringer Heimatschutzes. Die Polizei ermittelte wegen Landfriedensbruch. Dass Brandt zu diesem Zeitpunkt bereits V-Mann des Landesamtes für Verfassungsschutz Thüringen war, wurde erst später bekannt. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/zeiss-planetarium-jena/index.en.md b/content/schauplaetze/zeiss-planetarium-jena/index.en.md new file mode 100644 index 0000000..df099f4 --- /dev/null +++ b/content/schauplaetze/zeiss-planetarium-jena/index.en.md @@ -0,0 +1,14 @@ +--- +title: "Zeiss Planetarium" +subtitle: "Tino Brandt" +date: 1995-09-15 +kategorien: ["Tatorte vor dem Untertauchen"] +lat: 50.9318536 +lng: 11.5867563 +address: "Am Planetarium 5, 07743 Jena" +datum: "15.9.1995" +quelle: "OTZ Jena FD 1995, 1.12.2011 Aust/Laabs, Heimatschutz, 2020, S. 149 f." +--- +On 15 September 1995, the Kassablanca socio-cultural centre held a concert with the cult band "Goethes Erben" at the Jena planetarium. About 30 neo-Nazis, armed with baseball bats, tried to force their way into the building. When the attack was noticed, however, the doors could be locked in time. The neo-Nazis tried in vain to smash the glass facade. An off-duty police officer who witnessed the attack alerted the police headquarters, only a few hundred metres away. The police were able to arrest most of the attackers. When their identities were established, it emerged that they came from all over Thuringia. Late that evening, ten more neo-Nazis were taken into custody at Jena's Holzmarkt, among them Tino Brandt, initiator of the Thuringia Heimatschutz. The police investigated on charges of breach of the public peace. That Brandt was already, at this time, an informant for the Thuringia State Office for the Protection of the Constitution only became known later. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/zschaepe-i-jena/cover.jpg b/content/schauplaetze/zschaepe-i-jena/cover.jpg new file mode 100644 index 0000000..8701038 --- /dev/null +++ b/content/schauplaetze/zschaepe-i-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ea07ce9ae3d9d6ca6e6b8aee69296320e82afdbfcc3c039bb45045344eb2651 +size 241015 diff --git a/content/schauplaetze/zschaepe-i-jena/index.de.md b/content/schauplaetze/zschaepe-i-jena/index.de.md new file mode 100644 index 0000000..6d67b82 --- /dev/null +++ b/content/schauplaetze/zschaepe-i-jena/index.de.md @@ -0,0 +1,14 @@ +--- +title: "Zschäpe I" +subtitle: "Beate Zschäpe" +date: 2011-11-08 +kategorien: ["Zschäpes Flucht"] +lat: 50.9529968 +lng: 11.6004435 +address: "Closewitzer Straße, 07743 Jena" +datum: "8.11.2011" +quelle: "OTZ Jena, 23.12.2011." +--- +Nachdem Beate Zschäpe die Zwickauer Wohnung des Trios in Brand gesteckt hatte, flüchtete sie am 8.11.2011 nach Thüringen mit Endstation in Jena. Sie suchte zunächst ihre in der Closewitzer Straße in Jena-Nord wohnende Großmutter sowie ihre Mutter auf und verabschiedete sich. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/zschaepe-i-jena/index.en.md b/content/schauplaetze/zschaepe-i-jena/index.en.md new file mode 100644 index 0000000..59023e7 --- /dev/null +++ b/content/schauplaetze/zschaepe-i-jena/index.en.md @@ -0,0 +1,14 @@ +--- +title: "Zschäpe I" +subtitle: "Beate Zschäpe" +date: 2011-11-08 +kategorien: ["Zschäpes Flucht"] +lat: 50.9529968 +lng: 11.6004435 +address: "Closewitzer Straße, 07743 Jena" +datum: "8.11.2011" +quelle: "OTZ Jena, 23.12.2011." +--- +After Beate Zschäpe had set fire to the trio's flat in Zwickau, she fled to Thuringia on 8 November 2011, ending up in Jena. She first went to see her grandmother, who lived on Closewitzer Straße in Jena-Nord, as well as her mother, and said goodbye to them. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/zschaepe-ii-jena/cover.jpg b/content/schauplaetze/zschaepe-ii-jena/cover.jpg new file mode 100644 index 0000000..7d07ebd --- /dev/null +++ b/content/schauplaetze/zschaepe-ii-jena/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe246297fa90ab4df3e758dc026b084769ea8fa497f0eb7b372e35306565e08a +size 188353 diff --git a/content/schauplaetze/zschaepe-ii-jena/index.de.md b/content/schauplaetze/zschaepe-ii-jena/index.de.md new file mode 100644 index 0000000..5904fa7 --- /dev/null +++ b/content/schauplaetze/zschaepe-ii-jena/index.de.md @@ -0,0 +1,14 @@ +--- +title: "Zschäpe II" +subtitle: "Beate Zschäpe" +date: 2011-12-23 +kategorien: [] +lat: 50.9324774 +lng: 11.592049 +address: "Am Anger 30, 07743 Jena" +datum: "23.12.2011" +quelle: "OTZ Jena, 23.12.2011." +--- +Beate Zschäpe fragte dann am selben Tag den Jenaer Rechtsanwalt L. an, ob er sie vertreten würde und stellte sich dann in seiner Begleitung  in der Polizeidirektion. Sie nannte ihren Namen, doch trotz des gegen sie erwirkten internationalen Haftbefehls realisierte man in der Behörde erst beim dritten Anlauf, die Gesuchte vor sich zu haben. Von Jena wurde sie zunächst nach Zwickau überstellt. + +(Text und Bild: Frank Döbert) diff --git a/content/schauplaetze/zschaepe-ii-jena/index.en.md b/content/schauplaetze/zschaepe-ii-jena/index.en.md new file mode 100644 index 0000000..e5c387f --- /dev/null +++ b/content/schauplaetze/zschaepe-ii-jena/index.en.md @@ -0,0 +1,14 @@ +--- +title: "Zschäpe II" +subtitle: "Beate Zschäpe" +date: 2011-12-23 +kategorien: [] +lat: 50.9324774 +lng: 11.592049 +address: "Am Anger 30, 07743 Jena" +datum: "23.12.2011" +quelle: "OTZ Jena, 23.12.2011." +--- +That same day, Beate Zschäpe asked the Jena lawyer L. whether he would represent her, and then presented herself, accompanied by him, at the police headquarters. She gave her name, but despite the international arrest warrant issued against her, it was only on the third attempt that the authorities there realised they had the wanted woman in front of them. From Jena she was initially transferred to Zwickau. + +(Text and image: Frank Döbert) diff --git a/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-chemnitz/cover.jpg b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-chemnitz/cover.jpg new file mode 100644 index 0000000..c554735 --- /dev/null +++ b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-chemnitz/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:700dbad4ddaf8d9d3c7a896e02fbef035b6aadeae801d229d11799ad6b589ab2 +size 232767 diff --git a/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-chemnitz/index.de.md b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-chemnitz/index.de.md new file mode 100644 index 0000000..a3fcfe1 --- /dev/null +++ b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-chemnitz/index.de.md @@ -0,0 +1,10 @@ +--- +title: "Zschäpe, Mundlos und Böhnhardt leihen Fahrzeuge" +date: 2021-04-01 +kategorien: ["Anmietung von Fahrzeugen"] +lat: 50.8151092 +lng: 12.9057917 +address: "Heinrich-Lorenz-Straße 1, 09120 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Im Zeitraum von 2000 bis 2007 mietete das NSU-Trio 14-mal Wohnmobile bei einer Chemnitzer Verleihfirma. Dabei benutzten sie die Identitäten von André E. und Holger G. Die Fahrzeuge nutzten sie für den ersten Anschlag in Köln, fünf Morde und mehrere Banküberfälle. diff --git a/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-chemnitz/index.en.md b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-chemnitz/index.en.md new file mode 100644 index 0000000..ea1dc26 --- /dev/null +++ b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-chemnitz/index.en.md @@ -0,0 +1,10 @@ +--- +title: "Zschäpe, Mundlos and Böhnhardt rent vehicles" +date: 2021-04-01 +kategorien: ["Anmietung von Fahrzeugen"] +lat: 50.8151092 +lng: 12.9057917 +address: "Heinrich-Lorenz-Straße 1, 09120 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Between 2000 and 2007, the NSU trio rented motorhomes 14 times from a rental company in Chemnitz. In doing so, they used the identities of André E. and Holger G. They used the vehicles for the first bomb attack in Cologne, five murders, and several bank robberies. diff --git a/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-dennheritz/index.de.md b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-dennheritz/index.de.md new file mode 100644 index 0000000..606357d --- /dev/null +++ b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-dennheritz/index.de.md @@ -0,0 +1,10 @@ +--- +title: "Zschäpe, Mundlos und Böhnhardt leihen Fahrzeuge" +date: 2021-04-01 +kategorien: ["Anmietung von Fahrzeugen"] +lat: 50.8246194 +lng: 12.4685633 +address: "Meeraner Straße 31, 08393 Dennheritz" +quelle: "" +--- +Im sächsischen Dennheritz mietete das NSU-Trio ein Wohnmobil, sowie ein Auto. Diese Fahrzeuge nutzten sie für einen Urlaub und einen Banküberfall. diff --git a/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-dennheritz/index.en.md b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-dennheritz/index.en.md new file mode 100644 index 0000000..ee127d7 --- /dev/null +++ b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-dennheritz/index.en.md @@ -0,0 +1,10 @@ +--- +title: "Zschäpe, Mundlos and Böhnhardt rent vehicles" +date: 2021-04-01 +kategorien: ["Anmietung von Fahrzeugen"] +lat: 50.8246194 +lng: 12.4685633 +address: "Meeraner Straße 31, 08393 Dennheritz" +quelle: "" +--- +In Dennheritz, Saxony, the NSU trio rented a motorhome as well as a car. They used these vehicles for a holiday and for a bank robbery. diff --git a/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-treuen/index.de.md b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-treuen/index.de.md new file mode 100644 index 0000000..73833a6 --- /dev/null +++ b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-treuen/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Zschäpe, Mundlos und Böhnhardt leihen Fahrzeuge" +subtitle: "Uwe Mundlos, Uwe Böhnhardt" +date: 2021-04-01 +kategorien: ["Anmietung von Fahrzeugen"] +lat: 50.5278949 +lng: 12.3475779 +address: "Auerbacher Straße 37, 08233 Treuen" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +In Schreiersgrün im Vogtland mieteten Mundlos und Böhnhardt ein Wohnmobil, mit welchem sie am 4. November 2011 zu ihrem letzten Banküberfall nach Eisenach fuhren. Auf der Flucht erschoßen sich die beiden im Fahrzeug. diff --git a/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-treuen/index.en.md b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-treuen/index.en.md new file mode 100644 index 0000000..7386c72 --- /dev/null +++ b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-treuen/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Zschäpe, Mundlos and Böhnhardt Rent Vehicles" +subtitle: "Uwe Mundlos, Uwe Böhnhardt" +date: 2021-04-01 +kategorien: ["Anmietung von Fahrzeugen"] +lat: 50.5278949 +lng: 12.3475779 +address: "Auerbacher Straße 37, 08233 Treuen" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +In Schreiersgrün in the Vogtland region, Mundlos and Böhnhardt rented a camper van, which they used on 4 November 2011 to drive to their final bank robbery in Eisenach. While fleeing, the two shot themselves inside the vehicle. diff --git a/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-zwickau/index.de.md b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-zwickau/index.de.md new file mode 100644 index 0000000..89a7afa --- /dev/null +++ b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-zwickau/index.de.md @@ -0,0 +1,10 @@ +--- +title: "Zschäpe, Mundlos und Böhnhardt leihen Fahrzeuge" +date: 2021-04-01 +kategorien: ["Anmietung von Fahrzeugen"] +lat: 50.718511 +lng: 12.4952344 +address: "Innere Plauensche Straße 14, 08056 Zwickau" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Bei diesem Zwickauer Unternehmen mietete der NSU 48-mal Autos auf den Namen Holger G. Mit den gemieteten Fahrzeugen fuhren sie zum Anschlag in der Kölner Keupstraße, zum Mord an Ismail Yasar in Nürnberg und in Urlaube auf Fehmarn. diff --git a/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-zwickau/index.en.md b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-zwickau/index.en.md new file mode 100644 index 0000000..1ad6637 --- /dev/null +++ b/content/schauplaetze/zschaepe-mundlos-und-boehnhardt-leihen-fahrzeuge-zwickau/index.en.md @@ -0,0 +1,10 @@ +--- +title: "Zschäpe, Mundlos and Böhnhardt Rent Vehicles" +date: 2021-04-01 +kategorien: ["Anmietung von Fahrzeugen"] +lat: 50.718511 +lng: 12.4952344 +address: "Innere Plauensche Straße 14, 08056 Zwickau" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +At this Zwickau-based company, the NSU rented cars 48 times under the name Holger G. They used the rented vehicles to drive to the attack on Cologne's Keupstraße, to the murder of Ismail Yasar in Nuremberg, and on holiday trips to Fehmarn. diff --git a/content/schauplaetze/zschaepe-zuendet-ein-haus-an-und-ergreift-die-flucht-zwickau/index.de.md b/content/schauplaetze/zschaepe-zuendet-ein-haus-an-und-ergreift-die-flucht-zwickau/index.de.md new file mode 100644 index 0000000..135ae06 --- /dev/null +++ b/content/schauplaetze/zschaepe-zuendet-ein-haus-an-und-ergreift-die-flucht-zwickau/index.de.md @@ -0,0 +1,11 @@ +--- +title: "Zschäpe zündet ein Haus an und ergreift die Flucht" +subtitle: "Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Zschäpes Flucht"] +lat: 50.743 +lng: 12.47522 +address: "Frühlingsstraße 26, 08058 Zwickau" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +Am Nachmittag des 4. November 2011 setzte Zschäpe das Haus in der Frühlingsstraße 26 in Zwickau in Brand, in welchem das NSU-Trio zuletzt gelebt hatte. Anschließend begann ihre Flucht durch Deutschland. diff --git a/content/schauplaetze/zschaepe-zuendet-ein-haus-an-und-ergreift-die-flucht-zwickau/index.en.md b/content/schauplaetze/zschaepe-zuendet-ein-haus-an-und-ergreift-die-flucht-zwickau/index.en.md new file mode 100644 index 0000000..98fc35e --- /dev/null +++ b/content/schauplaetze/zschaepe-zuendet-ein-haus-an-und-ergreift-die-flucht-zwickau/index.en.md @@ -0,0 +1,11 @@ +--- +title: "Zschäpe Sets a House on Fire and Flees" +subtitle: "Beate Zschäpe" +date: 2021-04-01 +kategorien: ["Zschäpes Flucht"] +lat: 50.743 +lng: 12.47522 +address: "Frühlingsstraße 26, 08058 Zwickau" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom Sundermann." +--- +On the afternoon of 4 November 2011, Zschäpe set fire to the house at Frühlingsstraße 26 in Zwickau, where the NSU trio had most recently lived. She then began her flight across Germany. diff --git a/content/schauplaetze/zweite-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/cover.jpg b/content/schauplaetze/zweite-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/cover.jpg new file mode 100644 index 0000000..abe475a --- /dev/null +++ b/content/schauplaetze/zweite-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/cover.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f0b3156c6f442e690fe5c1df908657fa4b46e27e2145304e6d8ee50a83aecf0 +size 202342 diff --git a/content/schauplaetze/zweite-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.de.md b/content/schauplaetze/zweite-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.de.md new file mode 100644 index 0000000..e6d9be3 --- /dev/null +++ b/content/schauplaetze/zweite-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.de.md @@ -0,0 +1,17 @@ +--- +title: "Zweite Wohnung von Zschäpe, Mundlos und Böhnhardt" +subtitle: "Beate Zschäpe, Uwe Mundlos, Uwe Böhnhardt, Thomas S., Max-Florian B., Mandy S., Gunther F." +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.863655 +lng: 12.81427 +address: "Limbacher Straße 96, 09247 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom SundermannKulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.33" +--- +Im Februar 1998 konnten Uwe Mundlos, Uwe Böhnhardt und Beate Zschäpe von der Friedrich-Viertel-Straße 85 in die Wohnung von Max-Florian B. in der Limbacher Straße 96 umziehen. Dort bastelten sie u.a. Exemplare des rassistischen “Progromly-Spiels”, das später in der Szene verkauft wurde. + +Die Vermittlung der Wohnung läuft über unterschiedliche Kontaktpersonen. Thomas S. stellte zunächst einen Kontakt zu Gunther F. und dessen Zwillingsbruder A.F. her, welche beide wegen ihrer Vernetzung in den „CC88er“-Strukturen bekannt waren und regelmäßig rechte Szenekonzerte besuchten.  Diese wollen Beate Zschäpe, Uwe Mundlos und Uwe Böhnhardt bei Mandy S. unterbringen. Mandy S. organisiert den dreien schließlich den Kontakt zu der Wohnung in der Limbacher Straße, der Wohnung ihres damaligen Freundes Max-Florian B.. + +Gunther F. habe das Trio dort mehrfach besucht. Außerdem stellte er Uwe Böhnhardt seinen Personalausweiß zur Verfügung, mit dessen Hilfe sich dieser einen Reisepass anfertigen ließ. Nach Gunther F.s eigener Aussage habe er diesen zurückgefordert, der Fund eines Zettels, auf dem biographische daten der Familie F. notiert sind in der Frühlingsstraße in Zwickau– Wohnort des Trios zwischen 2008 und 2011 –lässt auf eine weitere Nutzung der Aliasidentität „F.“ durch Böhnhardt oder Mundlos schließen. + +Auch der Name Mandy S. wurde als Alias in Illegalität verwendet.  Mandy S. vermittelte drüber hinaus den Kontakt zu dem Neonazi André E. und stellte Beate Zschäpe ihre Aliaspersonalität zur Nutzung ihrer Krankenkassenkarte für eine gynäkologische Untersuchung, für Tischtennisclubkarten, sowie für zwei Katzenimpfpässe zur Verfügung. diff --git a/content/schauplaetze/zweite-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.en.md b/content/schauplaetze/zweite-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.en.md new file mode 100644 index 0000000..2c48436 --- /dev/null +++ b/content/schauplaetze/zweite-wohnung-von-zschaepe-mundlos-und-boehnhardt-chemnitz/index.en.md @@ -0,0 +1,17 @@ +--- +title: "Second Apartment of Zschäpe, Mundlos and Böhnhardt" +subtitle: "Beate Zschäpe, Uwe Mundlos, Uwe Böhnhardt, Thomas S., Max-Florian B., Mandy S., Gunther F." +date: 2021-04-01 +kategorien: ["Wohnungen des Trios"] +lat: 50.863655 +lng: 12.81427 +address: "Limbacher Straße 96, 09247 Chemnitz" +quelle: "ZEIT ONLINE: Die Orte des NSU-Terrors, 5. Mai 2014, Paul Blickle, Julian Stahnke, Lisa Caspari, Tom SundermannKulturbüro Sachsen e.V. (Hrsg.) (2017). Unter den Teppich gekehrt. Das Unterstützungsnetzwerk des NSU in Sachsen. Dresden: o.V., S.33" +--- +In February 1998, Uwe Mundlos, Uwe Böhnhardt and Beate Zschäpe were able to move from Friedrich-Viertel-Straße 85 into Max-Florian B.'s apartment at Limbacher Straße 96. There they made, among other things, copies of the racist "Pogromly game," which was later sold within the far-right scene. + +The apartment was arranged through various contact persons. Thomas S. first established contact with Gunther F. and his twin brother A.F., both of whom were known for their connections within the "CC88" structures and regularly attended far-right scene concerts. They intended to place Beate Zschäpe, Uwe Mundlos and Uwe Böhnhardt with Mandy S. Mandy S. ultimately arranged the contact to the apartment on Limbacher Straße, the apartment of her then-boyfriend Max-Florian B. + +Gunther F. reportedly visited the trio there several times. He also provided Uwe Böhnhardt with his identity card, which Böhnhardt used to have a passport made. According to Gunther F.'s own account, he later asked for it back; however, the discovery of a note recording biographical data of the F. family at Frühlingsstraße in Zwickau — the trio's residence between 2008 and 2011 — suggests that the alias identity "F." continued to be used by Böhnhardt or Mundlos. + +The name Mandy S. was likewise used as an alias while the trio lived underground. Mandy S. also arranged contact with the neo-Nazi André E. and made her alias identity available to Beate Zschäpe for use of her health insurance card for a gynaecological examination, for table tennis club cards, and for two cat vaccination records. diff --git a/content/so-funktionierts.de.md b/content/so-funktionierts.de.md new file mode 100644 index 0000000..3fe36b7 --- /dev/null +++ b/content/so-funktionierts.de.md @@ -0,0 +1,15 @@ +--- +title: "So funktioniert's" +--- + +Die Karte zeigt dokumentierte Schauplätze des NSU-Komplexes. Jeder Punkt steht +für einen Ort; die Farbe kennzeichnet die Kategorie: + +- **Aufenthaltsorte** – Wohn- und Treffpunkte +- **Unterstützende** – Personen und Strukturen des Umfelds +- **Raubüberfälle** – Tatorte der Raubüberfälle +- **Mordanschläge** – Tatorte der Mordanschläge + +Über die Filter oberhalb der Karte lassen sich einzelne Kategorien ein- und +ausblenden. Ein Klick auf einen Punkt öffnet eine Kurzinfo mit Link zur +Detailseite. diff --git a/content/so-funktionierts.en.md b/content/so-funktionierts.en.md new file mode 100644 index 0000000..c34846d --- /dev/null +++ b/content/so-funktionierts.en.md @@ -0,0 +1,14 @@ +--- +title: "How it works" +--- + +The map shows documented sites of the NSU complex. Each point represents a +location; the colour indicates the category: + +- **Whereabouts** – residences and meeting points +- **Supporters** – people and structures of the network +- **Robberies** – scenes of the robberies +- **Murders** – scenes of the murders + +Use the filters above the map to show or hide individual categories. Clicking a +point opens a short info box with a link to the detail page. diff --git a/content/ueber.de.md b/content/ueber.de.md new file mode 100644 index 0000000..ae8c915 --- /dev/null +++ b/content/ueber.de.md @@ -0,0 +1,12 @@ +--- +title: "Über das Projekt" +--- + +„Offener Prozess" ist ein Bildungs- und Dokumentationsprojekt, das den +NSU-Komplex aus migrantischer und antifaschistischer Perspektive aufarbeitet. +Diese interaktive Karte verortet Schauplätze, um Zusammenhänge sichtbar und +begreifbar zu machen. + +*Platzhaltertext – produktiv durch die echte Projektbeschreibung ersetzen.* +IN LOVE BY 161HZ.DE + diff --git a/content/ueber.en.md b/content/ueber.en.md new file mode 100644 index 0000000..826dac5 --- /dev/null +++ b/content/ueber.en.md @@ -0,0 +1,9 @@ +--- +title: "About the project" +--- + +"Offener Prozess" is an educational and documentation project that examines the +NSU complex from a migrant and anti-fascist perspective. This interactive map +locates sites in order to make connections visible and comprehensible. + +*Placeholder text – to be replaced with the actual project description.* diff --git a/data/kategorien.yaml b/data/kategorien.yaml new file mode 100644 index 0000000..80ef51b --- /dev/null +++ b/data/kategorien.yaml @@ -0,0 +1,21 @@ +# Kategorie → { color, en }. +# Keys bleiben Deutsch (kanonisch: Taxonomie + Frontmatter aller Sprachen). +# color = Markerfarbe, en = englisches Anzeige-Label. +Mordanschläge: { color: "#c0392b", en: "Murders" } +Anschläge: { color: "#d15a2a", en: "Attacks" } +Raubüberfälle: { color: "#e08a1e", en: "Robberies" } +"Tatorte vor dem Untertauchen": { color: "#a23e5c", en: "Crime scenes before going underground" } +Aufenthaltsorte: { color: "#1e2758", en: "Whereabouts" } +"Wohnungen des Trios": { color: "#2f4b9b", en: "Apartments of the trio" } +"Zschäpes Flucht": { color: "#3d7dca", en: "Zschäpe's escape" } +"Flucht aus Jena": { color: "#4aa6b0", en: "Escape from Jena" } +Fluchtwege: { color: "#2e8b74", en: "Escape routes" } +Unterstützende: { color: "#6b4e9e", en: "Supporters" } +Behörden: { color: "#8a6d3b", en: "Authorities" } +Fanzines: { color: "#b8873a", en: "Fanzines" } +"Bekenner-DVDs": { color: "#7d5ba6", en: "Confession DVDs" } +"Anmietung von Fahrzeugen": { color: "#7d8a2e", en: "Vehicle rentals" } +Waffenlieferung: { color: "#55607a", en: "Weapons delivery" } +Widerstand: { color: "#2e8b57", en: "Resistance" } +"Demo-Orte": { color: "#d19a1e", en: "Demonstration sites" } +Sonstiges: { color: "#8a8f98", en: "Other" } diff --git a/deploy/nginx.conf b/deploy/nginx.conf new file mode 100644 index 0000000..0db9485 --- /dev/null +++ b/deploy/nginx.conf @@ -0,0 +1,40 @@ +server { + listen 80; + server_name _; + root /usr/share/nginx/html; + index index.html; + + # Sicherheits-Header + add_header X-Content-Type-Options "nosniff" always; + add_header Referrer-Policy "strict-origin-when-cross-origin" always; + + # Kompression + gzip on; + gzip_vary on; + gzip_min_length 1024; + gzip_types text/plain text/css application/javascript application/json + image/svg+xml application/xml application/rss+xml + font/woff2 application/font-woff; + + # Statische Assets lange cachen (CSS/JS sind fingerprinted) + location ~* \.(?:css|js|woff2?|ttf|otf|eot|svg|png|jpe?g|gif|webp|ico)$ { + expires 30d; + add_header Cache-Control "public, max-age=2592000, immutable"; + access_log off; + try_files $uri =404; + } + + # HTML nicht cachen, damit Inhaltsänderungen sofort sichtbar sind + location ~* \.html?$ { + add_header Cache-Control "no-cache"; + try_files $uri =404; + } + + # Pretty-URLs: /pfad/ -> /pfad/index.html + location / { + try_files $uri $uri/ =404; + } + + # Gebrandete 404-Seite + error_page 404 /404.html; +} diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..d9aa277 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,13 @@ +services: + web: + build: + context: . + args: + # Nur für canonical/sitemap relevant – die Seite läuft unter jeder Domain, + # weil alle Links root-relativ sind. Für Produktion echte Domain eintragen. + HUGO_BASEURL: "https://map.offener-prozess.de/" + image: op-nsu-map + container_name: op-nsu-map + ports: + - "8066:80" # http://:8066 + restart: unless-stopped diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..bb6a8b4 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,163 @@ +baseURL = "https://map.offener-prozess.de/" +defaultContentLanguage = "de" +defaultContentLanguageInSubdir = false # Deutsch unter /, Englisch unter /en/ +title = "Offener Prozess" +theme = "op-dz" +enableRobotsTXT = true +removePathAccents = true # ä/ö/ü → a/o/u in URLs + +[taxonomies] + kategorie = "kategorien" + +[markup.goldmark.renderer] + unsafe = true + +# ============================================================================ +# GETEILTE PARAMS (sprachunabhängig) +# ============================================================================ +[params] + kategorieFarbeDefault = "#1e2758" + foerderLogo = "images/foerderlogos/logo-footer.png" + instagramURL = "https://www.instagram.com/offener_prozess" + email = "info@offener-prozess.de" + + [params.map] + tileURL = "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png" + attribution = '© OpenStreetMap-Mitwirkende' + +# ============================================================================ +# SPRACHEN +# ============================================================================ +[languages] + + # -------------------------------- DEUTSCH -------------------------------- + [languages.de] + languageName = "Deutsch" + languageCode = "de-DE" + weight = 1 + title = "Offener Prozess" + [languages.de.params] + description = "Interaktive Karte der Schauplätze des NSU-Komplexes – ein Dokumentationsprojekt von Offener Prozess." + flag = "🇩🇪" + foerderHinweis = "Platzhalterfläche für Förderlogos" + [languages.de.params.address] + city = "Chemnitz" + + [[languages.de.menus.main]] + name = "Schauplätze" + url = "/schauplaetze/" + weight = 20 + [[languages.de.menus.main]] + name = "Aufenthaltsorte" + parent = "Schauplätze" + url = "/kategorien/aufenthaltsorte/" + weight = 1 + [[languages.de.menus.main]] + name = "Unterstützende" + parent = "Schauplätze" + url = "/kategorien/unterstutzende/" + weight = 2 + [[languages.de.menus.main]] + name = "Raubüberfälle" + parent = "Schauplätze" + url = "/kategorien/raububerfalle/" + weight = 3 + [[languages.de.menus.main]] + name = "Mordanschläge" + parent = "Schauplätze" + url = "/kategorien/mordanschlage/" + weight = 4 + [[languages.de.menus.main]] + name = "Erinnerungsorte" + url = "/erinnerungsorte/" + weight = 25 + [[languages.de.menus.main]] + name = "So funktioniert's" + url = "/so-funktionierts/" + weight = 30 + [[languages.de.menus.main]] + name = "Über das Projekt" + url = "/ueber/" + weight = 40 + [[languages.de.menus.meta]] + name = "Website" + url = "https://offener-prozess.de" + weight = 1 + [[languages.de.menus.meta]] + name = "Kontakt" + url = "mailto:info@offener-prozess.de" + weight = 2 + [[languages.de.menus.legal]] + name = "Impressum" + url = "/impressum/" + weight = 1 + [[languages.de.menus.legal]] + name = "Datenschutzinformation" + url = "/datenschutz/" + weight = 2 + + # -------------------------------- ENGLISCH -------------------------------- + [languages.en] + languageName = "English" + languageCode = "en" + weight = 2 + title = "Offener Prozess" + [languages.en.params] + description = "Interactive map of the sites of the NSU complex – a documentation project by Offener Prozess." + flag = "🇬🇧" + foerderHinweis = "Placeholder for funding logos" + [languages.en.params.address] + city = "Chemnitz" + + [[languages.en.menus.main]] + name = "Locations" + url = "/schauplaetze/" + weight = 20 + [[languages.en.menus.main]] + name = "Whereabouts" + parent = "Locations" + url = "/kategorien/aufenthaltsorte/" + weight = 1 + [[languages.en.menus.main]] + name = "Supporters" + parent = "Locations" + url = "/kategorien/unterstutzende/" + weight = 2 + [[languages.en.menus.main]] + name = "Robberies" + parent = "Locations" + url = "/kategorien/raububerfalle/" + weight = 3 + [[languages.en.menus.main]] + name = "Murders" + parent = "Locations" + url = "/kategorien/mordanschlage/" + weight = 4 + [[languages.en.menus.main]] + name = "Places of remembrance" + url = "/erinnerungsorte/" + weight = 25 + [[languages.en.menus.main]] + name = "How it works" + url = "/so-funktionierts/" + weight = 30 + [[languages.en.menus.main]] + name = "About the project" + url = "/ueber/" + weight = 40 + [[languages.en.menus.meta]] + name = "Website" + url = "https://offener-prozess.de" + weight = 1 + [[languages.en.menus.meta]] + name = "Contact" + url = "mailto:info@offener-prozess.de" + weight = 2 + [[languages.en.menus.legal]] + name = "Imprint" + url = "/impressum/" + weight = 1 + [[languages.en.menus.legal]] + name = "Privacy policy" + url = "/datenschutz/" + weight = 2 diff --git a/i18n/de.toml b/i18n/de.toml new file mode 100644 index 0000000..d034c85 --- /dev/null +++ b/i18n/de.toml @@ -0,0 +1,65 @@ +[results] +other = "Ergebnisse" + +[searchPlaceholder] +other = "Nach Titel, Person oder Ort suchen …" + +[searchAria] +other = "Schauplätze durchsuchen" + +[filterToggle] +other = "Kategorien filtern" + +[filterSelectAll] +other = "Alle auswählen" + +[filterDeselectAll] +other = "Alle abwählen" + +[wordAll] +other = "alle" + +[wordOf] +other = "von" + +[filterGroupAria] +other = "Schauplätze nach Kategorie filtern" + +[mapAria] +other = "Interaktive Karte der Schauplätze" + +[breadcrumbLocations] +other = "Schauplätze" + +[allLocations] +other = "Alle Schauplätze" + +[externalSource] +other = "Externe Quelle (Links):" + +[directions] +other = "Anfahrt per OpenStreetMap" + +[skipLink] +other = "Zum Hauptinhalt springen" + +[notFoundTitle] +other = "Seite nicht gefunden" + +[notFoundText] +other = "Fehler 404 – die aufgerufene Seite existiert nicht (mehr)." + +[toMap] +other = "Zur Karte" + +[home] +other = "Startseite" + +[breadcrumbMemorials] +other = "Erinnerungsorte" + +[allMemorials] +other = "Alle Erinnerungsorte" + +[memorialType] +other = "Art" diff --git a/i18n/en.toml b/i18n/en.toml new file mode 100644 index 0000000..2883b65 --- /dev/null +++ b/i18n/en.toml @@ -0,0 +1,65 @@ +[results] +other = "results" + +[searchPlaceholder] +other = "Search by title, person or place …" + +[searchAria] +other = "Search locations" + +[filterToggle] +other = "Filter categories" + +[filterSelectAll] +other = "Select all" + +[filterDeselectAll] +other = "Deselect all" + +[wordAll] +other = "all" + +[wordOf] +other = "of" + +[filterGroupAria] +other = "Filter locations by category" + +[mapAria] +other = "Interactive map of the locations" + +[breadcrumbLocations] +other = "Locations" + +[allLocations] +other = "All locations" + +[externalSource] +other = "External source (links):" + +[directions] +other = "Directions via OpenStreetMap" + +[skipLink] +other = "Skip to main content" + +[notFoundTitle] +other = "Page not found" + +[notFoundText] +other = "Error 404 – the page you requested does not exist (any more)." + +[toMap] +other = "To the map" + +[home] +other = "Home" + +[breadcrumbMemorials] +other = "Places of remembrance" + +[allMemorials] +other = "All places of remembrance" + +[memorialType] +other = "Type" diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..e3f6fba --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,12 @@ +{{ define "main" }} + {{ $schauplaetze := where site.RegularPages "Section" "schauplaetze" }} + +
+
+

{{ with .Params.heroTitle }}{{ . | safeHTML }}{{ else }}{{ site.Title }}{{ end }}

+ {{ with .Params.heroLead }}

{{ . }}

{{ end }} +
+
+ + {{ partial "explorer.html" (dict "pages" $schauplaetze) }} +{{ end }} diff --git a/themes/op-dz/README.md b/themes/op-dz/README.md new file mode 100644 index 0000000..d100570 --- /dev/null +++ b/themes/op-dz/README.md @@ -0,0 +1,51 @@ +# op-dz — Hugo-Theme + +Theme im Corporate Design des Dokumentationszentrums (OP·DZ), aufgebaut auf +**UIkit 3**. Alle Ressourcen werden lokal ausgeliefert (DSGVO-konform). + +## Merkmale + +- **UIkit 3** (lokal, gepinnt auf 3.21.13) unter `static/vendor/uikit/` +- **Schrift ABC Favorit** komplett lokal (`static/fonts/favorit/`, `@font-face` + in `assets/css/fonts.css`, WOFF2 + WOFF, alle Schnitte Light–Ultra) +- **Design-Tokens** als CSS-Custom-Properties (`assets/css/main.css`), + Primärfarbe `#1e2758` (aus dem Logo-SVG verifiziert) +- CSS wird gebündelt, im Production-Build minifiziert und mit + Subresource-Integrity-Hash ausgeliefert +- Navbar-Dropdowns, mobiles Offcanvas und Footer-Spalten werden aus + **einem** Hugo-Menü (`main`) generiert +- barrierefrei: Skip-Link, sichtbarer Fokus, `prefers-reduced-motion`, + ARIA-Labels +- **Interaktive Karte** (Leaflet 1.9.4, lokal) mit OpenStreetMap-Kacheln, + farbigen Kategorie-Markern, Kategorie-Filter und Popups. Marker-Daten werden + statisch als JSON in die Seite eingebettet (kein externer Request). + Bausteine: `partials/karte.html`, `assets/js/map.js`, Section-Layouts unter + `layouts/schauplaetze/`. Kartendaten kommen aus Schauplatz-Seiten + (Frontmatter `lat`/`lng`/`kategorien`) + `data/kategorien.yaml` (Farben). + +## Struktur + +``` +theme.toml +assets/css/ fonts.css + main.css (Hugo-Pipeline) +layouts/ + _default/ baseof.html, list.html, single.html + index.html Startseite (Hero, Veranstaltungen, Leitbild, + Neuigkeiten, Galerie, Newsletter) + partials/ head, topbar, search-modal, navbar, offcanvas, footer +static/ + vendor/uikit/ UIkit CSS/JS (lokal) + fonts/favorit/ ABC Favorit (WOFF2/WOFF) + images/logos/ Logo_OP_DZ_* (SVG/PNG) + images/formen/ Bögen & Raster (SVG/PNG) +design-source/ NICHT veröffentlicht: OTF, EPS, Prototyp-HTML +``` + +## Konfiguration + +Menüs und alle Texte/Kontaktdaten kommen aus der Site-`hugo.toml` +(`[menus]`, `[params]`). Siehe das Root-README des Projekts für Details. + +## Abhängigkeit + +Hugo **Extended** ≥ 0.116 (Asset-Pipeline). diff --git a/themes/op-dz/assets/css/fonts.css b/themes/op-dz/assets/css/fonts.css new file mode 100644 index 0000000..5857bc9 --- /dev/null +++ b/themes/op-dz/assets/css/fonts.css @@ -0,0 +1,118 @@ +/* ========================================================================= + ABC Favorit – lokal gehostet (DSGVO: keine Third-Party-Font-Requests) + Dateien: /static/fonts/favorit/ → ausgeliefert unter /fonts/favorit/ + Pfade relativ zur gebundelten CSS (/css/…) ⇒ funktioniert auch unter + Subpfad-baseURL. + ========================================================================= */ + +/* --- Light 300 --- */ +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-Light.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-Light.woff") format("woff"); + font-weight: 300; font-style: normal; font-display: swap; +} +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-LightItalic.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-LightItalic.woff") format("woff"); + font-weight: 300; font-style: italic; font-display: swap; +} + +/* --- Book 350 --- */ +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-Book.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-Book.woff") format("woff"); + font-weight: 350; font-style: normal; font-display: swap; +} +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-BookItalic.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-BookItalic.woff") format("woff"); + font-weight: 350; font-style: italic; font-display: swap; +} + +/* --- Regular 400 --- */ +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-Regular.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-Regular.woff") format("woff"); + font-weight: 400; font-style: normal; font-display: swap; +} +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-RegularItalic.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-RegularItalic.woff") format("woff"); + font-weight: 400; font-style: italic; font-display: swap; +} + +/* --- Medium 500 --- */ +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-Medium.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-Medium.woff") format("woff"); + font-weight: 500; font-style: normal; font-display: swap; +} +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-MediumItalic.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-MediumItalic.woff") format("woff"); + font-weight: 500; font-style: italic; font-display: swap; +} + +/* --- Bold 700 --- */ +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-Bold.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-Bold.woff") format("woff"); + font-weight: 700; font-style: normal; font-display: swap; +} +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-BoldItalic.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-BoldItalic.woff") format("woff"); + font-weight: 700; font-style: italic; font-display: swap; +} + +/* --- Extrabold 800 --- */ +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-Extrabold.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-Extrabold.woff") format("woff"); + font-weight: 800; font-style: normal; font-display: swap; +} +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-ExtraboldItalic.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-ExtraboldItalic.woff") format("woff"); + font-weight: 800; font-style: italic; font-display: swap; +} + +/* --- Black 900 --- */ +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-Black.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-Black.woff") format("woff"); + font-weight: 900; font-style: normal; font-display: swap; +} +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-BlackItalic.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-BlackItalic.woff") format("woff"); + font-weight: 900; font-style: italic; font-display: swap; +} + +/* --- Ultra 950 (schwerster Schnitt) --- */ +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-Ultra.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-Ultra.woff") format("woff"); + font-weight: 950; font-style: normal; font-display: swap; +} +@font-face { + font-family: "ABC Favorit"; + src: url("../fonts/favorit/ABCFavorit-UltraItalic.woff2") format("woff2"), + url("../fonts/favorit/ABCFavorit-UltraItalic.woff") format("woff"); + font-weight: 950; font-style: italic; font-display: swap; +} diff --git a/themes/op-dz/assets/css/main.css b/themes/op-dz/assets/css/main.css new file mode 100644 index 0000000..f15bdfa --- /dev/null +++ b/themes/op-dz/assets/css/main.css @@ -0,0 +1,832 @@ +/* ========================================================================= + OP·DZ – Theme-Styles (UIkit-3-Overrides) + Webfonts: siehe fonts.css (wird zusammen mit dieser Datei gebundelt) + ========================================================================= */ + +/* ========================================================================= + 1. DESIGN-TOKENS (CSS Custom Properties) + ========================================================================= */ +:root { + --op-blau: #1e2758; /* Primär / Nacht – verifiziert gegen Logo_OP_DZ_blau.svg */ + --op-blau-dunkel: #141b45; /* Hover */ + --op-gelb: #edf489; /* Sekundär / Signalfarbe */ + --op-gelb-hell: #f7fbc9; + --op-papier: #fafae1; /* Creme – Markenhintergrund (offener-prozess.de) */ + --op-koralle: #ff6900; /* Akzent für Kategorie-Labels (Marke) */ + --op-linie: #d9dbcf; /* Rahmen */ + --op-text: #23242a; /* Fließtext */ + + --op-radius: 5px; /* dezente Rundung wie auf offener-prozess.de */ + + --op-font: "ABC Favorit", Helvetica, Arial, sans-serif; +} + +/* ========================================================================= + 2. BASIS / RESET-ERGÄNZUNGEN + ========================================================================= */ +html { scroll-behavior: smooth; } + +body { + font-family: var(--op-font); + color: var(--op-text); + background: #fff; +} + +/* Dezente Marken-Rundung auf den zentralen Komponenten */ +.uk-button, .uk-input, .uk-textarea, .uk-select, .uk-card, +.op-oeffnungsbox, .op-scard, .op-scard__img, .op-map, .op-side-box, +.op-content-box, .op-map-filter__item, .op-kategorie, .op-search input, +.op-bild, .leaflet-popup-content-wrapper { + border-radius: var(--op-radius); +} + +/* Textauswahl: gelb mit blauem Text */ +::selection { background: var(--op-gelb); color: var(--op-blau); } + +/* Sichtbarer Tastaturfokus */ +:focus-visible { + outline: 3px solid var(--op-blau); + outline-offset: 2px; +} + +/* Utility: gelber Textmarker */ +.op-marker { + background-image: linear-gradient(var(--op-gelb), var(--op-gelb)); + background-repeat: no-repeat; + background-position: 0 0.15em; + background-size: 100% 0.85em; + -webkit-box-decoration-break: clone; + box-decoration-break: clone; + padding: 0 0.05em; +} + +/* ========================================================================= + 3. TYPOGRAFIE (UIkit-Overrides) + ========================================================================= */ +h1, h2, h3, h4, h5, h6, +.uk-h1, .uk-h2, .uk-h3, .uk-h4 { + color: var(--op-blau); + font-weight: 700; + letter-spacing: -0.01em; +} +h1, .uk-h1 { + font-size: clamp(2.4rem, 6vw, 4.2rem); + line-height: 1.05; +} + +a { + color: var(--op-blau); + text-decoration: underline; + text-underline-offset: 3px; +} +a:hover { color: var(--op-blau-dunkel); } + +/* ========================================================================= + 4. BUTTONS + ========================================================================= */ +.uk-button { + font-weight: 700; + letter-spacing: 0.01em; + text-transform: none; + text-decoration: none; + transition: background-color .15s ease, color .15s ease, border-color .15s ease; +} + +/* primary = blaue Fläche / weißer Text */ +.uk-button-primary { + background: var(--op-blau); + color: #fff; + border: 2px solid var(--op-blau); +} +.uk-button-primary:hover, +.uk-button-primary:focus { + background: var(--op-blau-dunkel); + border-color: var(--op-blau-dunkel); + color: #fff; +} + +/* secondary = gelbe Fläche / blauer Text */ +.uk-button-secondary { + background: var(--op-gelb); + color: var(--op-blau); + border: 2px solid var(--op-blau); +} +.uk-button-secondary:hover, +.uk-button-secondary:focus { + background: var(--op-gelb-hell); + color: var(--op-blau-dunkel); + border-color: var(--op-blau-dunkel); +} + +/* default = blaue Outline, bei Hover gefüllt */ +.uk-button-default { + background: transparent; + color: var(--op-blau); + border: 2px solid var(--op-blau); +} +.uk-button-default:hover, +.uk-button-default:focus { + background: var(--op-blau); + color: #fff; + border-color: var(--op-blau); +} + +/* uk-button-text mit gelber Unterstreichung */ +.uk-button-text { + color: var(--op-blau); + text-transform: none; + font-weight: 700; +} +.uk-button-text::before { + border-bottom: 3px solid var(--op-gelb); +} + +/* ========================================================================= + 5. NAVBAR + ========================================================================= */ +.op-navbar, +.op-navbar.uk-navbar-container { + background: var(--op-gelb); + border-bottom: 0; +} +.op-navbar .uk-navbar-nav > li > a { + color: var(--op-blau); + font-weight: 700; + text-transform: none; + text-decoration: none; + min-height: 72px; +} +.op-navbar .uk-navbar-nav > li:hover > a, +.op-navbar .uk-navbar-nav > li > a:focus, +.op-navbar .uk-navbar-nav > li.uk-active > a, +.op-navbar .uk-navbar-nav > li > a[aria-current="page"] { + color: var(--op-blau-dunkel); + box-shadow: inset 0 -5px 0 var(--op-blau); +} +.op-navbar .uk-navbar-toggle { color: var(--op-blau); } + +/* Sprachumschalter */ +.op-langswitch { position: relative; display: inline-flex; align-items: center; } +.op-langswitch__flag { font-size: 1.2rem; line-height: 1; } + +/* Toggle-Button (Navbar) */ +.op-langswitch__toggle { + display: inline-flex; align-items: center; gap: .4rem; + background: transparent; border: 0; cursor: pointer; + padding: .4rem .55rem; min-height: 40px; border-radius: var(--op-radius); + color: var(--op-blau); font-family: var(--op-font); font-weight: 700; font-size: .85rem; +} +.op-langswitch__toggle:hover, +.op-langswitch__toggle:focus-visible { background: rgba(30,39,88,.10); } +.op-langswitch__code { letter-spacing: .03em; } +.op-langswitch__caret { + width: .45rem; height: .45rem; margin-left: .05rem; + border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; + transform: rotate(45deg); transition: transform .15s ease; +} +/* Dropdown-Panel */ +.op-langswitch__drop { min-width: 170px; padding: .5rem; background: var(--op-papier); border: 0; box-shadow: 0 14px 36px rgba(20,27,69,.18); } +.op-langswitch__drop .uk-dropdown-nav > li > a { + display: flex; align-items: center; gap: .55rem; + color: var(--op-blau); text-decoration: none; font-weight: 700; + padding: .5rem .6rem; border-radius: var(--op-radius); min-height: 40px; +} +.op-langswitch__drop .uk-dropdown-nav > li > a:hover { color: var(--op-blau-dunkel); background: var(--op-gelb-hell); } +.op-langswitch__drop .uk-dropdown-nav > li.uk-active > a { box-shadow: inset 0 0 0 2px var(--op-blau); } + +/* Liste (mobiles Offcanvas) */ +.op-langswitch--list { flex-direction: column; align-items: stretch; gap: .25rem; } +.op-langswitch--list .op-langswitch__item { + display: inline-flex; align-items: center; gap: .5rem; + padding: .5rem .3rem; text-decoration: none; color: #fff; font-weight: 700; +} +.op-langswitch--list .op-langswitch__item.is-current { box-shadow: inset 0 -3px 0 var(--op-gelb); } + +/* Dropdown-Panel wie auf offener-prozess.de: cremefarben, weicher Schatten, kein Rahmen */ +.uk-navbar-dropdown { + background: var(--op-papier); + border: 0; + border-radius: 0; + box-shadow: 0 14px 36px rgba(20,27,69,.18); + padding: 1.6rem 1.9rem; + min-width: 264px; +} +.uk-navbar-dropdown-nav > li > a { + color: var(--op-blau); + text-decoration: none; + font-weight: 700; + font-size: 1rem; + line-height: 1.25; + padding: .55rem 0; +} +.uk-navbar-dropdown-nav > li > a:hover, +.uk-navbar-dropdown-nav > li > a:focus { + color: var(--op-blau-dunkel); + background: transparent; + text-decoration: underline; + text-underline-offset: 3px; +} + +/* Logo */ +.op-logo { + display: inline-flex; + align-items: center; + gap: .6rem; + text-decoration: none; +} +.op-logo__img { + display: block; + height: 40px; + width: auto; +} +.op-navbar .op-logo__img { height: 44px; } + +/* ========================================================================= + 6. TOPBAR + ========================================================================= */ +.op-topbar { + background: var(--op-gelb); + border-bottom: 1px solid rgba(30,39,88,.12); + font-size: .85rem; +} +.op-topbar a { text-decoration: none; color: var(--op-blau); } +.op-topbar .uk-subnav > li > a { + color: var(--op-blau); + text-transform: none; + font-weight: 700; +} +.op-topbar .uk-subnav > li.uk-active > a { color: var(--op-blau); } +.op-topbar .uk-subnav > li.uk-active > a::after { + content: ""; + display: block; + height: 3px; + background: var(--op-blau); + margin-top: 2px; +} + +/* ========================================================================= + 7. CARDS + ========================================================================= */ +.uk-card-default { + background: #fff; + border: 1px solid var(--op-linie); + box-shadow: none !important; + transition: border-color .15s ease; +} +.uk-card-default:hover { border-color: var(--op-blau); } + +.op-card-datum { + color: var(--op-blau); + font-weight: 700; + letter-spacing: .01em; +} +.op-card-titel a { text-decoration: none; } +.op-card-titel a:hover { text-decoration: underline; } + +/* Kategorie-Label */ +.op-kategorie { + display: inline-block; + background: var(--op-gelb); + color: var(--op-blau); + text-transform: uppercase; + letter-spacing: .08em; + font-size: .72rem; + font-weight: 700; + padding: .25em .6em; +} + +.op-meta { color: #555; font-size: .82rem; } + +/* ========================================================================= + 8. FORMULARE + ========================================================================= */ +.uk-input, +.uk-textarea, +.uk-select { + border: 2px solid var(--op-blau); + background: #fff; + color: var(--op-text); +} +.uk-input:focus, +.uk-textarea:focus, +.uk-select:focus { + border-color: var(--op-blau); + background: var(--op-gelb-hell); +} +.uk-checkbox { + border: 2px solid var(--op-blau); + background: #fff; +} +.uk-checkbox:checked, +.uk-checkbox:indeterminate { + background-color: var(--op-blau); + border-color: var(--op-blau); +} +.uk-form-label { font-weight: 700; color: var(--op-blau); } + +/* ========================================================================= + 9. BILD-PLATZHALTER + ========================================================================= */ +.op-bild { + position: relative; + border: 1px solid var(--op-linie); + background-color: var(--op-papier); + background-image: repeating-linear-gradient( + 45deg, + var(--op-papier) 0, + var(--op-papier) 10px, + var(--op-gelb-hell) 10px, + var(--op-gelb-hell) 20px + ); + display: flex; + align-items: center; + justify-content: center; +} +.op-bild__label { + background: #fff; + border: 1px solid var(--op-linie); + color: var(--op-blau); + font-size: .78rem; + font-weight: 700; + padding: .2em .6em; + text-transform: uppercase; + letter-spacing: .05em; +} +.op-bild--16-9 { aspect-ratio: 16 / 9; } +.op-bild--4-3 { aspect-ratio: 4 / 3; } +.op-bild--1-1 { aspect-ratio: 1 / 1; } + +/* ========================================================================= + 10. SEKTIONS-FARBEN & DIVIDER + ========================================================================= */ +.op-section-gelb { background: var(--op-gelb); } +.op-section-muted { background: var(--op-papier); } +.op-section-blau { background: var(--op-blau); color: #fff; } + +.op-oeffnungsbox { + background: #fff; + border: 2px solid var(--op-blau); + padding: 1.75rem; +} +.op-divider { display: block; width: 100%; height: 46px; } + +/* Bogen-Illustration (Formen-Asset) */ +.op-bogen { display: block; width: 100%; height: auto; } + +/* ========================================================================= + 11. SLIDER / DOTNAV + ========================================================================= */ +.uk-dotnav > * > * { + border: 1px solid var(--op-blau); + background: transparent; +} +.uk-dotnav > .uk-active > * { background: var(--op-blau); } +.op-slidenav { color: var(--op-blau); } + +/* ========================================================================= + 12. FOOTER + ========================================================================= */ +.op-footer { position: relative; overflow: hidden; } +/* Punktraster („Teppich") rechts, angeschnitten – wie im dunklen Bereich der Vorlage */ +.op-footer::before { + content: ""; position: absolute; top: 0; bottom: 0; right: 0; + width: 44%; max-width: 640px; pointer-events: none; + background-image: radial-gradient(rgba(237,244,137,.30) 2px, transparent 2.6px); + background-size: 22px 22px; + background-position: right center; + -webkit-mask-image: linear-gradient(to left, #000 55%, transparent); + mask-image: linear-gradient(to left, #000 55%, transparent); +} +.op-footer > * { position: relative; } /* Inhalt über der Deko */ +.op-footer a { color: #fff; text-decoration: none; } +.op-footer a:hover { color: var(--op-gelb); } +.op-footer .op-footer-head { + color: var(--op-gelb); + text-transform: uppercase; + letter-spacing: .08em; + font-size: .8rem; + font-weight: 700; +} +.op-footer hr { border-top: 1px solid rgba(255,255,255,.25); } +.op-footer .uk-subnav > li > a { color: #fff; text-transform: none; } +.op-footer .uk-subnav > li > a:hover { color: var(--op-gelb); } +.op-foerder { + border: 2px dashed rgba(255,255,255,.5); + color: rgba(255,255,255,.85); + padding: 2rem 1rem; + text-align: center; + font-size: .85rem; +} +/* Förderlogo auf weißem Panel (dunkle Grafik wäre auf Blau unsichtbar) */ +.op-foerder--logo { + background: #fff; + border: 0; + padding: 1.5rem; + border-radius: var(--op-radius); +} +.op-foerder--logo img { max-width: 640px; width: 100%; height: auto; } + +/* ========================================================================= + 13. SKIP-LINK + ========================================================================= */ +.op-skip-link { + position: absolute; + left: 1rem; + top: -60px; + z-index: 2000; + background: var(--op-gelb); + color: var(--op-blau); + font-weight: 700; + padding: .6rem 1rem; + text-decoration: none; + transition: top .15s ease; +} +.op-skip-link:focus { top: 1rem; } + +/* ========================================================================= + 14. SUCH-ICON + ========================================================================= */ +.op-such-icon { color: var(--op-blau); } + +/* ========================================================================= + 15. KARTE (Leaflet + OpenStreetMap) + ========================================================================= */ +.op-map { + width: 100%; + height: 560px; + border: 2px solid var(--op-blau); + background: var(--op-papier); + z-index: 0; /* unter der Sticky-Navbar halten */ +} +.op-map--klein { height: 320px; } + +/* Leaflet-Popup im Hausstil: Bild oben, gelber Body (wie im Original) */ +.leaflet-popup-content-wrapper { + background: var(--op-gelb) !important; /* niemals weiß */ + padding: 0; overflow: hidden; border: 0; + box-shadow: 0 4px 16px rgba(20,27,69,.28); +} +.leaflet-popup-content { margin: 0 !important; background: var(--op-gelb); } +.leaflet-popup-tip { background: var(--op-gelb); border: 0; box-shadow: none; } +.op-popup { display: block; text-decoration: none; background: var(--op-gelb); } +.op-popup__img { + display: block; width: 100%; height: 150px; + background-size: cover; background-position: center; +} +.op-popup__body { display: block; padding: .9rem 1rem 1.1rem; } +.op-popup__title { + display: block; color: var(--op-blau); font-weight: 700; + font-size: 1.15rem; line-height: 1.15; +} +.op-popup__addr { + display: block; margin-top: .5rem; + color: var(--op-blau); opacity: .8; font-size: .85rem; +} + +/* Cluster-Bubbles im Hausstil (Blau/Gelb) */ +.marker-cluster { background: transparent; } +.marker-cluster div { + background: var(--op-blau); color: #fff; + font-family: var(--op-font); font-weight: 700; + border: 2px solid var(--op-gelb); +} +.marker-cluster span { line-height: 30px; } + +/* Pin-Marker (Tropfenform, Kategoriefarbe) – Standard-DivIcon-Look entfernen */ +.op-pinwrap { background: transparent !important; border: 0 !important; } +.op-pin { + display: block; + filter: drop-shadow(0 2px 2px rgba(0,0,0,.35)); + transition: transform .1s ease; + transform-origin: 50% 100%; +} +.op-pinwrap:hover .op-pin, +.op-pinwrap:focus-visible .op-pin { transform: scale(1.18); } +.op-pinwrap:focus-visible { outline: 3px solid var(--op-blau); outline-offset: 3px; } + +/* --- 15a. Split-View (Karte + Liste), Vorbild map.offener-prozess.de --- */ +.op-split { display: flex; align-items: flex-start; } +.op-split__list { width: 50%; padding: 2rem clamp(1rem, 3vw, 2.5rem); } +.op-split__map { + width: 50%; + position: sticky; + top: 75px; /* Höhe der sticky Navbar */ + height: calc(100vh - 75px); +} +.op-split__map .op-map { height: 100%; border: 0; border-left: 3px solid var(--op-blau); } +@media (max-width: 959px) { + .op-split { display: block; } + .op-split__list, .op-split__map { width: 100%; } + .op-split__map { position: static; height: 60vh; } + .op-split__map .op-map { border-left: 0; border-top: 3px solid var(--op-blau); } + .op-split__list { order: 2; } +} + +/* Listenkopf: Ergebniszahl + Suche */ +.op-listhead { margin-bottom: 1.5rem; } +.op-listhead__count { font-weight: 700; color: var(--op-blau); font-size: 1.1rem; } +.op-search { position: relative; margin-top: .75rem; } +.op-search input { + width: 100%; border: 2px solid var(--op-blau); background: #fff; + padding: .6rem .8rem; font-family: var(--op-font); color: var(--op-text); +} +.op-search input:focus { outline: none; background: var(--op-gelb-hell); } + +/* Aufklappbarer Kategorie-Filter (standardmäßig eingeklappt), dezent */ +.op-filter { margin: 0 0 1.25rem; } +.op-filter__summary { + list-style: none; cursor: pointer; + display: inline-flex; align-items: center; gap: .45rem; + color: var(--op-blau); font-size: .9rem; font-weight: 600; + padding: .3rem 0; user-select: none; +} +.op-filter__summary::-webkit-details-marker { display: none; } +.op-filter__summary::before { + content: ""; width: .5rem; height: .5rem; flex: 0 0 auto; + border-right: 2px solid var(--op-blau); border-bottom: 2px solid var(--op-blau); + transform: rotate(-45deg); transition: transform .15s ease; + margin-right: .1rem; +} +.op-filter[open] .op-filter__summary::before { transform: rotate(45deg); } +.op-filter__summary:focus-visible { outline: 3px solid var(--op-blau); outline-offset: 2px; } +.op-filter__state { color: #6a6d78; font-weight: 400; } +.op-filter__panel { padding-top: .75rem; } + +/* Filter-Aktionen: Alle auswählen / abwählen */ +.op-filter-actions { + display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; + margin-bottom: .75rem; +} +.op-filter-btn { + font-family: var(--op-font); font-weight: 700; font-size: .8rem; + color: var(--op-blau); background: #fff; + border: 2px solid var(--op-blau); border-radius: var(--op-radius); + padding: .4rem .8rem; min-height: 40px; cursor: pointer; + transition: background-color .12s ease, color .12s ease; +} +.op-filter-btn:hover, +.op-filter-btn:focus-visible { background: var(--op-blau); color: #fff; } + +/* Kategorie-Filter (kompakte Chips, dezent) */ +.op-map-filter { + display: flex; flex-wrap: wrap; gap: .4rem .5rem; + margin: 0; +} +.op-map-filter__item { + display: inline-flex; align-items: center; gap: .4rem; + font-size: .78rem; font-weight: 500; color: var(--op-blau); + cursor: pointer; border: 1px solid var(--op-linie); + padding: .25rem .5rem; user-select: none; +} +.op-map-filter__item input { margin: 0; } +.op-map-filter__swatch { + width: 12px; height: 12px; display: inline-block; + border: 1px solid rgba(0,0,0,.15); +} + +/* --- 15b. Schauplatz-Card (gelb, Original-Anmutung) --- */ +/* Kartengitter: fester Gap + gleiche Zeilenhöhe → einheitliche Kachelhöhe */ +.op-scards { + display: grid; + grid-template-columns: repeat(2, minmax(0, 1fr)); + grid-auto-rows: 1fr; + gap: 1.25rem; +} +@media (max-width: 639px) { .op-scards { grid-template-columns: 1fr; } } + +.op-scard { + display: flex; flex-direction: column; + background: var(--op-gelb); + border: 1px solid var(--op-gelb); text-decoration: none; + height: 100%; + transition: outline-color .12s ease; + outline: 3px solid transparent; outline-offset: -3px; +} +.op-scard:hover, .op-scard:focus-visible { outline-color: var(--op-blau); } +.op-scard.is--hidden { display: none; } +.op-scard__img { + display: block; flex: 0 0 auto; + aspect-ratio: 3 / 2; /* responsiv: Höhe skaliert mit der Kartenbreite */ + background-color: var(--op-gelb-hell); + background-size: cover; background-position: center; + border-bottom: 1px solid rgba(30,39,88,.12); + border-radius: var(--op-radius) var(--op-radius) 0 0; + position: relative; overflow: hidden; +} +/* Echtes Bild füllt den Rahmen ohne Verzerrung (schneidet nur bei Bedarf zu) */ +.op-scard__photo { + display: block; width: 100%; height: 100%; + object-fit: cover; object-position: center; +} +/* Platzhalter (kein Foto): Punktraster + Bogen in Kategoriefarbe (Marken-Motiv) */ +.op-scard__img--ph { + background-color: var(--op-papier); + background-image: radial-gradient(currentColor 1.6px, transparent 1.7px); + background-size: 13px 13px; + display: flex; align-items: flex-end; justify-content: center; +} +.op-scard__bogen { width: 78%; height: auto; display: block; } +.op-scard__tipp { + position: absolute; top: .5rem; left: .5rem; + background: var(--op-blau); color: #fff; + font-size: .65rem; font-weight: 700; letter-spacing: .06em; + text-transform: uppercase; padding: .2em .5em; +} +.op-scard__body { display: flex; flex-direction: column; flex: 1 1 auto; padding: 1rem 1.1rem 1.2rem; } +.op-scard__cat { + display: inline-block; margin: 0 0 .4rem; + color: var(--op-blau); /* hoher Kontrast auf Gelb; Farbcode steckt im Punkt */ + font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; +} +.op-scard__title { + display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; + color: var(--op-blau); font-weight: 700; font-size: 1.15rem; line-height: 1.15; margin: 0; +} +.op-scard__sub { + display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; + color: var(--op-blau); opacity: .8; font-size: .85rem; margin: .3rem 0 0; +} +.op-scard__addr { + display: flex; align-items: flex-start; gap: .35rem; + color: var(--op-blau); font-size: .8rem; + margin-top: auto; padding-top: .9rem; /* Adresse unten bündig */ +} +.op-scard__dot { + flex: 0 0 auto; width: 11px; height: 11px; margin-top: .15rem; + border: 1px solid rgba(0,0,0,.15); +} + +/* --- 15c. Detailseite (Hero-Band + Sidebar), Original-Anmutung --- */ +.op-detail-hero { background: var(--op-gelb); position: relative; overflow: hidden; } +.op-detail-hero > * { position: relative; z-index: 1; } +/* Punktraster („Teppich") oben rechts – blau auf gelb */ +.op-detail-hero::before { + content: ""; position: absolute; top: -12px; right: -12px; + width: 280px; height: 150px; pointer-events: none; z-index: 0; + background-image: radial-gradient(rgba(30,39,88,.26) 2px, transparent 2.6px); + background-size: 19px 19px; + -webkit-mask-image: linear-gradient(225deg, #000 45%, transparent 80%); + mask-image: linear-gradient(225deg, #000 45%, transparent 80%); +} +/* Großer angeschnittener Ring („Kringel") links hinter der Überschrift */ +.op-detail-hero::after { + content: ""; position: absolute; left: -160px; top: 50%; + width: 360px; height: 360px; transform: translateY(-50%); + border-radius: 50%; border: 40px solid rgba(30,39,88,.07); + pointer-events: none; z-index: 0; +} +.op-detail-hero .op-breadcrumb { color: var(--op-blau); font-weight: 700; font-size: .9rem; } +.op-detail-hero .op-breadcrumb a { text-decoration: none; } +.op-side-box { + background: var(--op-gelb); + padding: 0; + margin-bottom: 1.5rem; +} +.op-side-box__pad { padding: 1.25rem 1.35rem; } +.op-side-box .op-map { border: 0; } +.op-side-box__cat { font-size: 1.1rem; font-weight: 700; color: var(--op-blau); } +.op-side-box__date { color: var(--op-blau); margin-top: .4rem; } +.op-directions { display: inline-block; margin-top: .6rem; font-weight: 700; } +.op-content-box { background: var(--op-gelb); padding: 1.75rem; } +/* Bildnachweis (Foto-Credit unter dem Bild) */ +.op-bildnachweis { font-size: .75rem; color: #5a5d68; margin-top: 0; } +.op-bildnachweis a { color: inherit; } +.op-theme-blau .op-bildnachweis { color: rgba(255,255,255,.7); } +.op-theme-blau .op-bildnachweis a { color: var(--op-gelb); } +.op-content-box .op-quelle-head { font-weight: 700; color: var(--op-blau); margin-top: 1.5rem; } + +/* ========================================================================= + 16. TOUCH-KIOSK & BARRIEREFREIHEIT + ========================================================================= */ +/* Etwas größere Basisschrift für Lesbarkeit auf Distanz (Kiosk) */ +html { font-size: 17px; } + +/* Tap-Ziele ≥ 44–48px, angenehmes Antippen */ +a, button, label, summary, .op-scard { -webkit-tap-highlight-color: rgba(30,39,88,.15); } + +.uk-button { + min-height: 48px; + padding-top: .7rem; padding-bottom: .7rem; + display: inline-flex; align-items: center; justify-content: center; +} + +.op-search input { min-height: 52px; font-size: 1.05rem; } + +.op-map-filter__item { + min-height: 42px; padding: .5rem .7rem; font-size: .82rem; gap: .5rem; +} +.op-map-filter__item input[type="checkbox"] { + width: 22px; height: 22px; flex: 0 0 auto; +} + +/* Topbar: Sprachen & Suche gut antippbar */ +.op-topbar a, +.op-topbar .uk-subnav > li > a { display: inline-block; padding: .5rem .35rem; } +.op-such-icon { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; } + +/* Leaflet-Bedienelemente vergrößern (Zoom, Popup-Close, Attribution) */ +.leaflet-bar a { + width: 44px; height: 44px; line-height: 44px; font-size: 22px; +} +.leaflet-touch .leaflet-bar a { width: 44px; height: 44px; line-height: 44px; } +.leaflet-popup-close-button { + top: 8px !important; right: 8px !important; + width: 30px !important; height: 30px !important; + line-height: 28px !important; font-size: 22px !important; + color: var(--op-blau) !important; + background: rgba(255,255,255,.9); border-radius: 50%; +} +.op-popup__link { padding: .85em .9em 1em; min-height: 44px; } +.leaflet-control-attribution a { padding: 0; } + +/* Karten-Cluster gut sicht- und antippbar */ +.marker-cluster div { width: 40px; height: 40px; line-height: 36px; margin-left: -5px; margin-top: -5px; } + +/* Deutlich sichtbarer Tastatur-/Touch-Fokus überall */ +a:focus-visible, +button:focus-visible, +input:focus-visible, +select:focus-visible, +textarea:focus-visible, +[tabindex]:focus-visible, +.op-scard:focus-visible { + outline: 3px solid var(--op-blau); + outline-offset: 2px; +} +/* Fokus auf die Filter-Chips (Checkbox darin) sichtbar machen */ +.op-map-filter__item:focus-within { + outline: 3px solid var(--op-blau); + outline-offset: 2px; +} + +/* Auf Touch-Geräten (kein Hover): Aktiv-Feedback statt Hover */ +@media (hover: none) { + .op-scard:active { outline-color: var(--op-blau); } + .uk-card-default:active { border-color: var(--op-blau); } +} + +/* ========================================================================= + 17. INVERTIERTES THEMA (Erinnerungsorte): Blau statt Gelb im Vordergrund + ========================================================================= */ +/* Navbar → blau, Logo weiß */ +.op-theme-blau .op-navbar, +.op-theme-blau .op-navbar.uk-navbar-container { background: var(--op-blau); } +.op-theme-blau .op-navbar .op-logo__img { filter: brightness(0) invert(1); } +.op-theme-blau .op-navbar .uk-navbar-nav > li > a { color: #fff; } +.op-theme-blau .op-navbar .uk-navbar-nav > li:hover > a, +.op-theme-blau .op-navbar .uk-navbar-nav > li.uk-active > a, +.op-theme-blau .op-navbar .uk-navbar-nav > li > a[aria-current="page"] { + color: #fff; box-shadow: inset 0 -5px 0 var(--op-gelb); +} +.op-theme-blau .op-navbar .uk-navbar-toggle, +.op-theme-blau .op-langswitch__toggle { color: #fff; } +.op-theme-blau .op-langswitch__toggle:hover, +.op-theme-blau .op-langswitch__toggle:focus-visible { background: rgba(255,255,255,.14); } + +/* Hero-Band → blau, helle Schrift */ +.op-theme-blau .op-detail-hero { background: var(--op-blau); } +.op-theme-blau .op-detail-hero h1 { color: #fff; } +.op-theme-blau .op-detail-hero .uk-text-lead, +.op-theme-blau .op-detail-hero .op-breadcrumb, +.op-theme-blau .op-detail-hero .op-breadcrumb a { color: var(--op-gelb); } +.op-theme-blau .op-detail-hero::before { color: rgba(237,244,137,.5); } /* Punktraster gelb */ +.op-theme-blau .op-detail-hero::after { border-color: rgba(255,255,255,.10); } /* Ring hell */ + +/* Cards → blau, helle Schrift, gelbe Akzente */ +.op-theme-blau .op-scard { background: var(--op-blau); border-color: var(--op-blau); } +.op-theme-blau .op-scard:hover, +.op-theme-blau .op-scard:focus-visible { outline-color: var(--op-gelb); } +.op-theme-blau .op-scard__img { background-color: #2a3566; border-bottom-color: rgba(255,255,255,.12); } +.op-theme-blau .op-scard__title { color: #fff; } +.op-theme-blau .op-scard__cat { color: var(--op-gelb); } +.op-theme-blau .op-scard__sub { color: rgba(255,255,255,.82); opacity: 1; } +.op-theme-blau .op-scard__addr { color: var(--op-gelb); } +.op-theme-blau .op-scard__dot { background: var(--op-gelb) !important; } + +/* Detailseite: Inhalts- & Sidebar-Boxen → blau */ +.op-theme-blau .op-content-box, +.op-theme-blau .op-side-box { background: var(--op-blau); color: #fff; } +.op-theme-blau .op-content-box a, +.op-theme-blau .op-content-box .op-quelle-head, +.op-theme-blau .op-side-box__date, +.op-theme-blau .op-side-box a, +.op-theme-blau .op-directions { color: var(--op-gelb); } +.op-theme-blau .op-content-box a:hover, +.op-theme-blau .op-side-box a:hover { color: #fff; } + +/* Gelbes „Art"-Label auf blauem Grund */ +.op-kategorie--gelb { background: var(--op-gelb); color: var(--op-blau); } + +/* ========================================================================= + 18. REDUCED MOTION + ========================================================================= */ +@media (prefers-reduced-motion: reduce) { + html { scroll-behavior: auto; } + *, + *::before, + *::after { + animation-duration: 0.001ms !important; + animation-iteration-count: 1 !important; + transition-duration: 0.001ms !important; + } +} diff --git a/themes/op-dz/assets/js/map.js b/themes/op-dz/assets/js/map.js new file mode 100644 index 0000000..970fc1d --- /dev/null +++ b/themes/op-dz/assets/js/map.js @@ -0,0 +1,195 @@ +/* ========================================================================= + OP·Karte – Leaflet + OpenStreetMap + - farbige Kreis-Marker je Kategorie, Clustering (markercluster) + - Kategorie-Filter (Checkboxen) + Textsuche, synchron mit der Card-Liste + - Klick auf Card öffnet den zugehörigen Marker + Daten kommen aus + + + + + + + +Zum Hauptinhalt springen + + + + + +
+
+ +
+
+ + +
+
+
+
+ + +
+ +
+ + + + + +
+ + +
+
+
+
+

Wie erinnern wir gemeinsam an das, was nicht vergessen werden darf?

+
+
+
+

Öffnungszeiten

+
    +
  • Di – Fr · 10 – 18 Uhr
  • +
  • Sa – So · 11 – 17 Uhr
  • +
  • Mo · geschlossen
  • +
+

Der Eintritt ist frei. Platzhaltertext zu Feiertagsregelungen.

+ Anfahrt +
+
+
+
+ + +
+ + +
+
+

Veranstaltungen

+
+ +
+
+ Vortrag +

Do, 21. Aug · 19 Uhr

+

Platzhaltertitel einer Abendveranstaltung

+

Kurzer Teaser-Platzhalter in zwei bis drei Zeilen, der neugierig auf den Inhalt macht.

+
+
+ +
+
+ Führung +

Sa, 23. Aug · 14 Uhr

+

Platzhaltertitel einer Führung durch das Haus

+

Kurzer Teaser-Platzhalter in zwei bis drei Zeilen mit Blindtext für die Vorschau.

+
+
+ +
+
+ Workshop +

Mi, 27. Aug · 16 Uhr

+

Platzhaltertitel eines Workshops für Jugendliche

+

Kurzer Teaser-Platzhalter in zwei bis drei Zeilen zur inhaltlichen Einordnung.

+
+
+ +
+
+ Gespräch +

Fr, 29. Aug · 18 Uhr

+

Platzhaltertitel eines Podiumsgesprächs

+

Kurzer Teaser-Platzhalter in zwei bis drei Zeilen für die Übersicht.

+
+
+ +
+ +
+
+ + +
+
+
+
+

Unser Leitbild

+

Ein Platzhalter-Leitsatz, der in einem Satz beschreibt, wofür das Dokumentationszentrum steht und arbeitet.

+

Fließtext-Platzhalter: Lorem-ipsum-artiger Blindtext, der den Umfang eines einleitenden Absatzes andeutet und die Typografie im Fließtext demonstriert. Der Text dient ausschließlich der Vorschau und wird produktiv ersetzt.

+

Ein zweiter Absatz mit weiterem Platzhaltertext, der zeigt, wie mehrere Absätze im Layout wirken und wie viel Raum das Leitbild einnimmt.

+ Mehr erfahren +
+
+ + + + + + + + + + +
+
+
+
+ + +
+
+

Neuigkeiten

+
+ +
+
+
+
Bild 16:9
+
+
+

Platzhaltertitel eines Beitrags aus dem Haus

+

von Vorname Nachname · 12. Aug 2026

+

Anriss-Platzhalter: kurzer Textausschnitt, der den Beitrag anteasert und zum Weiterlesen einlädt.

+
+
+
+ +
+
+
+
Bild 16:9
+
+
+

Platzhaltertitel eines Berichts zur Recherche

+

von Vorname Nachname · 8. Aug 2026

+

Anriss-Platzhalter: kurzer Textausschnitt mit Blindtext für die Vorschau der Kachel.

+
+
+
+ +
+
+
+
Bild 16:9
+
+
+

Platzhaltertitel einer Ankündigung

+

von Vorname Nachname · 3. Aug 2026

+

Anriss-Platzhalter: kurzer Textausschnitt, der die Neuigkeit knapp zusammenfasst.

+
+
+
+ +
+ +
+
+ + +
+
+

Aus der Bildergalerie

+
+
+
+
+ +
    +
  • Galerie 1
  • +
  • Galerie 2
  • +
  • Galerie 3
  • +
  • Galerie 4
  • +
  • Galerie 5
  • +
  • Galerie 6
  • +
+ + + +
+ +
    +
    +
    +
    + + +
    +
    +
    +
    +

    Newsletter

    +

    Platzhaltersatz: Bleiben Sie über Veranstaltungen und Neuigkeiten auf dem Laufenden.

    +
    +
    +
    +
    + +
    + +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
    + +
    + + + + + + diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-Black.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Black.otf new file mode 100644 index 0000000..235bbf6 --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Black.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7be84073db7b5008dc01bff62b043ea7d911742e94f16c16249626ef58f28c5f +size 141948 diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-BlackItalic.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-BlackItalic.otf new file mode 100644 index 0000000..7e81c73 --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-BlackItalic.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d7cf454338af9d6d1a42cd96b5912a53f96f4b18e8a1fc8f81933ce0f2b965 +size 147720 diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-Bold.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Bold.otf new file mode 100644 index 0000000..a5c185e --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Bold.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79d670822f6837ed112e614dceef5c628d45eb8b1ecd54669d5b115b7485f3be +size 115808 diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-BoldItalic.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-BoldItalic.otf new file mode 100644 index 0000000..c8ecd2d --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-BoldItalic.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf61e706e65365ce72064983ff457c3787884edabebdbab734053b2471d557c +size 120544 diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-Book.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Book.otf new file mode 100644 index 0000000..85353c4 --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Book.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0387bb24ceb2b554eb5781d00bcea082d8b8466d6e018cfe39144a10074d00f +size 111416 diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-BookItalic.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-BookItalic.otf new file mode 100644 index 0000000..0b2b019 --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-BookItalic.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8414bc4ca65c2490cce7556bb9f1d0dac732786e5114add3043e287d0ef36c8 +size 115596 diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-Extrabold.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Extrabold.otf new file mode 100644 index 0000000..6f9c1ec --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Extrabold.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc2e2cccd8bc7077df991567684ef5e07c1c5a4cb62b20d668c1248e2e4656e9 +size 140836 diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-ExtraboldItalic.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-ExtraboldItalic.otf new file mode 100644 index 0000000..46cba45 --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-ExtraboldItalic.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da53063a8beba6faaa32cacad3bbe1f91a4c92823a13603ec47589c43509c64d +size 147016 diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-Light.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Light.otf new file mode 100644 index 0000000..4dd9b6d --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Light.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26517468f45c247a7b82106d3431ac0e8f98834255165990af243bb6435d1903 +size 108212 diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-LightItalic.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-LightItalic.otf new file mode 100644 index 0000000..b4e76a8 --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-LightItalic.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:710a665f7d28319d9df51664b8278e21a65e0677c2cbd4a7c5db71d54eaef391 +size 112596 diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-Medium.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Medium.otf new file mode 100644 index 0000000..802d739 --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Medium.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f43bd724494fe6a5cc310f110763886f06de17fdff51634e3ca8bac97876b3f +size 117332 diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-MediumItalic.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-MediumItalic.otf new file mode 100644 index 0000000..d684ede --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-MediumItalic.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6180b9bf1d0eca52493617e5b3ae2ea84278c3fa3e6ca3e2e612d83e19d40070 +size 123628 diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-Regular.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Regular.otf new file mode 100644 index 0000000..389d60b --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Regular.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78cf1d5dadb841ee94680dc555b83768fc12550be2f1cfd79aee95bbdfb8d3e8 +size 109572 diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-RegularItalic.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-RegularItalic.otf new file mode 100644 index 0000000..2d463d8 --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-RegularItalic.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:834ffe34fd250d84781aa39c755ed0541db41cca545b6efa01584863d3cff062 +size 114036 diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-Ultra.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Ultra.otf new file mode 100644 index 0000000..b710f7a --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-Ultra.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b40dd025fd37c51a7c56d82cf6f02af27b818fea53abd58b5d03f4af3bca4aff +size 135624 diff --git a/themes/op-dz/design-source/schriften-otf/ABCFavorit-UltraItalic.otf b/themes/op-dz/design-source/schriften-otf/ABCFavorit-UltraItalic.otf new file mode 100644 index 0000000..3252b50 --- /dev/null +++ b/themes/op-dz/design-source/schriften-otf/ABCFavorit-UltraItalic.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59f9c0ff5d8d052bf839afd3fcad26d210c708e1ae7d9bf0347ce2f6baf038ca +size 135844 diff --git a/themes/op-dz/layouts/404.html b/themes/op-dz/layouts/404.html new file mode 100644 index 0000000..4618838 --- /dev/null +++ b/themes/op-dz/layouts/404.html @@ -0,0 +1,13 @@ +{{ define "main" }} +
    +
    +

    {{ i18n "home" }}

    +

    {{ i18n "notFoundTitle" }}

    +

    {{ i18n "notFoundText" }}

    + +
    +
    +{{ end }} diff --git a/themes/op-dz/layouts/_default/baseof.html b/themes/op-dz/layouts/_default/baseof.html new file mode 100644 index 0000000..a8c5b32 --- /dev/null +++ b/themes/op-dz/layouts/_default/baseof.html @@ -0,0 +1,23 @@ + + + + {{ partial "head.html" . }} + + + + + {{ i18n "skipLink" }} + + {{ partial "navbar.html" . }} + {{ partial "offcanvas.html" . }} + +
    + {{ block "main" . }}{{ end }} +
    + + {{ partial "footer.html" . }} + + {{ partial "scripts.html" . }} + + + diff --git a/themes/op-dz/layouts/_default/list.html b/themes/op-dz/layouts/_default/list.html new file mode 100644 index 0000000..b1677b6 --- /dev/null +++ b/themes/op-dz/layouts/_default/list.html @@ -0,0 +1,21 @@ +{{ define "main" }} +
    +
    +

    {{ .Title }}

    + {{ with .Content }}
    {{ . }}
    {{ end }} + +
    + {{ range .Pages }} +
    +
    + {{ with .Params.kategorie }}{{ . }}{{ end }} + {{ if not .Date.IsZero }}

    {{ time.Format "Mon, 2. Jan 2006" .Date }}

    {{ end }} +

    {{ .Title }}

    +

    {{ .Params.teaser | default .Summary }}

    +
    +
    + {{ end }} +
    +
    +
    +{{ end }} diff --git a/themes/op-dz/layouts/_default/single.html b/themes/op-dz/layouts/_default/single.html new file mode 100644 index 0000000..c58e4a7 --- /dev/null +++ b/themes/op-dz/layouts/_default/single.html @@ -0,0 +1,22 @@ +{{ define "main" }} +
    +
    + {{ with .Params.kategorie }}{{ . }}{{ end }} +

    {{ .Title }}

    + {{ if or .Params.author (not .Date.IsZero) }} +

    + {{ with .Params.author }}von {{ . }}{{ if not $.Date.IsZero }} · {{ end }}{{ end }} + {{ if not .Date.IsZero }}{{ time.Format "2. Jan 2006" .Date }}{{ end }} +

    + {{ end }} +
    +
    + +
    +
    + {{ $img := .Resources.GetMatch "{cover,*featured*,image}.*" }} + {{ with $img }}{{ end }} + {{ .Content }} +
    +
    +{{ end }} diff --git a/themes/op-dz/layouts/_default/term.html b/themes/op-dz/layouts/_default/term.html new file mode 100644 index 0000000..f6e87c9 --- /dev/null +++ b/themes/op-dz/layouts/_default/term.html @@ -0,0 +1,9 @@ +{{ define "main" }} +
    +
    +

    {{ i18n "breadcrumbLocations" }} » {{ partial "kat-label.html" .Title }}

    +

    {{ partial "kat-label.html" .Title }}

    +
    +
    + {{ partial "explorer.html" (dict "pages" .Pages) }} +{{ end }} diff --git a/themes/op-dz/layouts/erinnerungsorte/list.html b/themes/op-dz/layouts/erinnerungsorte/list.html new file mode 100644 index 0000000..d1a9417 --- /dev/null +++ b/themes/op-dz/layouts/erinnerungsorte/list.html @@ -0,0 +1,10 @@ +{{ define "main" }} +
    +
    +

    {{ with .Params.heroTitle }}{{ . | safeHTML }}{{ else }}{{ .Title }}{{ end }}

    + {{ with .Params.heroLead }}

    {{ . }}

    {{ end }} +
    +
    + + {{ partial "explorer.html" (dict "pages" .Pages "showFilter" false "markerColor" "#1e2758") }} +{{ end }} diff --git a/themes/op-dz/layouts/erinnerungsorte/single.html b/themes/op-dz/layouts/erinnerungsorte/single.html new file mode 100644 index 0000000..e7df647 --- /dev/null +++ b/themes/op-dz/layouts/erinnerungsorte/single.html @@ -0,0 +1,59 @@ +{{ define "main" }} + +
    +
    +

    + {{ i18n "breadcrumbMemorials" }} +

    +

    {{ .Title }}

    + {{ with .Params.subtitle }}

    {{ . }}

    {{ end }} +
    +
    + +
    +
    +
    + + +
    +
    + {{ $img := .Resources.GetMatch "{cover,*featured*,image}.*" }} + {{ with $img }}{{ $.Title }}{{ end }} + {{ with .Params.bildnachweis }}

    {{ . | safeHTML }}

    {{ end }} + {{ .Content }} + {{ with .Params.quelle }} +

    {{ i18n "externalSource" }}

    +

    {{ . }}

    + {{ end }} +
    +
    + + +
    + {{ if and .Params.lat .Params.lng }} +
    + {{ partial "karte.html" (dict "pages" (slice .) "klein" true "markerColor" "#1e2758") }} +
    + {{ with .Params.address }}

    {{ . }}

    {{ end }} + ↳ {{ i18n "directions" }} +
    +
    + {{ end }} + + {{ if or .Params.art .Params.datum }} +
    +
    + {{ with .Params.art }}{{ . }}{{ end }} + {{ with .Params.datum }}

    {{ . }}

    {{ end }} +
    +
    + {{ end }} +
    + +
    + +

    ← {{ i18n "allMemorials" }}

    +
    +
    +{{ end }} diff --git a/themes/op-dz/layouts/index.html b/themes/op-dz/layouts/index.html new file mode 100644 index 0000000..b7c2c31 --- /dev/null +++ b/themes/op-dz/layouts/index.html @@ -0,0 +1,161 @@ +{{ define "main" }} + + +
    +
    +
    +
    +

    {{ with .Params.heroTitle }}{{ . | safeHTML }}{{ else }}Wie erinnern wir gemeinsam an das, was nicht vergessen werden darf?{{ end }}

    +
    +
    +
    +

    Öffnungszeiten

    +
      + {{ range site.Params.openingHours }} +
    • {{ .label }} · {{ .time }}
    • + {{ end }} +
    + {{ with site.Params.openingNote }}

    {{ . }}

    {{ end }} + Anfahrt +
    +
    +
    +
    + + +
    + + + {{ $veranstaltungen := where site.RegularPages "Section" "veranstaltungen" }} + {{ with $veranstaltungen }} +
    +
    +

    Veranstaltungen

    +
    + {{ range first 4 (sort . "Date" "asc") }} +
    +
    + {{ with .Params.kategorie }}{{ . }}{{ end }} +

    {{ time.Format "Mon, 2. Jan · 15:04 Uhr" .Date }}

    +

    {{ .Title }}

    +

    {{ .Params.teaser | default .Summary }}

    +
    +
    + {{ end }} +
    + +
    +
    + {{ end }} + + +
    +
    +
    +
    +

    {{ .Params.leitbildTitle | default "Unser Leitbild" }}

    + {{ with .Params.leitbildLead }}

    {{ . }}

    {{ end }} + {{ .Content }} + {{ with .Params.leitbildMehrURL }}Mehr erfahren{{ end }} +
    +
    + + +
    +
    +
    +
    + + + {{ $neuigkeiten := where site.RegularPages "Section" "neuigkeiten" }} + {{ with $neuigkeiten }} +
    +
    +

    Neuigkeiten

    +
    + {{ range first 3 . }} +
    +
    +
    + {{ $img := .Resources.GetMatch "{cover,*featured*,image}.*" }} + {{ with $img }} + + {{ else }} +
    Bild 16:9
    + {{ end }} +
    +
    +

    {{ .Title }}

    +

    {{ with .Params.author }}von {{ . }} · {{ end }}{{ time.Format "2. Jan 2006" .Date }}

    +

    {{ .Params.teaser | default .Summary }}

    +
    +
    +
    + {{ end }} +
    + +
    +
    + {{ end }} + + +
    +
    +

    Aus der Bildergalerie

    +
    +
    +
    +
    +
      + {{ range seq (site.Params.galerieCount | default 6) }} +
    • Galerie {{ . }}
    • + {{ end }} +
    + + +
    +
      +
      +
      +
      + + +
      +
      +
      +
      +

      Newsletter

      +

      {{ site.Params.newsletterText | default "Platzhaltersatz: Bleiben Sie über Veranstaltungen und Neuigkeiten auf dem Laufenden." }}

      +
      +
      +
      +
      + +
      + +
      +
      +
      + +
      +
      + +
      +
      +
      +
      +
      +
      + +{{ end }} diff --git a/themes/op-dz/layouts/partials/explorer.html b/themes/op-dz/layouts/partials/explorer.html new file mode 100644 index 0000000..c1b5de8 --- /dev/null +++ b/themes/op-dz/layouts/partials/explorer.html @@ -0,0 +1,56 @@ +{{/* + Split-View "Explorer": links Card-Liste mit Suche & Kategorie-Filter, + rechts sticky Karte. Aufruf: (dict "pages" ) +*/}} +{{ $pages := sort .pages "Title" "asc" }} +{{ $cats := site.Data.kategorien | default dict }} +{{ $showFilter := true }}{{ if isset . "showFilter" }}{{ $showFilter = .showFilter }}{{ end }} +{{ $markerColor := .markerColor }} + +
      + +
      +
      +
      {{ len $pages }} {{ i18n "results" }}
      + +
      + + {{ if $showFilter }} +
      + + {{ i18n "filterToggle" }} + + +
      +
      + + +
      +
      + {{ range $cat, $data := $cats }} + + {{ end }} +
      +
      +
      + {{ end }} + +
      + {{ range $pages }} + {{ partial "schauplatz-card.html" . }} + {{ end }} +
      +
      + +
      + {{ partial "karte.html" (dict "pages" $pages) }} +
      + +
      diff --git a/themes/op-dz/layouts/partials/footer.html b/themes/op-dz/layouts/partials/footer.html new file mode 100644 index 0000000..d5c2205 --- /dev/null +++ b/themes/op-dz/layouts/partials/footer.html @@ -0,0 +1,80 @@ + +
      +
      + + +
      + {{ range site.Menus.main }} + {{ if .HasChildren }} +
      + +
      + {{ end }} + {{ end }} +
      + +
      + +
      +
      + +
      +
      +
      + {{ with site.Params.address }} + {{ with .street }}{{ . }}
      {{ end }} + {{ with .city }}{{ . }}
      {{ end }} + {{ end }} + {{ with site.Params.email }}{{ . }}{{ end }} + {{ with site.Params.phone }} · {{ . }}{{ end }} +
      +
      + {{ with site.Params.instagramURL }} +
      + +
      + {{ end }} + {{ with site.Menus.meta }} +
      + +
      + {{ end }} +
      + + {{ with site.Params.foerderLogo }} + + {{ else }} +
      + {{ site.Params.foerderHinweis | default "Platzhalterfläche für Förderlogos" }} +
      + {{ end }} + +
      + +
      + © {{ now.Year }} {{ site.Title }} + {{ with site.Menus.legal }} + + {{ end }} +
      + +
      +
      diff --git a/themes/op-dz/layouts/partials/head.html b/themes/op-dz/layouts/partials/head.html new file mode 100644 index 0000000..8784d32 --- /dev/null +++ b/themes/op-dz/layouts/partials/head.html @@ -0,0 +1,32 @@ + + +{{ if .IsHome }}{{ site.Title }}{{ else }}{{ .Title }} – {{ site.Title }}{{ end }} +{{/* Startseite zeigt denselben Karten-Explorer wie /schauplaetze/ → dort ist die kanonische URL */}} +{{ if .IsHome }}{{ end }} +{{ with .Description | default site.Params.description }}{{ end }} + +{{/* hreflang-Alternates für Sprachversionen */}} +{{ range .AllTranslations }} + +{{ end }} + +{{/* UIkit 3 – lokal gehostet (DSGVO: keine Third-Party-Requests) */}} + + + + +{{/* Theme-CSS: Fonts + Styles gebündelt, minifiziert, fingerprinted */}} +{{ $fonts := resources.Get "css/fonts.css" }} +{{ $main := resources.Get "css/main.css" }} +{{ $css := slice $fonts $main | resources.Concat "css/theme.css" }} +{{ if hugo.IsProduction }}{{ $css = $css | minify | fingerprint }}{{ end }} + + +{{/* Leaflet-CSS nur auf Karten-Seiten (Home + Schauplätze) */}} +{{ if or .IsHome (eq .Type "schauplaetze") (eq .Type "kategorien") (eq .Type "erinnerungsorte") }} + + + +{{ end }} + +{{ block "head" . }}{{ end }} diff --git a/themes/op-dz/layouts/partials/karte.html b/themes/op-dz/layouts/partials/karte.html new file mode 100644 index 0000000..9a2440c --- /dev/null +++ b/themes/op-dz/layouts/partials/karte.html @@ -0,0 +1,45 @@ +{{/* + Karten-Partial. Aufruf mit dict: + (dict "pages" "klein" false) + Baut den Leaflet-Container und bettet die Marker-Daten als JSON ein + (kein externer Request → CORS-frei, statisch). Der Filter kommt aus explorer.html. +*/}} +{{ $pages := .pages }} +{{ $klein := .klein }} +{{ $default := .markerColor | default site.Params.kategorieFarbeDefault | default "#1e2758" }} + +{{/* Farb-Map (Kategorie → Hex) für map.js aus data/kategorien.yaml */}} +{{ $colorMap := dict }} +{{ range $k, $v := site.Data.kategorien }}{{ $colorMap = merge $colorMap (dict $k $v.color) }}{{ end }} + +{{/* Marker-Daten aufbauen */}} +{{ $places := slice }} +{{ range $pages }} + {{ $img := "" }} + {{ with .Resources.GetMatch "{cover,*featured*,image}.*" }}{{ $img = .RelPermalink }} + {{ else }}{{ with .Params.image }}{{ $img = . | relURL }}{{ end }}{{ end }} + {{ if and .Params.lat .Params.lng }} + {{ $places = $places | append (dict + "title" .Title + "subtitle" (.Params.subtitle | default "") + "url" .RelPermalink + "lat" .Params.lat + "lng" .Params.lng + "categories" (.Params.kategorien | default slice) + "img" $img + ) }} + {{ end }} +{{ end }} + +{{ $payload := dict + "places" $places + "colors" $colorMap + "defaultColor" $default + "tileUrl" (site.Params.map.tileURL | default "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png") + "attribution" (site.Params.map.attribution | default `© OpenStreetMap-Mitwirkende`) +}} + +
      + + diff --git a/themes/op-dz/layouts/partials/kat-color.html b/themes/op-dz/layouts/partials/kat-color.html new file mode 100644 index 0000000..228fffc --- /dev/null +++ b/themes/op-dz/layouts/partials/kat-color.html @@ -0,0 +1,4 @@ +{{- /* Gibt die Markerfarbe für eine Kategorie (String als Kontext) zurück */ -}} +{{- $c := site.Params.kategorieFarbeDefault | default "#1e2758" -}} +{{- with index site.Data.kategorien . -}}{{- with .color -}}{{- $c = . -}}{{- end -}}{{- end -}} +{{- $c -}} diff --git a/themes/op-dz/layouts/partials/kat-label.html b/themes/op-dz/layouts/partials/kat-label.html new file mode 100644 index 0000000..a3b9c59 --- /dev/null +++ b/themes/op-dz/layouts/partials/kat-label.html @@ -0,0 +1,6 @@ +{{- /* Gibt das lokalisierte Anzeige-Label für eine Kategorie (String als Kontext) zurück */ -}} +{{- $lbl := . -}} +{{- if eq site.Language.Lang "en" -}} + {{- with index site.Data.kategorien . -}}{{- with .en -}}{{- $lbl = . -}}{{- end -}}{{- end -}} +{{- end -}} +{{- $lbl -}} diff --git a/themes/op-dz/layouts/partials/language-switcher.html b/themes/op-dz/layouts/partials/language-switcher.html new file mode 100644 index 0000000..2b89da1 --- /dev/null +++ b/themes/op-dz/layouts/partials/language-switcher.html @@ -0,0 +1,46 @@ +{{- /* Sprachumschalter. Aufruf: (dict "page" . "variant" "dropdown"|"list") */ -}} +{{ $cur := .page }} +{{ $variant := .variant | default "dropdown" }} + +{{ if eq $variant "list" }} +{{/* Einfache Liste (mobiles Offcanvas) */}} + +{{ else }} +{{/* Dropdown (Navbar) */}} +
      + +
      +
        + {{ range site.Sites }} + {{ $s := . }} + {{ $link := $s.Home.RelPermalink }} + {{ range $cur.AllTranslations }}{{ if eq .Language.Lang $s.Language.Lang }}{{ $link = .RelPermalink }}{{ end }}{{ end }} + {{ $isCurrent := eq $s.Language.Lang site.Language.Lang }} +
      • + + + {{ $s.Language.LanguageName }} + +
      • + {{ end }} +
      +
      +
      +{{ end }} diff --git a/themes/op-dz/layouts/partials/menu-url.html b/themes/op-dz/layouts/partials/menu-url.html new file mode 100644 index 0000000..5754022 --- /dev/null +++ b/themes/op-dz/layouts/partials/menu-url.html @@ -0,0 +1,4 @@ +{{- /* Interne Menü-URLs (beginnen mit /) bekommen das Sprach-Präfix; externe bleiben unverändert */ -}} +{{- $u := . -}} +{{- if hasPrefix $u "/" -}}{{- $u = $u | relLangURL -}}{{- end -}} +{{- $u -}} diff --git a/themes/op-dz/layouts/partials/navbar.html b/themes/op-dz/layouts/partials/navbar.html new file mode 100644 index 0000000..915aab5 --- /dev/null +++ b/themes/op-dz/layouts/partials/navbar.html @@ -0,0 +1,51 @@ + +
      +
      + +
      +
      diff --git a/themes/op-dz/layouts/partials/offcanvas.html b/themes/op-dz/layouts/partials/offcanvas.html new file mode 100644 index 0000000..57bf993 --- /dev/null +++ b/themes/op-dz/layouts/partials/offcanvas.html @@ -0,0 +1,27 @@ + +
      +
      + + +
      +
      diff --git a/themes/op-dz/layouts/partials/schauplatz-card.html b/themes/op-dz/layouts/partials/schauplatz-card.html new file mode 100644 index 0000000..02bed04 --- /dev/null +++ b/themes/op-dz/layouts/partials/schauplatz-card.html @@ -0,0 +1,41 @@ +{{/* Erwartet eine Schauplatz-Seite als Kontext (.) */}} +{{ $default := site.Params.kategorieFarbeDefault | default "#1e2758" }} +{{ $cat := "" }} +{{ with .Params.kategorien }}{{ $cat = index . 0 }}{{ end }} +{{ $color := $default }} +{{ with $cat }}{{ $color = partial "kat-color.html" . }}{{ end }} +{{ $img := "" }} +{{ with .Resources.GetMatch "{cover,*featured*,image}.*" }}{{ $img = .RelPermalink }} +{{ else }}{{ with .Params.image }}{{ $img = . | relURL }}{{ end }}{{ end }} + + {{ if $img }} + + + {{ if .Params.featured }}Tipp!{{ end }} + + {{ else }} + + + {{ if .Params.featured }}Tipp!{{ end }} + + {{ end }} + + {{ if $cat }}{{ partial "kat-label.html" $cat }} + {{ else }}{{ with .Params.art }}{{ . }}{{ end }}{{ end }} + {{ .Title }} + {{ with .Params.subtitle }}{{ . }}{{ end }} + {{ with .Params.address }} + + + {{ . }} + + {{ end }} + + diff --git a/themes/op-dz/layouts/partials/scripts.html b/themes/op-dz/layouts/partials/scripts.html new file mode 100644 index 0000000..4cb698d --- /dev/null +++ b/themes/op-dz/layouts/partials/scripts.html @@ -0,0 +1,8 @@ +{{/* Karten-JS nur auf Karten-Seiten (Home + Schauplätze) laden */}} +{{ if or .IsHome (eq .Type "schauplaetze") (eq .Type "kategorien") (eq .Type "erinnerungsorte") }} + + + {{ $map := resources.Get "js/map.js" }} + {{ if hugo.IsProduction }}{{ $map = $map | minify | fingerprint }}{{ end }} + +{{ end }} diff --git a/themes/op-dz/layouts/partials/search-modal.html b/themes/op-dz/layouts/partials/search-modal.html new file mode 100644 index 0000000..9fd71d0 --- /dev/null +++ b/themes/op-dz/layouts/partials/search-modal.html @@ -0,0 +1,16 @@ + +
      +
      + +
      +
      + + +

      Enter drücken – die Karte zeigt dann die passenden Schauplätze.

      +
      +
      +
      +
      diff --git a/themes/op-dz/layouts/partials/topbar.html b/themes/op-dz/layouts/partials/topbar.html new file mode 100644 index 0000000..3ce0efb --- /dev/null +++ b/themes/op-dz/layouts/partials/topbar.html @@ -0,0 +1,18 @@ + +{{ with site.Params.languages }} +
      +
      +
      + +
      +
      +
      +{{ end }} diff --git a/themes/op-dz/layouts/schauplaetze/list.html b/themes/op-dz/layouts/schauplaetze/list.html new file mode 100644 index 0000000..6ee7fcf --- /dev/null +++ b/themes/op-dz/layouts/schauplaetze/list.html @@ -0,0 +1,11 @@ +{{ define "main" }} +
      +
      + {{/* Hero-Texte kommen aus content/_index.md, damit / und /schauplaetze/ identisch bleiben */}} +

      {{ with site.Home.Params.heroTitle }}{{ . | safeHTML }}{{ else }}{{ $.Title }}{{ end }}

      + {{ with site.Home.Params.heroLead }}

      {{ . }}

      {{ end }} +
      +
      + + {{ partial "explorer.html" (dict "pages" .Pages) }} +{{ end }} diff --git a/themes/op-dz/layouts/schauplaetze/single.html b/themes/op-dz/layouts/schauplaetze/single.html new file mode 100644 index 0000000..d8b9a4e --- /dev/null +++ b/themes/op-dz/layouts/schauplaetze/single.html @@ -0,0 +1,65 @@ +{{ define "main" }} + {{ $cats := .Params.kategorien | default slice }} + {{ $cat := index $cats 0 }} + + +
      +
      +

      + {{ i18n "breadcrumbLocations" }} + {{ with $cat }} » {{ partial "kat-label.html" . }}{{ end }} +

      +

      {{ .Title }}

      + {{ with .Params.subtitle }}

      {{ . }}

      {{ end }} +
      +
      + +
      +
      +
      + + +
      +
      + {{ $img := .Resources.GetMatch "{cover,*featured*,image}.*" }} + {{ with $img }}{{ $.Title }}{{ end }} + {{ with .Params.bildnachweis }}

      {{ . | safeHTML }}

      {{ end }} + {{ .Content }} + {{ with .Params.quelle }} +

      {{ i18n "externalSource" }}

      +

      {{ . | safeHTML }}

      + {{ end }} +
      +
      + + +
      + {{ if and .Params.lat .Params.lng }} +
      + {{ partial "karte.html" (dict "pages" (slice .) "klein" true) }} +
      + {{ with .Params.address }}

      {{ . }}

      {{ end }} + ↳ {{ i18n "directions" }} +
      +
      + {{ end }} + + {{ if or $cats .Params.datum }} +
      +
      + {{ range $cats }} + {{ partial "kat-label.html" . }} + {{ end }} + {{ with .Params.datum }}

      {{ . }}

      {{ end }} +
      +
      + {{ end }} +
      + +
      + +

      ← {{ i18n "allLocations" }}

      +
      +
      +{{ end }} diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Black.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-Black.woff new file mode 100644 index 0000000..debf94b --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Black.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13758e76d34a615bbcc50fc71e8ab137a1f34cb368cc10b754d3c963c19b9a8d +size 77244 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Black.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-Black.woff2 new file mode 100644 index 0000000..06332a0 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Black.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:317b820867402aaaf672f90cec6b75e62695662632210be7dffd574a14fbae89 +size 42788 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-BlackItalic.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-BlackItalic.woff new file mode 100644 index 0000000..af4bce1 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-BlackItalic.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:165bd4a01f5bc7b8ee0d3123fd9d43ebab55cf60e1a0b05d1b0fdbac259abf61 +size 82016 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-BlackItalic.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-BlackItalic.woff2 new file mode 100644 index 0000000..bab3bac --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-BlackItalic.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c56920eafc48b44e049d0049faba3bcabf446e26b69570d1553251a68a3af943 +size 46708 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Bold.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-Bold.woff new file mode 100644 index 0000000..8523db0 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Bold.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f072902f86237b6b40449135cf53129eab0b2daead028398e379871dd8ce510 +size 64396 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Bold.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-Bold.woff2 new file mode 100644 index 0000000..385c728 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Bold.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce519d2b369c18949ec64afbaa711364beb4190884a82d6ed39a1c435d2f3540 +size 35012 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-BoldItalic.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-BoldItalic.woff new file mode 100644 index 0000000..605b0c9 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-BoldItalic.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:428fe9b943bfa28fa628775cc4be47fba8b85ff4b810f9b8ae6133c309fcb046 +size 69072 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-BoldItalic.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-BoldItalic.woff2 new file mode 100644 index 0000000..cfe5e62 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-BoldItalic.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87686d958b8c97f8f29b8ce1fa03be109c4823d37c448c168f38b00b7bfde3ea +size 38736 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Book.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-Book.woff new file mode 100644 index 0000000..e8c4dfd --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Book.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6bc055e278d4f5b9ce3ec8a8545aef5d70e887a5468c53f19e34f216019aec +size 63804 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Book.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-Book.woff2 new file mode 100644 index 0000000..89f29ab --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Book.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3cfa124b608e439c5fc49e69133ddf6a7570cd4105f11a7953803cd2df75a73 +size 34520 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-BookItalic.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-BookItalic.woff new file mode 100644 index 0000000..38e9a9d --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-BookItalic.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ba14eee08e39a38dbf8b0de506d67445f10ba78b8ef767c7803f8d327fda579 +size 67520 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-BookItalic.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-BookItalic.woff2 new file mode 100644 index 0000000..2912bb9 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-BookItalic.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08e6648cd14dacf1168c9bab592782ebaf924a96554758916926ea8f5840a1bd +size 37972 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Extrabold.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-Extrabold.woff new file mode 100644 index 0000000..7b54832 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Extrabold.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45eacc1a0a01e1ff302c82d886d01281460b3efdb7928efe62041e44ff6e0edb +size 76348 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Extrabold.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-Extrabold.woff2 new file mode 100644 index 0000000..cbc0c66 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Extrabold.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96761d754e47f0fe2c3c343e6b1059c8ff3d165e3b8db3ee0688ba3b50569ab6 +size 42480 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-ExtraboldItalic.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-ExtraboldItalic.woff new file mode 100644 index 0000000..8c92d44 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-ExtraboldItalic.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffed3f47b61411276bc22964a1355a9eac8e05c1a8c2364fcf585cb0022a943a +size 81664 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-ExtraboldItalic.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-ExtraboldItalic.woff2 new file mode 100644 index 0000000..ad199ab --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-ExtraboldItalic.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:895152f3e585f24c55e93b7bd8333f234e40bd311c33e850d473c47d0ecb5355 +size 46792 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Light.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-Light.woff new file mode 100644 index 0000000..072f52d --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Light.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb797a2fba6c45adfa0a0aeb48fed6e7f0f096971755c3c9016eec4c1ea02836 +size 61936 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Light.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-Light.woff2 new file mode 100644 index 0000000..3be1a10 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Light.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31a5f920d4fc37598f8f8fb8fa5780bcdf732eee3329c305da396d3c3aa470fa +size 33480 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-LightItalic.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-LightItalic.woff new file mode 100644 index 0000000..0670703 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-LightItalic.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b38f9c2156032e46e4b6ef94e17e821cfa805ebc60971f24b6596d0e2bc03d5d +size 65444 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-LightItalic.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-LightItalic.woff2 new file mode 100644 index 0000000..40ce8ba --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-LightItalic.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c0892d809d1d6a6303c04f21cbfde5ac1220cef606961d56a7e17e1b9a26dbb +size 36560 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Medium.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-Medium.woff new file mode 100644 index 0000000..2399211 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Medium.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:526d1bfd771a58425857c48797c3e019b9698648e152652d7c0957daaa7e4b4c +size 65484 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Medium.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-Medium.woff2 new file mode 100644 index 0000000..6a434f4 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Medium.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb9e8a34a3ffbfd380413b72131a93a30d88e72c43fa334d8efddb044a9ff72 +size 35752 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-MediumItalic.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-MediumItalic.woff new file mode 100644 index 0000000..92fb856 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-MediumItalic.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf4623f2d4b270eacec3c84831d214325cc66d68332f56610c54dc753e9bb22 +size 70688 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-MediumItalic.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-MediumItalic.woff2 new file mode 100644 index 0000000..23059f5 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-MediumItalic.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a717bf84bbc77dbd841c3698d60c95515c92922ec0248d31196bd2d1ea1e67fe +size 39948 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Regular.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-Regular.woff new file mode 100644 index 0000000..81cb19d --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Regular.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a59cba83fe90b32127f6ef0a1bc14074e2d327e51955ea218ab556626baee85 +size 62420 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Regular.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-Regular.woff2 new file mode 100644 index 0000000..ed0e75c --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Regular.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a661b572d59ac080a4561d03c500c1dd4ebd824f8c7e4ce34354aa85cd4eaf9d +size 33852 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-RegularItalic.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-RegularItalic.woff new file mode 100644 index 0000000..1b7f6be --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-RegularItalic.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a982c4e7f11f936aa42aa1b3a6cb8c1a0ca3e3092a9c88e53e48d61083e6807e +size 66340 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-RegularItalic.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-RegularItalic.woff2 new file mode 100644 index 0000000..ec2df7b --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-RegularItalic.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e432d6141a2852e398aaa5285adefe85d55721af90e74d30ed1ee77a62d843 +size 37104 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Ultra.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-Ultra.woff new file mode 100644 index 0000000..cbf26c1 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Ultra.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02db2a49133f27c6602cc1e08bfbb149dfa7ed8ba2561d8fa2c08da7b68afc9a +size 73344 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-Ultra.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-Ultra.woff2 new file mode 100644 index 0000000..aaf61be --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-Ultra.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6fff8da77fbb59e49367860b875d37199b0de831b7232925b7774c04d3ae14 +size 40332 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-UltraItalic.woff b/themes/op-dz/static/fonts/favorit/ABCFavorit-UltraItalic.woff new file mode 100644 index 0000000..ce82e25 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-UltraItalic.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb18c0e0bca3cd9b6b9f6af7533043e3e83a223c1a46441057d0dd63aa53a62b +size 77296 diff --git a/themes/op-dz/static/fonts/favorit/ABCFavorit-UltraItalic.woff2 b/themes/op-dz/static/fonts/favorit/ABCFavorit-UltraItalic.woff2 new file mode 100644 index 0000000..64234c4 --- /dev/null +++ b/themes/op-dz/static/fonts/favorit/ABCFavorit-UltraItalic.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab50b8a7813a2f4d86528c4feff105a4a3d97abf457a44984e40d3f3eecf51db +size 43048 diff --git a/themes/op-dz/static/images/foerderlogos/logo-footer.png b/themes/op-dz/static/images/foerderlogos/logo-footer.png new file mode 100644 index 0000000..3c73c69 --- /dev/null +++ b/themes/op-dz/static/images/foerderlogos/logo-footer.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd6df0816f386e6d3200eba32bbd413c061b0ea8e55b593ff073cd982f208132 +size 23704 diff --git a/themes/op-dz/static/images/formen/BogenGroup_lime_hell.png b/themes/op-dz/static/images/formen/BogenGroup_lime_hell.png new file mode 100644 index 0000000..9de99c0 --- /dev/null +++ b/themes/op-dz/static/images/formen/BogenGroup_lime_hell.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8258b1578e374628c65a7dd4e2575bcb33341f7dabe89e1e2c306aa68d2f88b +size 36588 diff --git a/themes/op-dz/static/images/formen/BogenGroup_lime_hell.svg b/themes/op-dz/static/images/formen/BogenGroup_lime_hell.svg new file mode 100644 index 0000000..7da72f4 --- /dev/null +++ b/themes/op-dz/static/images/formen/BogenGroup_lime_hell.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/op-dz/static/images/formen/BogenGroup_nacht.png b/themes/op-dz/static/images/formen/BogenGroup_nacht.png new file mode 100644 index 0000000..59339bd --- /dev/null +++ b/themes/op-dz/static/images/formen/BogenGroup_nacht.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84c62067830ffdfe08374271ce06fd02c5c01a7dbc520bba86c39ac77c5f9fa +size 36359 diff --git a/themes/op-dz/static/images/formen/BogenGroup_nacht.svg b/themes/op-dz/static/images/formen/BogenGroup_nacht.svg new file mode 100644 index 0000000..93fe4bb --- /dev/null +++ b/themes/op-dz/static/images/formen/BogenGroup_nacht.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/op-dz/static/images/formen/Bogen_Left_nacht.png b/themes/op-dz/static/images/formen/Bogen_Left_nacht.png new file mode 100644 index 0000000..3f74e3a --- /dev/null +++ b/themes/op-dz/static/images/formen/Bogen_Left_nacht.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cc6f9df702ed67a66132f52e2dd4a358f51bfcb2778dbcc5b4ae82e54604d31 +size 15707 diff --git a/themes/op-dz/static/images/formen/Bogen_Left_nacht.svg b/themes/op-dz/static/images/formen/Bogen_Left_nacht.svg new file mode 100644 index 0000000..9d5fc4b --- /dev/null +++ b/themes/op-dz/static/images/formen/Bogen_Left_nacht.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/op-dz/static/images/formen/Bogen_Right_limeHell.png b/themes/op-dz/static/images/formen/Bogen_Right_limeHell.png new file mode 100644 index 0000000..10ab335 --- /dev/null +++ b/themes/op-dz/static/images/formen/Bogen_Right_limeHell.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec5a7bade1bf2d573a94a0249d5e3d9a3cd981ff76eaad6246af2c928db34aaf +size 15647 diff --git a/themes/op-dz/static/images/formen/Bogen_Right_limeHell.svg b/themes/op-dz/static/images/formen/Bogen_Right_limeHell.svg new file mode 100644 index 0000000..fa6c2e7 --- /dev/null +++ b/themes/op-dz/static/images/formen/Bogen_Right_limeHell.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/op-dz/static/images/formen/Raster.png b/themes/op-dz/static/images/formen/Raster.png new file mode 100644 index 0000000..c29d4cc --- /dev/null +++ b/themes/op-dz/static/images/formen/Raster.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38172c0831dd5d5ffe19721444bb1227cbd922c1db0813eea137d1f3621e3a93 +size 131884 diff --git a/themes/op-dz/static/images/formen/Raster.svg b/themes/op-dz/static/images/formen/Raster.svg new file mode 100644 index 0000000..8d41ca8 --- /dev/null +++ b/themes/op-dz/static/images/formen/Raster.svg @@ -0,0 +1,4761 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/op-dz/static/images/logos/Logo_OP_DZ_black.png b/themes/op-dz/static/images/logos/Logo_OP_DZ_black.png new file mode 100644 index 0000000..3774b34 --- /dev/null +++ b/themes/op-dz/static/images/logos/Logo_OP_DZ_black.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ba79ef568bab46a41593246f977631838be7177dc95974467c8e016ddb446b8 +size 71967 diff --git a/themes/op-dz/static/images/logos/Logo_OP_DZ_black.svg b/themes/op-dz/static/images/logos/Logo_OP_DZ_black.svg new file mode 100644 index 0000000..4db136f --- /dev/null +++ b/themes/op-dz/static/images/logos/Logo_OP_DZ_black.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/op-dz/static/images/logos/Logo_OP_DZ_blau.png b/themes/op-dz/static/images/logos/Logo_OP_DZ_blau.png new file mode 100644 index 0000000..89f13bc --- /dev/null +++ b/themes/op-dz/static/images/logos/Logo_OP_DZ_blau.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:174a9e84ff0ea079a52456d1e6c58c2a32ae89c85097c7c3aaf4c7054d69598c +size 71646 diff --git a/themes/op-dz/static/images/logos/Logo_OP_DZ_blau.svg b/themes/op-dz/static/images/logos/Logo_OP_DZ_blau.svg new file mode 100644 index 0000000..16d9783 --- /dev/null +++ b/themes/op-dz/static/images/logos/Logo_OP_DZ_blau.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/themes/op-dz/static/images/logos/Logo_OP_DZ_negativ.png b/themes/op-dz/static/images/logos/Logo_OP_DZ_negativ.png new file mode 100644 index 0000000..820807a --- /dev/null +++ b/themes/op-dz/static/images/logos/Logo_OP_DZ_negativ.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c9500deeaf1eaeeeca090dd9cbab20a974120001bb5437c40ecd0fdd3d9e5bc +size 68074 diff --git a/themes/op-dz/static/vendor/leaflet/images/layers-2x.png b/themes/op-dz/static/vendor/leaflet/images/layers-2x.png new file mode 100644 index 0000000..d3cf7e5 --- /dev/null +++ b/themes/op-dz/static/vendor/leaflet/images/layers-2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066daca850d8ffbef007af00b06eac0015728dee279c51f3cb6c716df7c42edf +size 1259 diff --git a/themes/op-dz/static/vendor/leaflet/images/layers.png b/themes/op-dz/static/vendor/leaflet/images/layers.png new file mode 100644 index 0000000..7b44754 --- /dev/null +++ b/themes/op-dz/static/vendor/leaflet/images/layers.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dbbe9d028e292f36fcba8f8b3a28d5e8932754fc2215b9ac69e4cdecf5107c6 +size 696 diff --git a/themes/op-dz/static/vendor/leaflet/images/marker-icon-2x.png b/themes/op-dz/static/vendor/leaflet/images/marker-icon-2x.png new file mode 100644 index 0000000..09e8445 --- /dev/null +++ b/themes/op-dz/static/vendor/leaflet/images/marker-icon-2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00179c4c1ee830d3a108412ae0d294f55776cfeb085c60129a39aa6fc4ae2528 +size 2464 diff --git a/themes/op-dz/static/vendor/leaflet/images/marker-icon.png b/themes/op-dz/static/vendor/leaflet/images/marker-icon.png new file mode 100644 index 0000000..b1789c7 --- /dev/null +++ b/themes/op-dz/static/vendor/leaflet/images/marker-icon.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:574c3a5cca85f4114085b6841596d62f00d7c892c7b03f28cbfa301deb1dc437 +size 1466 diff --git a/themes/op-dz/static/vendor/leaflet/images/marker-shadow.png b/themes/op-dz/static/vendor/leaflet/images/marker-shadow.png new file mode 100644 index 0000000..dc11121 --- /dev/null +++ b/themes/op-dz/static/vendor/leaflet/images/marker-shadow.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:264f5c640339f042dd729062cfc04c17f8ea0f29882b538e3848ed8f10edb4da +size 618 diff --git a/themes/op-dz/static/vendor/leaflet/leaflet.css b/themes/op-dz/static/vendor/leaflet/leaflet.css new file mode 100644 index 0000000..2961b76 --- /dev/null +++ b/themes/op-dz/static/vendor/leaflet/leaflet.css @@ -0,0 +1,661 @@ +/* required styles */ + +.leaflet-pane, +.leaflet-tile, +.leaflet-marker-icon, +.leaflet-marker-shadow, +.leaflet-tile-container, +.leaflet-pane > svg, +.leaflet-pane > canvas, +.leaflet-zoom-box, +.leaflet-image-layer, +.leaflet-layer { + position: absolute; + left: 0; + top: 0; + } +.leaflet-container { + overflow: hidden; + } +.leaflet-tile, +.leaflet-marker-icon, +.leaflet-marker-shadow { + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + -webkit-user-drag: none; + } +/* Prevents IE11 from highlighting tiles in blue */ +.leaflet-tile::selection { + background: transparent; +} +/* Safari renders non-retina tile on retina better with this, but Chrome is worse */ +.leaflet-safari .leaflet-tile { + image-rendering: -webkit-optimize-contrast; + } +/* hack that prevents hw layers "stretching" when loading new tiles */ +.leaflet-safari .leaflet-tile-container { + width: 1600px; + height: 1600px; + -webkit-transform-origin: 0 0; + } +.leaflet-marker-icon, +.leaflet-marker-shadow { + display: block; + } +/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */ +/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */ +.leaflet-container .leaflet-overlay-pane svg { + max-width: none !important; + max-height: none !important; + } +.leaflet-container .leaflet-marker-pane img, +.leaflet-container .leaflet-shadow-pane img, +.leaflet-container .leaflet-tile-pane img, +.leaflet-container img.leaflet-image-layer, +.leaflet-container .leaflet-tile { + max-width: none !important; + max-height: none !important; + width: auto; + padding: 0; + } + +.leaflet-container img.leaflet-tile { + /* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */ + mix-blend-mode: plus-lighter; +} + +.leaflet-container.leaflet-touch-zoom { + -ms-touch-action: pan-x pan-y; + touch-action: pan-x pan-y; + } +.leaflet-container.leaflet-touch-drag { + -ms-touch-action: pinch-zoom; + /* Fallback for FF which doesn't support pinch-zoom */ + touch-action: none; + touch-action: pinch-zoom; +} +.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom { + -ms-touch-action: none; + touch-action: none; +} +.leaflet-container { + -webkit-tap-highlight-color: transparent; +} +.leaflet-container a { + -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4); +} +.leaflet-tile { + filter: inherit; + visibility: hidden; + } +.leaflet-tile-loaded { + visibility: inherit; + } +.leaflet-zoom-box { + width: 0; + height: 0; + -moz-box-sizing: border-box; + box-sizing: border-box; + z-index: 800; + } +/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */ +.leaflet-overlay-pane svg { + -moz-user-select: none; + } + +.leaflet-pane { z-index: 400; } + +.leaflet-tile-pane { z-index: 200; } +.leaflet-overlay-pane { z-index: 400; } +.leaflet-shadow-pane { z-index: 500; } +.leaflet-marker-pane { z-index: 600; } +.leaflet-tooltip-pane { z-index: 650; } +.leaflet-popup-pane { z-index: 700; } + +.leaflet-map-pane canvas { z-index: 100; } +.leaflet-map-pane svg { z-index: 200; } + +.leaflet-vml-shape { + width: 1px; + height: 1px; + } +.lvml { + behavior: url(#default#VML); + display: inline-block; + position: absolute; + } + + +/* control positioning */ + +.leaflet-control { + position: relative; + z-index: 800; + pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */ + pointer-events: auto; + } +.leaflet-top, +.leaflet-bottom { + position: absolute; + z-index: 1000; + pointer-events: none; + } +.leaflet-top { + top: 0; + } +.leaflet-right { + right: 0; + } +.leaflet-bottom { + bottom: 0; + } +.leaflet-left { + left: 0; + } +.leaflet-control { + float: left; + clear: both; + } +.leaflet-right .leaflet-control { + float: right; + } +.leaflet-top .leaflet-control { + margin-top: 10px; + } +.leaflet-bottom .leaflet-control { + margin-bottom: 10px; + } +.leaflet-left .leaflet-control { + margin-left: 10px; + } +.leaflet-right .leaflet-control { + margin-right: 10px; + } + + +/* zoom and fade animations */ + +.leaflet-fade-anim .leaflet-popup { + opacity: 0; + -webkit-transition: opacity 0.2s linear; + -moz-transition: opacity 0.2s linear; + transition: opacity 0.2s linear; + } +.leaflet-fade-anim .leaflet-map-pane .leaflet-popup { + opacity: 1; + } +.leaflet-zoom-animated { + -webkit-transform-origin: 0 0; + -ms-transform-origin: 0 0; + transform-origin: 0 0; + } +svg.leaflet-zoom-animated { + will-change: transform; +} + +.leaflet-zoom-anim .leaflet-zoom-animated { + -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1); + -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1); + transition: transform 0.25s cubic-bezier(0,0,0.25,1); + } +.leaflet-zoom-anim .leaflet-tile, +.leaflet-pan-anim .leaflet-tile { + -webkit-transition: none; + -moz-transition: none; + transition: none; + } + +.leaflet-zoom-anim .leaflet-zoom-hide { + visibility: hidden; + } + + +/* cursors */ + +.leaflet-interactive { + cursor: pointer; + } +.leaflet-grab { + cursor: -webkit-grab; + cursor: -moz-grab; + cursor: grab; + } +.leaflet-crosshair, +.leaflet-crosshair .leaflet-interactive { + cursor: crosshair; + } +.leaflet-popup-pane, +.leaflet-control { + cursor: auto; + } +.leaflet-dragging .leaflet-grab, +.leaflet-dragging .leaflet-grab .leaflet-interactive, +.leaflet-dragging .leaflet-marker-draggable { + cursor: move; + cursor: -webkit-grabbing; + cursor: -moz-grabbing; + cursor: grabbing; + } + +/* marker & overlays interactivity */ +.leaflet-marker-icon, +.leaflet-marker-shadow, +.leaflet-image-layer, +.leaflet-pane > svg path, +.leaflet-tile-container { + pointer-events: none; + } + +.leaflet-marker-icon.leaflet-interactive, +.leaflet-image-layer.leaflet-interactive, +.leaflet-pane > svg path.leaflet-interactive, +svg.leaflet-image-layer.leaflet-interactive path { + pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */ + pointer-events: auto; + } + +/* visual tweaks */ + +.leaflet-container { + background: #ddd; + outline-offset: 1px; + } +.leaflet-container a { + color: #0078A8; + } +.leaflet-zoom-box { + border: 2px dotted #38f; + background: rgba(255,255,255,0.5); + } + + +/* general typography */ +.leaflet-container { + font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; + font-size: 12px; + font-size: 0.75rem; + line-height: 1.5; + } + + +/* general toolbar styles */ + +.leaflet-bar { + box-shadow: 0 1px 5px rgba(0,0,0,0.65); + border-radius: 4px; + } +.leaflet-bar a { + background-color: #fff; + border-bottom: 1px solid #ccc; + width: 26px; + height: 26px; + line-height: 26px; + display: block; + text-align: center; + text-decoration: none; + color: black; + } +.leaflet-bar a, +.leaflet-control-layers-toggle { + background-position: 50% 50%; + background-repeat: no-repeat; + display: block; + } +.leaflet-bar a:hover, +.leaflet-bar a:focus { + background-color: #f4f4f4; + } +.leaflet-bar a:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; + } +.leaflet-bar a:last-child { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-bottom: none; + } +.leaflet-bar a.leaflet-disabled { + cursor: default; + background-color: #f4f4f4; + color: #bbb; + } + +.leaflet-touch .leaflet-bar a { + width: 30px; + height: 30px; + line-height: 30px; + } +.leaflet-touch .leaflet-bar a:first-child { + border-top-left-radius: 2px; + border-top-right-radius: 2px; + } +.leaflet-touch .leaflet-bar a:last-child { + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; + } + +/* zoom control */ + +.leaflet-control-zoom-in, +.leaflet-control-zoom-out { + font: bold 18px 'Lucida Console', Monaco, monospace; + text-indent: 1px; + } + +.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out { + font-size: 22px; + } + + +/* layers control */ + +.leaflet-control-layers { + box-shadow: 0 1px 5px rgba(0,0,0,0.4); + background: #fff; + border-radius: 5px; + } +.leaflet-control-layers-toggle { + background-image: url(images/layers.png); + width: 36px; + height: 36px; + } +.leaflet-retina .leaflet-control-layers-toggle { + background-image: url(images/layers-2x.png); + background-size: 26px 26px; + } +.leaflet-touch .leaflet-control-layers-toggle { + width: 44px; + height: 44px; + } +.leaflet-control-layers .leaflet-control-layers-list, +.leaflet-control-layers-expanded .leaflet-control-layers-toggle { + display: none; + } +.leaflet-control-layers-expanded .leaflet-control-layers-list { + display: block; + position: relative; + } +.leaflet-control-layers-expanded { + padding: 6px 10px 6px 6px; + color: #333; + background: #fff; + } +.leaflet-control-layers-scrollbar { + overflow-y: scroll; + overflow-x: hidden; + padding-right: 5px; + } +.leaflet-control-layers-selector { + margin-top: 2px; + position: relative; + top: 1px; + } +.leaflet-control-layers label { + display: block; + font-size: 13px; + font-size: 1.08333em; + } +.leaflet-control-layers-separator { + height: 0; + border-top: 1px solid #ddd; + margin: 5px -10px 5px -6px; + } + +/* Default icon URLs */ +.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */ + background-image: url(images/marker-icon.png); + } + + +/* attribution and scale controls */ + +.leaflet-container .leaflet-control-attribution { + background: #fff; + background: rgba(255, 255, 255, 0.8); + margin: 0; + } +.leaflet-control-attribution, +.leaflet-control-scale-line { + padding: 0 5px; + color: #333; + line-height: 1.4; + } +.leaflet-control-attribution a { + text-decoration: none; + } +.leaflet-control-attribution a:hover, +.leaflet-control-attribution a:focus { + text-decoration: underline; + } +.leaflet-attribution-flag { + display: inline !important; + vertical-align: baseline !important; + width: 1em; + height: 0.6669em; + } +.leaflet-left .leaflet-control-scale { + margin-left: 5px; + } +.leaflet-bottom .leaflet-control-scale { + margin-bottom: 5px; + } +.leaflet-control-scale-line { + border: 2px solid #777; + border-top: none; + line-height: 1.1; + padding: 2px 5px 1px; + white-space: nowrap; + -moz-box-sizing: border-box; + box-sizing: border-box; + background: rgba(255, 255, 255, 0.8); + text-shadow: 1px 1px #fff; + } +.leaflet-control-scale-line:not(:first-child) { + border-top: 2px solid #777; + border-bottom: none; + margin-top: -2px; + } +.leaflet-control-scale-line:not(:first-child):not(:last-child) { + border-bottom: 2px solid #777; + } + +.leaflet-touch .leaflet-control-attribution, +.leaflet-touch .leaflet-control-layers, +.leaflet-touch .leaflet-bar { + box-shadow: none; + } +.leaflet-touch .leaflet-control-layers, +.leaflet-touch .leaflet-bar { + border: 2px solid rgba(0,0,0,0.2); + background-clip: padding-box; + } + + +/* popup */ + +.leaflet-popup { + position: absolute; + text-align: center; + margin-bottom: 20px; + } +.leaflet-popup-content-wrapper { + padding: 1px; + text-align: left; + border-radius: 12px; + } +.leaflet-popup-content { + margin: 13px 24px 13px 20px; + line-height: 1.3; + font-size: 13px; + font-size: 1.08333em; + min-height: 1px; + } +.leaflet-popup-content p { + margin: 17px 0; + margin: 1.3em 0; + } +.leaflet-popup-tip-container { + width: 40px; + height: 20px; + position: absolute; + left: 50%; + margin-top: -1px; + margin-left: -20px; + overflow: hidden; + pointer-events: none; + } +.leaflet-popup-tip { + width: 17px; + height: 17px; + padding: 1px; + + margin: -10px auto 0; + pointer-events: auto; + + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); + } +.leaflet-popup-content-wrapper, +.leaflet-popup-tip { + background: white; + color: #333; + box-shadow: 0 3px 14px rgba(0,0,0,0.4); + } +.leaflet-container a.leaflet-popup-close-button { + position: absolute; + top: 0; + right: 0; + border: none; + text-align: center; + width: 24px; + height: 24px; + font: 16px/24px Tahoma, Verdana, sans-serif; + color: #757575; + text-decoration: none; + background: transparent; + } +.leaflet-container a.leaflet-popup-close-button:hover, +.leaflet-container a.leaflet-popup-close-button:focus { + color: #585858; + } +.leaflet-popup-scrolled { + overflow: auto; + } + +.leaflet-oldie .leaflet-popup-content-wrapper { + -ms-zoom: 1; + } +.leaflet-oldie .leaflet-popup-tip { + width: 24px; + margin: 0 auto; + + -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)"; + filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678); + } + +.leaflet-oldie .leaflet-control-zoom, +.leaflet-oldie .leaflet-control-layers, +.leaflet-oldie .leaflet-popup-content-wrapper, +.leaflet-oldie .leaflet-popup-tip { + border: 1px solid #999; + } + + +/* div icon */ + +.leaflet-div-icon { + background: #fff; + border: 1px solid #666; + } + + +/* Tooltip */ +/* Base styles for the element that has a tooltip */ +.leaflet-tooltip { + position: absolute; + padding: 6px; + background-color: #fff; + border: 1px solid #fff; + border-radius: 3px; + color: #222; + white-space: nowrap; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + pointer-events: none; + box-shadow: 0 1px 3px rgba(0,0,0,0.4); + } +.leaflet-tooltip.leaflet-interactive { + cursor: pointer; + pointer-events: auto; + } +.leaflet-tooltip-top:before, +.leaflet-tooltip-bottom:before, +.leaflet-tooltip-left:before, +.leaflet-tooltip-right:before { + position: absolute; + pointer-events: none; + border: 6px solid transparent; + background: transparent; + content: ""; + } + +/* Directions */ + +.leaflet-tooltip-bottom { + margin-top: 6px; +} +.leaflet-tooltip-top { + margin-top: -6px; +} +.leaflet-tooltip-bottom:before, +.leaflet-tooltip-top:before { + left: 50%; + margin-left: -6px; + } +.leaflet-tooltip-top:before { + bottom: 0; + margin-bottom: -12px; + border-top-color: #fff; + } +.leaflet-tooltip-bottom:before { + top: 0; + margin-top: -12px; + margin-left: -6px; + border-bottom-color: #fff; + } +.leaflet-tooltip-left { + margin-left: -6px; +} +.leaflet-tooltip-right { + margin-left: 6px; +} +.leaflet-tooltip-left:before, +.leaflet-tooltip-right:before { + top: 50%; + margin-top: -6px; + } +.leaflet-tooltip-left:before { + right: 0; + margin-right: -12px; + border-left-color: #fff; + } +.leaflet-tooltip-right:before { + left: 0; + margin-left: -12px; + border-right-color: #fff; + } + +/* Printing */ + +@media print { + /* Prevent printers from removing background-images of controls. */ + .leaflet-control { + -webkit-print-color-adjust: exact; + print-color-adjust: exact; + } + } diff --git a/themes/op-dz/static/vendor/leaflet/leaflet.js b/themes/op-dz/static/vendor/leaflet/leaflet.js new file mode 100644 index 0000000..a3bf693 --- /dev/null +++ b/themes/op-dz/static/vendor/leaflet/leaflet.js @@ -0,0 +1,6 @@ +/* @preserve + * Leaflet 1.9.4, a JS library for interactive maps. https://leafletjs.com + * (c) 2010-2023 Vladimir Agafonkin, (c) 2010-2011 CloudMade + */ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).leaflet={})}(this,function(t){"use strict";function l(t){for(var e,i,n=1,o=arguments.length;n=this.min.x&&i.x<=this.max.x&&e.y>=this.min.y&&i.y<=this.max.y},intersects:function(t){t=_(t);var e=this.min,i=this.max,n=t.min,t=t.max,o=t.x>=e.x&&n.x<=i.x,t=t.y>=e.y&&n.y<=i.y;return o&&t},overlaps:function(t){t=_(t);var e=this.min,i=this.max,n=t.min,t=t.max,o=t.x>e.x&&n.xe.y&&n.y=n.lat&&i.lat<=o.lat&&e.lng>=n.lng&&i.lng<=o.lng},intersects:function(t){t=g(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),t=t.getNorthEast(),o=t.lat>=e.lat&&n.lat<=i.lat,t=t.lng>=e.lng&&n.lng<=i.lng;return o&&t},overlaps:function(t){t=g(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),t=t.getNorthEast(),o=t.lat>e.lat&&n.late.lng&&n.lng","http://www.w3.org/2000/svg"===(Wt.firstChild&&Wt.firstChild.namespaceURI));function y(t){return 0<=navigator.userAgent.toLowerCase().indexOf(t)}var b={ie:pt,ielt9:mt,edge:n,webkit:ft,android:gt,android23:vt,androidStock:yt,opera:xt,chrome:wt,gecko:bt,safari:Pt,phantom:Lt,opera12:o,win:Tt,ie3d:Mt,webkit3d:zt,gecko3d:_t,any3d:Ct,mobile:Zt,mobileWebkit:St,mobileWebkit3d:Et,msPointer:kt,pointer:Ot,touch:Bt,touchNative:At,mobileOpera:It,mobileGecko:Rt,retina:Nt,passiveEvents:Dt,canvas:jt,svg:Ht,vml:!Ht&&function(){try{var t=document.createElement("div"),e=(t.innerHTML='',t.firstChild);return e.style.behavior="url(#default#VML)",e&&"object"==typeof e.adj}catch(t){return!1}}(),inlineSvg:Wt,mac:0===navigator.platform.indexOf("Mac"),linux:0===navigator.platform.indexOf("Linux")},Ft=b.msPointer?"MSPointerDown":"pointerdown",Ut=b.msPointer?"MSPointerMove":"pointermove",Vt=b.msPointer?"MSPointerUp":"pointerup",qt=b.msPointer?"MSPointerCancel":"pointercancel",Gt={touchstart:Ft,touchmove:Ut,touchend:Vt,touchcancel:qt},Kt={touchstart:function(t,e){e.MSPOINTER_TYPE_TOUCH&&e.pointerType===e.MSPOINTER_TYPE_TOUCH&&O(e);ee(t,e)},touchmove:ee,touchend:ee,touchcancel:ee},Yt={},Xt=!1;function Jt(t,e,i){return"touchstart"!==e||Xt||(document.addEventListener(Ft,$t,!0),document.addEventListener(Ut,Qt,!0),document.addEventListener(Vt,te,!0),document.addEventListener(qt,te,!0),Xt=!0),Kt[e]?(i=Kt[e].bind(this,i),t.addEventListener(Gt[e],i,!1),i):(console.warn("wrong event specified:",e),u)}function $t(t){Yt[t.pointerId]=t}function Qt(t){Yt[t.pointerId]&&(Yt[t.pointerId]=t)}function te(t){delete Yt[t.pointerId]}function ee(t,e){if(e.pointerType!==(e.MSPOINTER_TYPE_MOUSE||"mouse")){for(var i in e.touches=[],Yt)e.touches.push(Yt[i]);e.changedTouches=[e],t(e)}}var ie=200;function ne(t,i){t.addEventListener("dblclick",i);var n,o=0;function e(t){var e;1!==t.detail?n=t.detail:"mouse"===t.pointerType||t.sourceCapabilities&&!t.sourceCapabilities.firesTouchEvents||((e=Ne(t)).some(function(t){return t instanceof HTMLLabelElement&&t.attributes.for})&&!e.some(function(t){return t instanceof HTMLInputElement||t instanceof HTMLSelectElement})||((e=Date.now())-o<=ie?2===++n&&i(function(t){var e,i,n={};for(i in t)e=t[i],n[i]=e&&e.bind?e.bind(t):e;return(t=n).type="dblclick",n.detail=2,n.isTrusted=!1,n._simulated=!0,n}(t)):n=1,o=e))}return t.addEventListener("click",e),{dblclick:i,simDblclick:e}}var oe,se,re,ae,he,le,ue=we(["transform","webkitTransform","OTransform","MozTransform","msTransform"]),ce=we(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),de="webkitTransition"===ce||"OTransition"===ce?ce+"End":"transitionend";function _e(t){return"string"==typeof t?document.getElementById(t):t}function pe(t,e){var i=t.style[e]||t.currentStyle&&t.currentStyle[e];return"auto"===(i=i&&"auto"!==i||!document.defaultView?i:(t=document.defaultView.getComputedStyle(t,null))?t[e]:null)?null:i}function P(t,e,i){t=document.createElement(t);return t.className=e||"",i&&i.appendChild(t),t}function T(t){var e=t.parentNode;e&&e.removeChild(t)}function me(t){for(;t.firstChild;)t.removeChild(t.firstChild)}function fe(t){var e=t.parentNode;e&&e.lastChild!==t&&e.appendChild(t)}function ge(t){var e=t.parentNode;e&&e.firstChild!==t&&e.insertBefore(t,e.firstChild)}function ve(t,e){return void 0!==t.classList?t.classList.contains(e):0<(t=xe(t)).length&&new RegExp("(^|\\s)"+e+"(\\s|$)").test(t)}function M(t,e){var i;if(void 0!==t.classList)for(var n=F(e),o=0,s=n.length;othis.options.maxZoom)?this.setZoom(t):this},panInsideBounds:function(t,e){this._enforcingBounds=!0;var i=this.getCenter(),t=this._limitCenter(i,this._zoom,g(t));return i.equals(t)||this.panTo(t,e),this._enforcingBounds=!1,this},panInside:function(t,e){var i=m((e=e||{}).paddingTopLeft||e.padding||[0,0]),n=m(e.paddingBottomRight||e.padding||[0,0]),o=this.project(this.getCenter()),t=this.project(t),s=this.getPixelBounds(),i=_([s.min.add(i),s.max.subtract(n)]),s=i.getSize();return i.contains(t)||(this._enforcingBounds=!0,n=t.subtract(i.getCenter()),i=i.extend(t).getSize().subtract(s),o.x+=n.x<0?-i.x:i.x,o.y+=n.y<0?-i.y:i.y,this.panTo(this.unproject(o),e),this._enforcingBounds=!1),this},invalidateSize:function(t){if(!this._loaded)return this;t=l({animate:!1,pan:!0},!0===t?{animate:!0}:t);var e=this.getSize(),i=(this._sizeChanged=!0,this._lastCenter=null,this.getSize()),n=e.divideBy(2).round(),o=i.divideBy(2).round(),n=n.subtract(o);return n.x||n.y?(t.animate&&t.pan?this.panBy(n):(t.pan&&this._rawPanBy(n),this.fire("move"),t.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(a(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:e,newSize:i})):this},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire("viewreset"),this._stop()},locate:function(t){var e,i;return t=this._locateOptions=l({timeout:1e4,watch:!1},t),"geolocation"in navigator?(e=a(this._handleGeolocationResponse,this),i=a(this._handleGeolocationError,this),t.watch?this._locationWatchId=navigator.geolocation.watchPosition(e,i,t):navigator.geolocation.getCurrentPosition(e,i,t)):this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(t){var e;this._container._leaflet_id&&(e=t.code,t=t.message||(1===e?"permission denied":2===e?"position unavailable":"timeout"),this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:e,message:"Geolocation error: "+t+"."}))},_handleGeolocationResponse:function(t){if(this._container._leaflet_id){var e,i,n=new v(t.coords.latitude,t.coords.longitude),o=n.toBounds(2*t.coords.accuracy),s=this._locateOptions,r=(s.setView&&(e=this.getBoundsZoom(o),this.setView(n,s.maxZoom?Math.min(e,s.maxZoom):e)),{latlng:n,bounds:o,timestamp:t.timestamp});for(i in t.coords)"number"==typeof t.coords[i]&&(r[i]=t.coords[i]);this.fire("locationfound",r)}},addHandler:function(t,e){return e&&(e=this[t]=new e(this),this._handlers.push(e),this.options[t]&&e.enable()),this},remove:function(){if(this._initEvents(!0),this.options.maxBounds&&this.off("moveend",this._panInsideMaxBounds),this._containerId!==this._container._leaflet_id)throw new Error("Map container is being reused by another instance");try{delete this._container._leaflet_id,delete this._containerId}catch(t){this._container._leaflet_id=void 0,this._containerId=void 0}for(var t in void 0!==this._locationWatchId&&this.stopLocate(),this._stop(),T(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._resizeRequest&&(r(this._resizeRequest),this._resizeRequest=null),this._clearHandlers(),this._loaded&&this.fire("unload"),this._layers)this._layers[t].remove();for(t in this._panes)T(this._panes[t]);return this._layers=[],this._panes=[],delete this._mapPane,delete this._renderer,this},createPane:function(t,e){e=P("div","leaflet-pane"+(t?" leaflet-"+t.replace("Pane","")+"-pane":""),e||this._mapPane);return t&&(this._panes[t]=e),e},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter.clone():this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var t=this.getPixelBounds();return new s(this.unproject(t.getBottomLeft()),this.unproject(t.getTopRight()))},getMinZoom:function(){return void 0===this.options.minZoom?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return void 0===this.options.maxZoom?void 0===this._layersMaxZoom?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(t,e,i){t=g(t),i=m(i||[0,0]);var n=this.getZoom()||0,o=this.getMinZoom(),s=this.getMaxZoom(),r=t.getNorthWest(),t=t.getSouthEast(),i=this.getSize().subtract(i),t=_(this.project(t,n),this.project(r,n)).getSize(),r=b.any3d?this.options.zoomSnap:1,a=i.x/t.x,i=i.y/t.y,t=e?Math.max(a,i):Math.min(a,i),n=this.getScaleZoom(t,n);return r&&(n=Math.round(n/(r/100))*(r/100),n=e?Math.ceil(n/r)*r:Math.floor(n/r)*r),Math.max(o,Math.min(s,n))},getSize:function(){return this._size&&!this._sizeChanged||(this._size=new p(this._container.clientWidth||0,this._container.clientHeight||0),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(t,e){t=this._getTopLeftPoint(t,e);return new f(t,t.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(t){return this.options.crs.getProjectedBounds(void 0===t?this.getZoom():t)},getPane:function(t){return"string"==typeof t?this._panes[t]:t},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(t,e){var i=this.options.crs;return e=void 0===e?this._zoom:e,i.scale(t)/i.scale(e)},getScaleZoom:function(t,e){var i=this.options.crs,t=(e=void 0===e?this._zoom:e,i.zoom(t*i.scale(e)));return isNaN(t)?1/0:t},project:function(t,e){return e=void 0===e?this._zoom:e,this.options.crs.latLngToPoint(w(t),e)},unproject:function(t,e){return e=void 0===e?this._zoom:e,this.options.crs.pointToLatLng(m(t),e)},layerPointToLatLng:function(t){t=m(t).add(this.getPixelOrigin());return this.unproject(t)},latLngToLayerPoint:function(t){return this.project(w(t))._round()._subtract(this.getPixelOrigin())},wrapLatLng:function(t){return this.options.crs.wrapLatLng(w(t))},wrapLatLngBounds:function(t){return this.options.crs.wrapLatLngBounds(g(t))},distance:function(t,e){return this.options.crs.distance(w(t),w(e))},containerPointToLayerPoint:function(t){return m(t).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(t){return m(t).add(this._getMapPanePos())},containerPointToLatLng:function(t){t=this.containerPointToLayerPoint(m(t));return this.layerPointToLatLng(t)},latLngToContainerPoint:function(t){return this.layerPointToContainerPoint(this.latLngToLayerPoint(w(t)))},mouseEventToContainerPoint:function(t){return De(t,this._container)},mouseEventToLayerPoint:function(t){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(t))},mouseEventToLatLng:function(t){return this.layerPointToLatLng(this.mouseEventToLayerPoint(t))},_initContainer:function(t){t=this._container=_e(t);if(!t)throw new Error("Map container not found.");if(t._leaflet_id)throw new Error("Map container is already initialized.");S(t,"scroll",this._onScroll,this),this._containerId=h(t)},_initLayout:function(){var t=this._container,e=(this._fadeAnimated=this.options.fadeAnimation&&b.any3d,M(t,"leaflet-container"+(b.touch?" leaflet-touch":"")+(b.retina?" leaflet-retina":"")+(b.ielt9?" leaflet-oldie":"")+(b.safari?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":"")),pe(t,"position"));"absolute"!==e&&"relative"!==e&&"fixed"!==e&&"sticky"!==e&&(t.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var t=this._panes={};this._paneRenderers={},this._mapPane=this.createPane("mapPane",this._container),Z(this._mapPane,new p(0,0)),this.createPane("tilePane"),this.createPane("overlayPane"),this.createPane("shadowPane"),this.createPane("markerPane"),this.createPane("tooltipPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(M(t.markerPane,"leaflet-zoom-hide"),M(t.shadowPane,"leaflet-zoom-hide"))},_resetView:function(t,e,i){Z(this._mapPane,new p(0,0));var n=!this._loaded,o=(this._loaded=!0,e=this._limitZoom(e),this.fire("viewprereset"),this._zoom!==e);this._moveStart(o,i)._move(t,e)._moveEnd(o),this.fire("viewreset"),n&&this.fire("load")},_moveStart:function(t,e){return t&&this.fire("zoomstart"),e||this.fire("movestart"),this},_move:function(t,e,i,n){void 0===e&&(e=this._zoom);var o=this._zoom!==e;return this._zoom=e,this._lastCenter=t,this._pixelOrigin=this._getNewPixelOrigin(t),n?i&&i.pinch&&this.fire("zoom",i):((o||i&&i.pinch)&&this.fire("zoom",i),this.fire("move",i)),this},_moveEnd:function(t){return t&&this.fire("zoomend"),this.fire("moveend")},_stop:function(){return r(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(t){Z(this._mapPane,this._getMapPanePos().subtract(t))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_panInsideMaxBounds:function(){this._enforcingBounds||this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error("Set map center and zoom first.")},_initEvents:function(t){this._targets={};var e=t?k:S;e((this._targets[h(this._container)]=this)._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress keydown keyup",this._handleDOMEvent,this),this.options.trackResize&&e(window,"resize",this._onResize,this),b.any3d&&this.options.transform3DLimit&&(t?this.off:this.on).call(this,"moveend",this._onMoveEnd)},_onResize:function(){r(this._resizeRequest),this._resizeRequest=x(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var t=this._getMapPanePos();Math.max(Math.abs(t.x),Math.abs(t.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(t,e){for(var i,n=[],o="mouseout"===e||"mouseover"===e,s=t.target||t.srcElement,r=!1;s;){if((i=this._targets[h(s)])&&("click"===e||"preclick"===e)&&this._draggableMoved(i)){r=!0;break}if(i&&i.listens(e,!0)){if(o&&!We(s,t))break;if(n.push(i),o)break}if(s===this._container)break;s=s.parentNode}return n=n.length||r||o||!this.listens(e,!0)?n:[this]},_isClickDisabled:function(t){for(;t&&t!==this._container;){if(t._leaflet_disable_click)return!0;t=t.parentNode}},_handleDOMEvent:function(t){var e,i=t.target||t.srcElement;!this._loaded||i._leaflet_disable_events||"click"===t.type&&this._isClickDisabled(i)||("mousedown"===(e=t.type)&&Me(i),this._fireDOMEvent(t,e))},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(t,e,i){"click"===t.type&&((a=l({},t)).type="preclick",this._fireDOMEvent(a,a.type,i));var n=this._findEventTargets(t,e);if(i){for(var o=[],s=0;sthis.options.zoomAnimationThreshold)return!1;var n=this.getZoomScale(e),n=this._getCenterOffset(t)._divideBy(1-1/n);if(!0!==i.animate&&!this.getSize().contains(n))return!1;x(function(){this._moveStart(!0,i.noMoveStart||!1)._animateZoom(t,e,!0)},this)}return!0},_animateZoom:function(t,e,i,n){this._mapPane&&(i&&(this._animatingZoom=!0,this._animateToCenter=t,this._animateToZoom=e,M(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:t,zoom:e,noUpdate:n}),this._tempFireZoomEvent||(this._tempFireZoomEvent=this._zoom!==this._animateToZoom),this._move(this._animateToCenter,this._animateToZoom,void 0,!0),setTimeout(a(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){this._animatingZoom&&(this._mapPane&&z(this._mapPane,"leaflet-zoom-anim"),this._animatingZoom=!1,this._move(this._animateToCenter,this._animateToZoom,void 0,!0),this._tempFireZoomEvent&&this.fire("zoom"),delete this._tempFireZoomEvent,this.fire("move"),this._moveEnd(!0))}});function Ue(t){return new B(t)}var B=et.extend({options:{position:"topright"},initialize:function(t){c(this,t)},getPosition:function(){return this.options.position},setPosition:function(t){var e=this._map;return e&&e.removeControl(this),this.options.position=t,e&&e.addControl(this),this},getContainer:function(){return this._container},addTo:function(t){this.remove(),this._map=t;var e=this._container=this.onAdd(t),i=this.getPosition(),t=t._controlCorners[i];return M(e,"leaflet-control"),-1!==i.indexOf("bottom")?t.insertBefore(e,t.firstChild):t.appendChild(e),this._map.on("unload",this.remove,this),this},remove:function(){return this._map&&(T(this._container),this.onRemove&&this.onRemove(this._map),this._map.off("unload",this.remove,this),this._map=null),this},_refocusOnMap:function(t){this._map&&t&&0",e=document.createElement("div");return e.innerHTML=t,e.firstChild},_addItem:function(t){var e,i=document.createElement("label"),n=this._map.hasLayer(t.layer),n=(t.overlay?((e=document.createElement("input")).type="checkbox",e.className="leaflet-control-layers-selector",e.defaultChecked=n):e=this._createRadioElement("leaflet-base-layers_"+h(this),n),this._layerControlInputs.push(e),e.layerId=h(t.layer),S(e,"click",this._onInputClick,this),document.createElement("span")),o=(n.innerHTML=" "+t.name,document.createElement("span"));return i.appendChild(o),o.appendChild(e),o.appendChild(n),(t.overlay?this._overlaysList:this._baseLayersList).appendChild(i),this._checkDisabledLayers(),i},_onInputClick:function(){if(!this._preventClick){var t,e,i=this._layerControlInputs,n=[],o=[];this._handlingClick=!0;for(var s=i.length-1;0<=s;s--)t=i[s],e=this._getLayer(t.layerId).layer,t.checked?n.push(e):t.checked||o.push(e);for(s=0;se.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this},_expandSafely:function(){var t=this._section,e=(this._preventClick=!0,S(t,"click",O),this.expand(),this);setTimeout(function(){k(t,"click",O),e._preventClick=!1})}})),qe=B.extend({options:{position:"topleft",zoomInText:'',zoomInTitle:"Zoom in",zoomOutText:'',zoomOutTitle:"Zoom out"},onAdd:function(t){var e="leaflet-control-zoom",i=P("div",e+" leaflet-bar"),n=this.options;return this._zoomInButton=this._createButton(n.zoomInText,n.zoomInTitle,e+"-in",i,this._zoomIn),this._zoomOutButton=this._createButton(n.zoomOutText,n.zoomOutTitle,e+"-out",i,this._zoomOut),this._updateDisabled(),t.on("zoomend zoomlevelschange",this._updateDisabled,this),i},onRemove:function(t){t.off("zoomend zoomlevelschange",this._updateDisabled,this)},disable:function(){return this._disabled=!0,this._updateDisabled(),this},enable:function(){return this._disabled=!1,this._updateDisabled(),this},_zoomIn:function(t){!this._disabled&&this._map._zoomthis._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(t.shiftKey?3:1))},_createButton:function(t,e,i,n,o){i=P("a",i,n);return i.innerHTML=t,i.href="#",i.title=e,i.setAttribute("role","button"),i.setAttribute("aria-label",e),Ie(i),S(i,"click",Re),S(i,"click",o,this),S(i,"click",this._refocusOnMap,this),i},_updateDisabled:function(){var t=this._map,e="leaflet-disabled";z(this._zoomInButton,e),z(this._zoomOutButton,e),this._zoomInButton.setAttribute("aria-disabled","false"),this._zoomOutButton.setAttribute("aria-disabled","false"),!this._disabled&&t._zoom!==t.getMinZoom()||(M(this._zoomOutButton,e),this._zoomOutButton.setAttribute("aria-disabled","true")),!this._disabled&&t._zoom!==t.getMaxZoom()||(M(this._zoomInButton,e),this._zoomInButton.setAttribute("aria-disabled","true"))}}),Ge=(A.mergeOptions({zoomControl:!0}),A.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new qe,this.addControl(this.zoomControl))}),B.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(t){var e="leaflet-control-scale",i=P("div",e),n=this.options;return this._addScales(n,e+"-line",i),t.on(n.updateWhenIdle?"moveend":"move",this._update,this),t.whenReady(this._update,this),i},onRemove:function(t){t.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(t,e,i){t.metric&&(this._mScale=P("div",e,i)),t.imperial&&(this._iScale=P("div",e,i))},_update:function(){var t=this._map,e=t.getSize().y/2,t=t.distance(t.containerPointToLatLng([0,e]),t.containerPointToLatLng([this.options.maxWidth,e]));this._updateScales(t)},_updateScales:function(t){this.options.metric&&t&&this._updateMetric(t),this.options.imperial&&t&&this._updateImperial(t)},_updateMetric:function(t){var e=this._getRoundNum(t);this._updateScale(this._mScale,e<1e3?e+" m":e/1e3+" km",e/t)},_updateImperial:function(t){var e,i,t=3.2808399*t;5280'+(b.inlineSvg?' ':"")+"Leaflet"},initialize:function(t){c(this,t),this._attributions={}},onAdd:function(t){for(var e in(t.attributionControl=this)._container=P("div","leaflet-control-attribution"),Ie(this._container),t._layers)t._layers[e].getAttribution&&this.addAttribution(t._layers[e].getAttribution());return this._update(),t.on("layeradd",this._addAttribution,this),this._container},onRemove:function(t){t.off("layeradd",this._addAttribution,this)},_addAttribution:function(t){t.layer.getAttribution&&(this.addAttribution(t.layer.getAttribution()),t.layer.once("remove",function(){this.removeAttribution(t.layer.getAttribution())},this))},setPrefix:function(t){return this.options.prefix=t,this._update(),this},addAttribution:function(t){return t&&(this._attributions[t]||(this._attributions[t]=0),this._attributions[t]++,this._update()),this},removeAttribution:function(t){return t&&this._attributions[t]&&(this._attributions[t]--,this._update()),this},_update:function(){if(this._map){var t,e=[];for(t in this._attributions)this._attributions[t]&&e.push(t);var i=[];this.options.prefix&&i.push(this.options.prefix),e.length&&i.push(e.join(", ")),this._container.innerHTML=i.join(' ')}}}),n=(A.mergeOptions({attributionControl:!0}),A.addInitHook(function(){this.options.attributionControl&&(new Ke).addTo(this)}),B.Layers=Ve,B.Zoom=qe,B.Scale=Ge,B.Attribution=Ke,Ue.layers=function(t,e,i){return new Ve(t,e,i)},Ue.zoom=function(t){return new qe(t)},Ue.scale=function(t){return new Ge(t)},Ue.attribution=function(t){return new Ke(t)},et.extend({initialize:function(t){this._map=t},enable:function(){return this._enabled||(this._enabled=!0,this.addHooks()),this},disable:function(){return this._enabled&&(this._enabled=!1,this.removeHooks()),this},enabled:function(){return!!this._enabled}})),ft=(n.addTo=function(t,e){return t.addHandler(e,this),this},{Events:e}),Ye=b.touch?"touchstart mousedown":"mousedown",Xe=it.extend({options:{clickTolerance:3},initialize:function(t,e,i,n){c(this,n),this._element=t,this._dragStartTarget=e||t,this._preventOutline=i},enable:function(){this._enabled||(S(this._dragStartTarget,Ye,this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(Xe._dragging===this&&this.finishDrag(!0),k(this._dragStartTarget,Ye,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(t){var e,i;this._enabled&&(this._moved=!1,ve(this._element,"leaflet-zoom-anim")||(t.touches&&1!==t.touches.length?Xe._dragging===this&&this.finishDrag():Xe._dragging||t.shiftKey||1!==t.which&&1!==t.button&&!t.touches||((Xe._dragging=this)._preventOutline&&Me(this._element),Le(),re(),this._moving||(this.fire("down"),i=t.touches?t.touches[0]:t,e=Ce(this._element),this._startPoint=new p(i.clientX,i.clientY),this._startPos=Pe(this._element),this._parentScale=Ze(e),i="mousedown"===t.type,S(document,i?"mousemove":"touchmove",this._onMove,this),S(document,i?"mouseup":"touchend touchcancel",this._onUp,this)))))},_onMove:function(t){var e;this._enabled&&(t.touches&&1e&&(i.push(t[n]),o=n);oe.max.x&&(i|=2),t.ye.max.y&&(i|=8),i}function ri(t,e,i,n){var o=e.x,e=e.y,s=i.x-o,r=i.y-e,a=s*s+r*r;return 0this._layersMaxZoom&&this.setZoom(this._layersMaxZoom),void 0===this.options.minZoom&&this._layersMinZoom&&this.getZoom()t.y!=n.y>t.y&&t.x<(n.x-i.x)*(t.y-i.y)/(n.y-i.y)+i.x&&(l=!l);return l||yi.prototype._containsPoint.call(this,t,!0)}});var wi=ci.extend({initialize:function(t,e){c(this,e),this._layers={},t&&this.addData(t)},addData:function(t){var e,i,n,o=d(t)?t:t.features;if(o){for(e=0,i=o.length;es.x&&(r=i.x+a-s.x+o.x),i.x-r-n.x<(a=0)&&(r=i.x-n.x),i.y+e+o.y>s.y&&(a=i.y+e-s.y+o.y),i.y-a-n.y<0&&(a=i.y-n.y),(r||a)&&(this.options.keepInView&&(this._autopanning=!0),t.fire("autopanstart").panBy([r,a]))))},_getAnchor:function(){return m(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}})),Ii=(A.mergeOptions({closePopupOnClick:!0}),A.include({openPopup:function(t,e,i){return this._initOverlay(Bi,t,e,i).openOn(this),this},closePopup:function(t){return(t=arguments.length?t:this._popup)&&t.close(),this}}),o.include({bindPopup:function(t,e){return this._popup=this._initOverlay(Bi,this._popup,t,e),this._popupHandlersAdded||(this.on({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!0),this},unbindPopup:function(){return this._popup&&(this.off({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!1,this._popup=null),this},openPopup:function(t){return this._popup&&(this instanceof ci||(this._popup._source=this),this._popup._prepareOpen(t||this._latlng)&&this._popup.openOn(this._map)),this},closePopup:function(){return this._popup&&this._popup.close(),this},togglePopup:function(){return this._popup&&this._popup.toggle(this),this},isPopupOpen:function(){return!!this._popup&&this._popup.isOpen()},setPopupContent:function(t){return this._popup&&this._popup.setContent(t),this},getPopup:function(){return this._popup},_openPopup:function(t){var e;this._popup&&this._map&&(Re(t),e=t.layer||t.target,this._popup._source!==e||e instanceof fi?(this._popup._source=e,this.openPopup(t.latlng)):this._map.hasLayer(this._popup)?this.closePopup():this.openPopup(t.latlng))},_movePopup:function(t){this._popup.setLatLng(t.latlng)},_onKeyPress:function(t){13===t.originalEvent.keyCode&&this._openPopup(t)}}),Ai.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,opacity:.9},onAdd:function(t){Ai.prototype.onAdd.call(this,t),this.setOpacity(this.options.opacity),t.fire("tooltipopen",{tooltip:this}),this._source&&(this.addEventParent(this._source),this._source.fire("tooltipopen",{tooltip:this},!0))},onRemove:function(t){Ai.prototype.onRemove.call(this,t),t.fire("tooltipclose",{tooltip:this}),this._source&&(this.removeEventParent(this._source),this._source.fire("tooltipclose",{tooltip:this},!0))},getEvents:function(){var t=Ai.prototype.getEvents.call(this);return this.options.permanent||(t.preclick=this.close),t},_initLayout:function(){var t="leaflet-tooltip "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide");this._contentNode=this._container=P("div",t),this._container.setAttribute("role","tooltip"),this._container.setAttribute("id","leaflet-tooltip-"+h(this))},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(t){var e,i=this._map,n=this._container,o=i.latLngToContainerPoint(i.getCenter()),i=i.layerPointToContainerPoint(t),s=this.options.direction,r=n.offsetWidth,a=n.offsetHeight,h=m(this.options.offset),l=this._getAnchor(),i="top"===s?(e=r/2,a):"bottom"===s?(e=r/2,0):(e="center"===s?r/2:"right"===s?0:"left"===s?r:i.xthis.options.maxZoom||nthis.options.maxZoom||void 0!==this.options.minZoom&&oi.max.x)||!e.wrapLat&&(t.yi.max.y))return!1}return!this.options.bounds||(e=this._tileCoordsToBounds(t),g(this.options.bounds).overlaps(e))},_keyToBounds:function(t){return this._tileCoordsToBounds(this._keyToTileCoords(t))},_tileCoordsToNwSe:function(t){var e=this._map,i=this.getTileSize(),n=t.scaleBy(i),i=n.add(i);return[e.unproject(n,t.z),e.unproject(i,t.z)]},_tileCoordsToBounds:function(t){t=this._tileCoordsToNwSe(t),t=new s(t[0],t[1]);return t=this.options.noWrap?t:this._map.wrapLatLngBounds(t)},_tileCoordsToKey:function(t){return t.x+":"+t.y+":"+t.z},_keyToTileCoords:function(t){var t=t.split(":"),e=new p(+t[0],+t[1]);return e.z=+t[2],e},_removeTile:function(t){var e=this._tiles[t];e&&(T(e.el),delete this._tiles[t],this.fire("tileunload",{tile:e.el,coords:this._keyToTileCoords(t)}))},_initTile:function(t){M(t,"leaflet-tile");var e=this.getTileSize();t.style.width=e.x+"px",t.style.height=e.y+"px",t.onselectstart=u,t.onmousemove=u,b.ielt9&&this.options.opacity<1&&C(t,this.options.opacity)},_addTile:function(t,e){var i=this._getTilePos(t),n=this._tileCoordsToKey(t),o=this.createTile(this._wrapCoords(t),a(this._tileReady,this,t));this._initTile(o),this.createTile.length<2&&x(a(this._tileReady,this,t,null,o)),Z(o,i),this._tiles[n]={el:o,coords:t,current:!0},e.appendChild(o),this.fire("tileloadstart",{tile:o,coords:t})},_tileReady:function(t,e,i){e&&this.fire("tileerror",{error:e,tile:i,coords:t});var n=this._tileCoordsToKey(t);(i=this._tiles[n])&&(i.loaded=+new Date,this._map._fadeAnimated?(C(i.el,0),r(this._fadeFrame),this._fadeFrame=x(this._updateOpacity,this)):(i.active=!0,this._pruneTiles()),e||(M(i.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:i.el,coords:t})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),b.ielt9||!this._map._fadeAnimated?x(this._pruneTiles,this):setTimeout(a(this._pruneTiles,this),250)))},_getTilePos:function(t){return t.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(t){var e=new p(this._wrapX?H(t.x,this._wrapX):t.x,this._wrapY?H(t.y,this._wrapY):t.y);return e.z=t.z,e},_pxBoundsToTileRange:function(t){var e=this.getTileSize();return new f(t.min.unscaleBy(e).floor(),t.max.unscaleBy(e).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var t in this._tiles)if(!this._tiles[t].loaded)return!1;return!0}});var Di=Ni.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1,referrerPolicy:!1},initialize:function(t,e){this._url=t,(e=c(this,e)).detectRetina&&b.retina&&0')}}catch(t){}return function(t){return document.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}(),zt={_initContainer:function(){this._container=P("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(Wi.prototype._update.call(this),this.fire("update"))},_initPath:function(t){var e=t._container=Vi("shape");M(e,"leaflet-vml-shape "+(this.options.className||"")),e.coordsize="1 1",t._path=Vi("path"),e.appendChild(t._path),this._updateStyle(t),this._layers[h(t)]=t},_addPath:function(t){var e=t._container;this._container.appendChild(e),t.options.interactive&&t.addInteractiveTarget(e)},_removePath:function(t){var e=t._container;T(e),t.removeInteractiveTarget(e),delete this._layers[h(t)]},_updateStyle:function(t){var e=t._stroke,i=t._fill,n=t.options,o=t._container;o.stroked=!!n.stroke,o.filled=!!n.fill,n.stroke?(e=e||(t._stroke=Vi("stroke")),o.appendChild(e),e.weight=n.weight+"px",e.color=n.color,e.opacity=n.opacity,n.dashArray?e.dashStyle=d(n.dashArray)?n.dashArray.join(" "):n.dashArray.replace(/( *, *)/g," "):e.dashStyle="",e.endcap=n.lineCap.replace("butt","flat"),e.joinstyle=n.lineJoin):e&&(o.removeChild(e),t._stroke=null),n.fill?(i=i||(t._fill=Vi("fill")),o.appendChild(i),i.color=n.fillColor||n.color,i.opacity=n.fillOpacity):i&&(o.removeChild(i),t._fill=null)},_updateCircle:function(t){var e=t._point.round(),i=Math.round(t._radius),n=Math.round(t._radiusY||i);this._setPath(t,t._empty()?"M0 0":"AL "+e.x+","+e.y+" "+i+","+n+" 0,23592600")},_setPath:function(t,e){t._path.v=e},_bringToFront:function(t){fe(t._container)},_bringToBack:function(t){ge(t._container)}},qi=b.vml?Vi:ct,Gi=Wi.extend({_initContainer:function(){this._container=qi("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=qi("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){T(this._container),k(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_update:function(){var t,e,i;this._map._animatingZoom&&this._bounds||(Wi.prototype._update.call(this),e=(t=this._bounds).getSize(),i=this._container,this._svgSize&&this._svgSize.equals(e)||(this._svgSize=e,i.setAttribute("width",e.x),i.setAttribute("height",e.y)),Z(i,t.min),i.setAttribute("viewBox",[t.min.x,t.min.y,e.x,e.y].join(" ")),this.fire("update"))},_initPath:function(t){var e=t._path=qi("path");t.options.className&&M(e,t.options.className),t.options.interactive&&M(e,"leaflet-interactive"),this._updateStyle(t),this._layers[h(t)]=t},_addPath:function(t){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(t._path),t.addInteractiveTarget(t._path)},_removePath:function(t){T(t._path),t.removeInteractiveTarget(t._path),delete this._layers[h(t)]},_updatePath:function(t){t._project(),t._update()},_updateStyle:function(t){var e=t._path,t=t.options;e&&(t.stroke?(e.setAttribute("stroke",t.color),e.setAttribute("stroke-opacity",t.opacity),e.setAttribute("stroke-width",t.weight),e.setAttribute("stroke-linecap",t.lineCap),e.setAttribute("stroke-linejoin",t.lineJoin),t.dashArray?e.setAttribute("stroke-dasharray",t.dashArray):e.removeAttribute("stroke-dasharray"),t.dashOffset?e.setAttribute("stroke-dashoffset",t.dashOffset):e.removeAttribute("stroke-dashoffset")):e.setAttribute("stroke","none"),t.fill?(e.setAttribute("fill",t.fillColor||t.color),e.setAttribute("fill-opacity",t.fillOpacity),e.setAttribute("fill-rule",t.fillRule||"evenodd")):e.setAttribute("fill","none"))},_updatePoly:function(t,e){this._setPath(t,dt(t._parts,e))},_updateCircle:function(t){var e=t._point,i=Math.max(Math.round(t._radius),1),n="a"+i+","+(Math.max(Math.round(t._radiusY),1)||i)+" 0 1,0 ",e=t._empty()?"M0 0":"M"+(e.x-i)+","+e.y+n+2*i+",0 "+n+2*-i+",0 ";this._setPath(t,e)},_setPath:function(t,e){t._path.setAttribute("d",e)},_bringToFront:function(t){fe(t._path)},_bringToBack:function(t){ge(t._path)}});function Ki(t){return b.svg||b.vml?new Gi(t):null}b.vml&&Gi.include(zt),A.include({getRenderer:function(t){t=(t=t.options.renderer||this._getPaneRenderer(t.options.pane)||this.options.renderer||this._renderer)||(this._renderer=this._createRenderer());return this.hasLayer(t)||this.addLayer(t),t},_getPaneRenderer:function(t){var e;return"overlayPane"!==t&&void 0!==t&&(void 0===(e=this._paneRenderers[t])&&(e=this._createRenderer({pane:t}),this._paneRenderers[t]=e),e)},_createRenderer:function(t){return this.options.preferCanvas&&Ui(t)||Ki(t)}});var Yi=xi.extend({initialize:function(t,e){xi.prototype.initialize.call(this,this._boundsToLatLngs(t),e)},setBounds:function(t){return this.setLatLngs(this._boundsToLatLngs(t))},_boundsToLatLngs:function(t){return[(t=g(t)).getSouthWest(),t.getNorthWest(),t.getNorthEast(),t.getSouthEast()]}});Gi.create=qi,Gi.pointsToPath=dt,wi.geometryToLayer=bi,wi.coordsToLatLng=Li,wi.coordsToLatLngs=Ti,wi.latLngToCoords=Mi,wi.latLngsToCoords=zi,wi.getFeature=Ci,wi.asFeature=Zi,A.mergeOptions({boxZoom:!0});var _t=n.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane,this._resetStateTimeout=0,t.on("unload",this._destroy,this)},addHooks:function(){S(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){k(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){T(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){0!==this._resetStateTimeout&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(t){if(!t.shiftKey||1!==t.which&&1!==t.button)return!1;this._clearDeferredResetState(),this._resetState(),re(),Le(),this._startPoint=this._map.mouseEventToContainerPoint(t),S(document,{contextmenu:Re,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(t){this._moved||(this._moved=!0,this._box=P("div","leaflet-zoom-box",this._container),M(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(t);var t=new f(this._point,this._startPoint),e=t.getSize();Z(this._box,t.min),this._box.style.width=e.x+"px",this._box.style.height=e.y+"px"},_finish:function(){this._moved&&(T(this._box),z(this._container,"leaflet-crosshair")),ae(),Te(),k(document,{contextmenu:Re,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(t){1!==t.which&&1!==t.button||(this._finish(),this._moved&&(this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(a(this._resetState,this),0),t=new s(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point)),this._map.fitBounds(t).fire("boxzoomend",{boxZoomBounds:t})))},_onKeyDown:function(t){27===t.keyCode&&(this._finish(),this._clearDeferredResetState(),this._resetState())}}),Ct=(A.addInitHook("addHandler","boxZoom",_t),A.mergeOptions({doubleClickZoom:!0}),n.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(t){var e=this._map,i=e.getZoom(),n=e.options.zoomDelta,i=t.originalEvent.shiftKey?i-n:i+n;"center"===e.options.doubleClickZoom?e.setZoom(i):e.setZoomAround(t.containerPoint,i)}})),Zt=(A.addInitHook("addHandler","doubleClickZoom",Ct),A.mergeOptions({dragging:!0,inertia:!0,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0}),n.extend({addHooks:function(){var t;this._draggable||(t=this._map,this._draggable=new Xe(t._mapPane,t._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),t.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),t.on("zoomend",this._onZoomEnd,this),t.whenReady(this._onZoomEnd,this))),M(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){z(this._map._container,"leaflet-grab"),z(this._map._container,"leaflet-touch-drag"),this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},moving:function(){return this._draggable&&this._draggable._moving},_onDragStart:function(){var t,e=this._map;e._stop(),this._map.options.maxBounds&&this._map.options.maxBoundsViscosity?(t=g(this._map.options.maxBounds),this._offsetLimit=_(this._map.latLngToContainerPoint(t.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(t.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))):this._offsetLimit=null,e.fire("movestart").fire("dragstart"),e.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(t){var e,i;this._map.options.inertia&&(e=this._lastTime=+new Date,i=this._lastPos=this._draggable._absPos||this._draggable._newPos,this._positions.push(i),this._times.push(e),this._prunePositions(e)),this._map.fire("move",t).fire("drag",t)},_prunePositions:function(t){for(;1e.max.x&&(t.x=this._viscousLimit(t.x,e.max.x)),t.y>e.max.y&&(t.y=this._viscousLimit(t.y,e.max.y)),this._draggable._newPos=this._draggable._startPos.add(t))},_onPreDragWrap:function(){var t=this._worldWidth,e=Math.round(t/2),i=this._initialWorldOffset,n=this._draggable._newPos.x,o=(n-e+i)%t+e-i,n=(n+e+i)%t-e-i,t=Math.abs(o+i)e.getMaxZoom()&&1=i;)t=t.__parent;return this._currentShownBounds.contains(t.getLatLng())&&(this.options.animateAddingMarkers?this._animationAddLayer(e,t):this._animationAddLayerNonAnimated(e,t)),this},removeLayer:function(e){return e instanceof L.LayerGroup?this.removeLayers([e]):(e.getLatLng?this._map?e.__parent&&(this._unspiderfy&&(this._unspiderfy(),this._unspiderfyLayer(e)),this._removeLayer(e,!0),this.fire("layerremove",{layer:e}),this._topClusterLevel._recalculateBounds(),this._refreshClustersIcons(),e.off(this._childMarkerEventHandlers,this),this._featureGroup.hasLayer(e)&&(this._featureGroup.removeLayer(e),e.clusterShow&&e.clusterShow())):(!this._arraySplice(this._needsClustering,e)&&this.hasLayer(e)&&this._needsRemoving.push({layer:e,latlng:e._latlng}),this.fire("layerremove",{layer:e})):(this._nonPointGroup.removeLayer(e),this.fire("layerremove",{layer:e})),this)},addLayers:function(n,s){if(!L.Util.isArray(n))return this.addLayer(n);var o,a=this._featureGroup,h=this._nonPointGroup,l=this.options.chunkedLoading,u=this.options.chunkInterval,_=this.options.chunkProgress,d=n.length,p=0,c=!0;if(this._map){var f=(new Date).getTime(),m=L.bind(function(){var e=(new Date).getTime();for(this._map&&this._unspiderfy&&this._unspiderfy();p"+t+"",className:"marker-cluster"+i,iconSize:new L.Point(40,40)})},_bindEvents:function(){var e=this._map,t=this.options.spiderfyOnMaxZoom,i=this.options.showCoverageOnHover,r=this.options.zoomToBoundsOnClick,n=this.options.spiderfyOnEveryZoom;(t||r||n)&&this.on("clusterclick clusterkeypress",this._zoomOrSpiderfy,this),i&&(this.on("clustermouseover",this._showCoverage,this),this.on("clustermouseout",this._hideCoverage,this),e.on("zoomend",this._hideCoverage,this))},_zoomOrSpiderfy:function(e){var t=e.layer,i=t;if("clusterkeypress"!==e.type||!e.originalEvent||13===e.originalEvent.keyCode){for(;1===i._childClusters.length;)i=i._childClusters[0];i._zoom===this._maxZoom&&i._childCount===t._childCount&&this.options.spiderfyOnMaxZoom?t.spiderfy():this.options.zoomToBoundsOnClick&&t.zoomToBounds(),this.options.spiderfyOnEveryZoom&&t.spiderfy(),e.originalEvent&&13===e.originalEvent.keyCode&&this._map._container.focus()}},_showCoverage:function(e){var t=this._map;this._inZoomAnimation||(this._shownPolygon&&t.removeLayer(this._shownPolygon),2h._zoom;r--)u=new this._markerCluster(this,r,u),n[r].addObject(u,this._map.project(a.getLatLng(),r));return h._addChild(u),void this._removeFromGridUnclustered(a,t)}s[t].addObject(e,i)}this._topClusterLevel._addChild(e),e.__parent=this._topClusterLevel},_refreshClustersIcons:function(){this._featureGroup.eachLayer(function(e){e instanceof L.MarkerCluster&&e._iconNeedsUpdate&&e._updateIcon()})},_enqueue:function(e){this._queue.push(e),this._queueTimeout||(this._queueTimeout=setTimeout(L.bind(this._processQueue,this),300))},_processQueue:function(){for(var e=0;ee?(this._animationStart(),this._animationZoomOut(this._zoom,e)):this._moveEnd()},_getExpandedVisibleBounds:function(){return this.options.removeOutsideVisibleBounds?L.Browser.mobile?this._checkBoundsMaxLat(this._map.getBounds()):this._checkBoundsMaxLat(this._map.getBounds().pad(1)):this._mapBoundsInfinite},_checkBoundsMaxLat:function(e){var t=this._maxLat;return void 0!==t&&(e.getNorth()>=t&&(e._northEast.lat=1/0),e.getSouth()<=-t&&(e._southWest.lat=-1/0)),e},_animationAddLayerNonAnimated:function(e,t){if(t===e)this._featureGroup.addLayer(e);else if(2===t._childCount){t._addToMap();var i=t.getAllChildMarkers();this._featureGroup.removeLayer(i[0]),this._featureGroup.removeLayer(i[1])}else t._updateIcon()},_extractNonGroupLayers:function(e,t){var i,r=e.getLayers(),n=0;for(t=t||[];ni)&&(i=(o=d).lat),(!1===r||d.latn)&&(n=(h=d).lng),(!1===s||d.lng=this._circleSpiralSwitchover?this._generatePointsSpiral(t.length,i):(i.y+=10,this._generatePointsCircle(t.length,i)),this._animationSpiderfy(t,e)}},unspiderfy:function(e){this._group._inZoomAnimation||(this._animationUnspiderfy(e),this._group._spiderfied=null)},_generatePointsCircle:function(e,t){var i,r,n=this._group.options.spiderfyDistanceMultiplier*this._circleFootSeparation*(2+e)/this._2PI,s=this._2PI/e,o=[];for(n=Math.max(n,35),o.length=e,i=0;icode,:not(pre)>kbd,:not(pre)>samp{font-family:Consolas,monaco,monospace;font-size:.875rem;color:#f0506e;white-space:nowrap;padding:2px 6px;background:#f8f8f8}em{color:#f0506e}ins{background:#ffd;color:#666;text-decoration:none}mark{background:#ffd;color:#666}q{font-style:italic}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}audio,canvas,iframe,img,svg,video{vertical-align:middle}canvas,img,svg,video{max-width:100%;height:auto;box-sizing:border-box}img:not([src]){visibility:hidden;min-width:1px}iframe{border:0}address,dl,fieldset,figure,ol,p,pre,ul{margin:0 0 20px 0}*+address,*+dl,*+fieldset,*+figure,*+ol,*+p,*+pre,*+ul{margin-top:20px}.uk-h1,.uk-h2,.uk-h3,.uk-h4,.uk-h5,.uk-h6,.uk-heading-2xlarge,.uk-heading-3xlarge,.uk-heading-large,.uk-heading-medium,.uk-heading-small,.uk-heading-xlarge,h1,h2,h3,h4,h5,h6{margin:0 0 20px 0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-weight:400;color:#333;text-transform:none}*+.uk-h1,*+.uk-h2,*+.uk-h3,*+.uk-h4,*+.uk-h5,*+.uk-h6,*+.uk-heading-2xlarge,*+.uk-heading-3xlarge,*+.uk-heading-large,*+.uk-heading-medium,*+.uk-heading-small,*+.uk-heading-xlarge,*+h1,*+h2,*+h3,*+h4,*+h5,*+h6{margin-top:40px}.uk-h1,h1{font-size:2.23125rem;line-height:1.2}.uk-h2,h2{font-size:1.7rem;line-height:1.3}.uk-h3,h3{font-size:1.5rem;line-height:1.4}.uk-h4,h4{font-size:1.25rem;line-height:1.4}.uk-h5,h5{font-size:16px;line-height:1.4}.uk-h6,h6{font-size:.875rem;line-height:1.4}@media (min-width:960px){.uk-h1,h1{font-size:2.625rem}.uk-h2,h2{font-size:2rem}}ol,ul{padding-left:30px}ol>li>ol,ol>li>ul,ul>li>ol,ul>li>ul{margin:0}dt{font-weight:700}dd{margin-left:0}.uk-hr,hr{overflow:visible;text-align:inherit;margin:0 0 20px 0;border:0;border-top:1px solid #e5e5e5}*+.uk-hr,*+hr{margin-top:20px}address{font-style:normal}blockquote{margin:0 0 20px 0;font-size:1.25rem;line-height:1.5;font-style:italic;color:#333}*+blockquote{margin-top:20px}blockquote p:last-of-type{margin-bottom:0}blockquote footer{margin-top:10px;font-size:.875rem;line-height:1.5;color:#666}blockquote footer::before{content:"— "}pre{font:0.875rem/1.5 Consolas,monaco,monospace;color:#666;-moz-tab-size:4;tab-size:4;overflow:auto;padding:10px;border:1px solid #e5e5e5;border-radius:3px;background:#fff}pre code{font-family:Consolas,monaco,monospace}:focus{outline:0}:focus-visible{outline:2px dotted #333}::selection{background:#39f;color:#fff;text-shadow:none}details,main{display:block}summary{display:list-item}template{display:none}:root{--uk-breakpoint-s:640px;--uk-breakpoint-m:960px;--uk-breakpoint-l:1200px;--uk-breakpoint-xl:1600px}.uk-link-muted a,.uk-link-toggle .uk-link-muted,a.uk-link-muted{color:#999}.uk-link-muted a:hover,.uk-link-toggle:hover .uk-link-muted,a.uk-link-muted:hover{color:#666}.uk-link-text a,.uk-link-toggle .uk-link-text,a.uk-link-text{color:inherit}.uk-link-text a:hover,.uk-link-toggle:hover .uk-link-text,a.uk-link-text:hover{color:#999}.uk-link-heading a,.uk-link-toggle .uk-link-heading,a.uk-link-heading{color:inherit}.uk-link-heading a:hover,.uk-link-toggle:hover .uk-link-heading,a.uk-link-heading:hover{color:#1e87f0;text-decoration:none}.uk-link-reset a,a.uk-link-reset{color:inherit!important;text-decoration:none!important}.uk-link-toggle{color:inherit!important;text-decoration:none!important}.uk-heading-small{font-size:2.6rem;line-height:1.2}.uk-heading-medium{font-size:2.8875rem;line-height:1.1}.uk-heading-large{font-size:3.4rem;line-height:1.1}.uk-heading-xlarge{font-size:4rem;line-height:1}.uk-heading-2xlarge{font-size:6rem;line-height:1}.uk-heading-3xlarge{font-size:8rem;line-height:1}@media (min-width:960px){.uk-heading-small{font-size:3.25rem}.uk-heading-medium{font-size:3.5rem}.uk-heading-large{font-size:4rem}.uk-heading-xlarge{font-size:6rem}.uk-heading-2xlarge{font-size:8rem}.uk-heading-3xlarge{font-size:11rem}}@media (min-width:1200px){.uk-heading-medium{font-size:4rem}.uk-heading-large{font-size:6rem}.uk-heading-xlarge{font-size:8rem}.uk-heading-2xlarge{font-size:11rem}.uk-heading-3xlarge{font-size:15rem}}.uk-heading-divider{padding-bottom:calc(5px + .1em);border-bottom:calc(.2px + .05em) solid #e5e5e5}.uk-heading-bullet{position:relative}.uk-heading-bullet::before{content:"";display:inline-block;position:relative;top:calc(-.1 * 1em);vertical-align:middle;height:calc(4px + .7em);margin-right:calc(5px + .2em);border-left:calc(5px + .1em) solid #e5e5e5}.uk-heading-line{overflow:hidden}.uk-heading-line>*{display:inline-block;position:relative}.uk-heading-line>::after,.uk-heading-line>::before{content:"";position:absolute;top:calc(50% - (calc(.2px + .05em)/ 2));width:2000px;border-bottom:calc(.2px + .05em) solid #e5e5e5}.uk-heading-line>::before{right:100%;margin-right:calc(5px + .3em)}.uk-heading-line>::after{left:100%;margin-left:calc(5px + .3em)}[class*=uk-divider]{border:none;margin-bottom:20px}*+[class*=uk-divider]{margin-top:20px}.uk-divider-icon{position:relative;height:20px;background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23e5e5e5%22%20stroke-width%3D%222%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%227%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");background-repeat:no-repeat;background-position:50% 50%}.uk-divider-icon::after,.uk-divider-icon::before{content:"";position:absolute;top:50%;max-width:calc(50% - (50px / 2));border-bottom:1px solid #e5e5e5}.uk-divider-icon::before{right:calc(50% + (50px / 2));width:100%}.uk-divider-icon::after{left:calc(50% + (50px / 2));width:100%}.uk-divider-small{line-height:0}.uk-divider-small::after{content:"";display:inline-block;width:100px;max-width:100%;border-top:1px solid #e5e5e5;vertical-align:top}.uk-divider-vertical{width:max-content;height:100px;margin-left:auto;margin-right:auto;border-left:1px solid #e5e5e5}.uk-list{padding:0;list-style:none}.uk-list>*{break-inside:avoid-column}.uk-list>*>:last-child{margin-bottom:0}.uk-list>*>ul,.uk-list>:nth-child(n+2){margin-top:10px}.uk-list-circle>*,.uk-list-decimal>*,.uk-list-disc>*,.uk-list-hyphen>*,.uk-list-square>*{padding-left:30px}.uk-list-decimal{counter-reset:decimal}.uk-list-decimal>*{counter-increment:decimal}.uk-list-circle>::before,.uk-list-decimal>::before,.uk-list-disc>::before,.uk-list-hyphen>::before,.uk-list-square>::before{content:"";position:relative;left:-30px;width:30px;height:1.5em;margin-bottom:-1.5em;display:list-item;list-style-position:inside;text-align:right}.uk-list-disc>::before{list-style-type:disc}.uk-list-circle>::before{list-style-type:circle}.uk-list-square>::before{list-style-type:square}.uk-list-decimal>::before{content:counter(decimal,decimal) '\200A.\00A0'}.uk-list-hyphen>::before{content:'–\00A0\00A0'}.uk-list-muted>::before{color:#999!important}.uk-list-emphasis>::before{color:#333!important}.uk-list-primary>::before{color:#1e87f0!important}.uk-list-secondary>::before{color:#222!important}.uk-list-bullet>*{padding-left:30px}.uk-list-bullet>::before{content:"";display:list-item;position:relative;left:-30px;width:30px;height:1.5em;margin-bottom:-1.5em;background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23666%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");background-repeat:no-repeat;background-position:50% 50%}.uk-list-divider>:nth-child(n+2){margin-top:10px;padding-top:10px;border-top:1px solid #e5e5e5}.uk-list-striped>*{padding:10px 10px}.uk-list-striped>:nth-of-type(odd){border-top:1px solid #e5e5e5;border-bottom:1px solid #e5e5e5}.uk-list-striped>:nth-of-type(odd){background:#f8f8f8}.uk-list-striped>:nth-child(n+2){margin-top:0}.uk-list-large>*>ul,.uk-list-large>:nth-child(n+2){margin-top:20px}.uk-list-collapse>*>ul,.uk-list-collapse>:nth-child(n+2){margin-top:0}.uk-list-large.uk-list-divider>:nth-child(n+2){margin-top:20px;padding-top:20px}.uk-list-collapse.uk-list-divider>:nth-child(n+2){margin-top:0;padding-top:0}.uk-list-large.uk-list-striped>*{padding:20px 10px}.uk-list-collapse.uk-list-striped>*{padding-top:0;padding-bottom:0}.uk-list-collapse.uk-list-striped>:nth-child(n+2),.uk-list-large.uk-list-striped>:nth-child(n+2){margin-top:0}.uk-description-list>dt{color:#333;font-size:.875rem;font-weight:400;text-transform:uppercase}.uk-description-list>dt:nth-child(n+2){margin-top:20px}.uk-description-list-divider>dt:nth-child(n+2){margin-top:20px;padding-top:20px;border-top:1px solid #e5e5e5}.uk-table{border-collapse:collapse;border-spacing:0;width:100%;margin-bottom:20px}*+.uk-table{margin-top:20px}.uk-table th{padding:16px 12px;text-align:left;vertical-align:bottom;font-size:.875rem;font-weight:400;color:#999;text-transform:uppercase}.uk-table td{padding:16px 12px;vertical-align:top}.uk-table td>:last-child{margin-bottom:0}.uk-table tfoot{font-size:.875rem}.uk-table caption{font-size:.875rem;text-align:left;color:#999}.uk-table-middle,.uk-table-middle td{vertical-align:middle!important}.uk-table-divider>:first-child>tr:not(:first-child),.uk-table-divider>:not(:first-child)>tr,.uk-table-divider>tr:not(:first-child){border-top:1px solid #e5e5e5}.uk-table-striped tbody tr:nth-of-type(odd),.uk-table-striped>tr:nth-of-type(odd){background:#f8f8f8;border-top:1px solid #e5e5e5;border-bottom:1px solid #e5e5e5}.uk-table-hover tbody tr:hover,.uk-table-hover>tr:hover{background:#ffd}.uk-table tbody tr.uk-active,.uk-table>tr.uk-active{background:#ffd}.uk-table-small td,.uk-table-small th{padding:10px 12px}.uk-table-large td,.uk-table-large th{padding:22px 12px}.uk-table-justify td:first-child,.uk-table-justify th:first-child{padding-left:0}.uk-table-justify td:last-child,.uk-table-justify th:last-child{padding-right:0}.uk-table-shrink{width:1px}.uk-table-expand{min-width:150px}.uk-table-link{padding:0!important}.uk-table-link>a{display:block;padding:16px 12px}.uk-table-small .uk-table-link>a{padding:10px 12px}@media (max-width:959px){.uk-table-responsive,.uk-table-responsive tbody,.uk-table-responsive td,.uk-table-responsive th,.uk-table-responsive tr{display:block}.uk-table-responsive thead{display:none}.uk-table-responsive td,.uk-table-responsive th{width:auto!important;max-width:none!important;min-width:0!important;overflow:visible!important;white-space:normal!important}.uk-table-responsive .uk-table-link:not(:first-child)>a,.uk-table-responsive td:not(:first-child):not(.uk-table-link),.uk-table-responsive th:not(:first-child):not(.uk-table-link){padding-top:5px!important}.uk-table-responsive .uk-table-link:not(:last-child)>a,.uk-table-responsive td:not(:last-child):not(.uk-table-link),.uk-table-responsive th:not(:last-child):not(.uk-table-link){padding-bottom:5px!important}.uk-table-justify.uk-table-responsive td,.uk-table-justify.uk-table-responsive th{padding-left:0;padding-right:0}}.uk-table tbody tr{transition:background-color .1s linear}.uk-table-striped tbody tr:nth-of-type(2n):last-child,.uk-table-striped>tr:nth-of-type(2n):last-child{border-bottom:1px solid #e5e5e5}.uk-icon{margin:0;border:none;border-radius:0;overflow:visible;font:inherit;color:inherit;text-transform:none;padding:0;background-color:transparent;display:inline-block;fill:currentcolor;line-height:0}button.uk-icon:not(:disabled){cursor:pointer}.uk-icon::-moz-focus-inner{border:0;padding:0}.uk-icon:not(.uk-preserve) [fill*="#"]:not(.uk-preserve){fill:currentcolor}.uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve){stroke:currentcolor}.uk-icon>*{transform:translate(0,0)}.uk-icon-image{width:20px;height:20px;background-position:50% 50%;background-repeat:no-repeat;background-size:contain;vertical-align:middle;object-fit:scale-down;max-width:none}.uk-icon-link{color:#999;text-decoration:none!important}.uk-icon-link:hover{color:#666}.uk-active>.uk-icon-link,.uk-icon-link:active{color:#595959}.uk-icon-button{box-sizing:border-box;width:36px;height:36px;border-radius:500px;background:#f8f8f8;color:#999;vertical-align:middle;display:inline-flex;justify-content:center;align-items:center;transition:.1s ease-in-out;transition-property:color,background-color}.uk-icon-button:hover{background-color:#ebebeb;color:#666}.uk-active>.uk-icon-button,.uk-icon-button:active{background-color:#dfdfdf;color:#666}.uk-range{-webkit-appearance:none;box-sizing:border-box;margin:0;vertical-align:middle;max-width:100%;width:100%;background:0 0}.uk-range:focus{outline:0}.uk-range::-moz-focus-outer{border:none}.uk-range:not(:disabled)::-webkit-slider-thumb{cursor:pointer}.uk-range:not(:disabled)::-moz-range-thumb{cursor:pointer}.uk-range::-webkit-slider-runnable-track{height:3px;background:#ebebeb;border-radius:500px}.uk-range:active::-webkit-slider-runnable-track,.uk-range:focus::-webkit-slider-runnable-track{background:#dedede}.uk-range::-moz-range-track{height:3px;background:#ebebeb;border-radius:500px}.uk-range:focus::-moz-range-track{background:#dedede}.uk-range::-webkit-slider-thumb{-webkit-appearance:none;margin-top:-7px;height:15px;width:15px;border-radius:500px;background:#fff;border:1px solid #ccc}.uk-range::-moz-range-thumb{border:none;height:15px;width:15px;margin-top:-7px;border-radius:500px;background:#fff;border:1px solid #ccc}.uk-checkbox,.uk-input,.uk-radio,.uk-select,.uk-textarea{box-sizing:border-box;margin:0;border-radius:0;font:inherit}.uk-input{overflow:visible}.uk-select{text-transform:none}.uk-select optgroup{font:inherit;font-weight:700}.uk-textarea{overflow:auto}.uk-input[type=search]::-webkit-search-cancel-button,.uk-input[type=search]::-webkit-search-decoration{-webkit-appearance:none}.uk-input[type=number]::-webkit-inner-spin-button,.uk-input[type=number]::-webkit-outer-spin-button{height:auto}.uk-input::-moz-placeholder,.uk-textarea::-moz-placeholder{opacity:1}.uk-checkbox:not(:disabled),.uk-radio:not(:disabled){cursor:pointer}.uk-fieldset{border:none;margin:0;padding:0;min-width:0}.uk-input,.uk-textarea{-webkit-appearance:none}.uk-input,.uk-select,.uk-textarea{max-width:100%;width:100%;border:0 none;padding:0 10px;background:#fff;color:#666;border:1px solid #e5e5e5;transition:.2s ease-in-out;transition-property:color,background-color,border}.uk-input,.uk-select:not([multiple]):not([size]){height:40px;vertical-align:middle;display:inline-block}.uk-input:not(input),.uk-select:not(select){line-height:38px}.uk-select[multiple],.uk-select[size],.uk-textarea{padding-top:6px;padding-bottom:6px;vertical-align:top}.uk-select[multiple],.uk-select[size]{resize:vertical}.uk-input:focus,.uk-select:focus,.uk-textarea:focus{outline:0;background-color:#fff;color:#666;border-color:#1e87f0}.uk-input:disabled,.uk-select:disabled,.uk-textarea:disabled{background-color:#f8f8f8;color:#999;border-color:#e5e5e5}.uk-input::placeholder{color:#999}.uk-textarea::placeholder{color:#999}.uk-form-small{font-size:.875rem}.uk-form-small:not(textarea):not([multiple]):not([size]){height:30px;padding-left:8px;padding-right:8px}[multiple].uk-form-small,[size].uk-form-small,textarea.uk-form-small{padding:5px 8px}.uk-form-small:not(select):not(input):not(textarea){line-height:28px}.uk-form-large{font-size:1.25rem}.uk-form-large:not(textarea):not([multiple]):not([size]){height:55px;padding-left:12px;padding-right:12px}[multiple].uk-form-large,[size].uk-form-large,textarea.uk-form-large{padding:7px 12px}.uk-form-large:not(select):not(input):not(textarea){line-height:53px}.uk-form-danger,.uk-form-danger:focus{color:#f0506e;border-color:#f0506e}.uk-form-success,.uk-form-success:focus{color:#32d296;border-color:#32d296}.uk-form-blank{background:0 0;border-color:transparent}.uk-form-blank:focus{border-color:#e5e5e5;border-style:solid}input.uk-form-width-xsmall{width:50px}select.uk-form-width-xsmall{width:75px}.uk-form-width-small{width:130px}.uk-form-width-medium{width:200px}.uk-form-width-large{width:500px}.uk-select:not([multiple]):not([size]){-webkit-appearance:none;-moz-appearance:none;padding-right:20px;background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");background-repeat:no-repeat;background-position:100% 50%}.uk-select:not([multiple]):not([size]) option{color:#666}.uk-select:not([multiple]):not([size]):disabled{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A")}.uk-input[list]{padding-right:20px;background-repeat:no-repeat;background-position:100% 50%}.uk-input[list]:focus,.uk-input[list]:hover{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A")}.uk-input[list]::-webkit-calendar-picker-indicator{display:none!important}.uk-checkbox,.uk-radio{display:inline-block;height:16px;width:16px;overflow:hidden;margin-top:-4px;vertical-align:middle;-webkit-appearance:none;-moz-appearance:none;background-color:transparent;background-repeat:no-repeat;background-position:50% 50%;border:1px solid #ccc;transition:.2s ease-in-out;transition-property:background-color,border}.uk-radio{border-radius:50%}.uk-checkbox:focus,.uk-radio:focus{background-color:rgba(0,0,0,0);outline:0;border-color:#1e87f0}.uk-checkbox:checked,.uk-checkbox:indeterminate,.uk-radio:checked{background-color:#1e87f0;border-color:transparent}.uk-checkbox:checked:focus,.uk-checkbox:indeterminate:focus,.uk-radio:checked:focus{background-color:#0e6dcd}.uk-radio:checked{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E")}.uk-checkbox:checked{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A")}.uk-checkbox:indeterminate{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23fff%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E")}.uk-checkbox:disabled,.uk-radio:disabled{background-color:#f8f8f8;border-color:#e5e5e5}.uk-radio:disabled:checked{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23999%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E")}.uk-checkbox:disabled:checked{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A")}.uk-checkbox:disabled:indeterminate{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23999%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E")}.uk-legend{width:100%;color:inherit;padding:0;font-size:1.5rem;line-height:1.4}.uk-form-custom{display:inline-block;position:relative;max-width:100%;vertical-align:middle}.uk-form-custom input[type=file],.uk-form-custom select{position:absolute;top:0;z-index:1;width:100%;height:100%;left:0;-webkit-appearance:none;opacity:0;cursor:pointer}.uk-form-custom input[type=file]{font-size:500px;overflow:hidden}.uk-form-label{color:#333;font-size:.875rem}.uk-form-stacked .uk-form-label{display:block;margin-bottom:5px}@media (max-width:959px){.uk-form-horizontal .uk-form-label{display:block;margin-bottom:5px}}@media (min-width:960px){.uk-form-horizontal .uk-form-label{width:200px;margin-top:7px;float:left}.uk-form-horizontal .uk-form-controls{margin-left:215px}.uk-form-horizontal .uk-form-controls-text{padding-top:7px}}.uk-form-icon{position:absolute;top:0;bottom:0;left:0;width:40px;display:inline-flex;justify-content:center;align-items:center;color:#999}.uk-form-icon:hover{color:#666}.uk-form-icon:not(a):not(button):not(input){pointer-events:none}.uk-form-icon:not(.uk-form-icon-flip)~.uk-input{padding-left:40px!important}.uk-form-icon-flip{right:0;left:auto}.uk-form-icon-flip~.uk-input{padding-right:40px!important}.uk-button{margin:0;border:none;overflow:visible;font:inherit;color:inherit;text-transform:none;-webkit-appearance:none;border-radius:0;display:inline-block;box-sizing:border-box;padding:0 30px;vertical-align:middle;font-size:.875rem;line-height:38px;text-align:center;text-decoration:none;text-transform:uppercase;transition:.1s ease-in-out;transition-property:color,background-color,border-color}.uk-button:not(:disabled){cursor:pointer}.uk-button::-moz-focus-inner{border:0;padding:0}.uk-button:hover{text-decoration:none}.uk-button-default{background-color:transparent;color:#333;border:1px solid #e5e5e5}.uk-button-default:hover{background-color:transparent;color:#333;border-color:#b2b2b2}.uk-button-default.uk-active,.uk-button-default:active{background-color:transparent;color:#333;border-color:#999}.uk-button-primary{background-color:#1e87f0;color:#fff;border:1px solid transparent}.uk-button-primary:hover{background-color:#0f7ae5;color:#fff}.uk-button-primary.uk-active,.uk-button-primary:active{background-color:#0e6dcd;color:#fff}.uk-button-secondary{background-color:#222;color:#fff;border:1px solid transparent}.uk-button-secondary:hover{background-color:#151515;color:#fff}.uk-button-secondary.uk-active,.uk-button-secondary:active{background-color:#080808;color:#fff}.uk-button-danger{background-color:#f0506e;color:#fff;border:1px solid transparent}.uk-button-danger:hover{background-color:#ee395b;color:#fff}.uk-button-danger.uk-active,.uk-button-danger:active{background-color:#ec2147;color:#fff}.uk-button-danger:disabled,.uk-button-default:disabled,.uk-button-primary:disabled,.uk-button-secondary:disabled{background-color:transparent;color:#999;border-color:#e5e5e5}.uk-button-small{padding:0 15px;line-height:28px;font-size:.875rem}.uk-button-large{padding:0 40px;line-height:53px;font-size:.875rem}.uk-button-text{padding:0;line-height:1.5;background:0 0;color:#333;position:relative}.uk-button-text::before{content:"";position:absolute;bottom:0;left:0;right:100%;border-bottom:1px solid currentColor;transition:right .3s ease-out}.uk-button-text:hover{color:#333}.uk-button-text:hover::before{right:0}.uk-button-text:disabled{color:#999}.uk-button-text:disabled::before{display:none}.uk-button-link{padding:0;line-height:1.5;background:0 0;color:#333}.uk-button-link:hover{color:#999;text-decoration:none}.uk-button-link:disabled{color:#999;text-decoration:none}.uk-button-group{display:inline-flex;vertical-align:middle;position:relative}.uk-button-group>.uk-button:nth-child(n+2),.uk-button-group>div:nth-child(n+2) .uk-button{margin-left:-1px}.uk-button-group .uk-button.uk-active,.uk-button-group .uk-button:active,.uk-button-group .uk-button:focus,.uk-button-group .uk-button:hover{position:relative;z-index:1}.uk-progress{vertical-align:baseline;display:block;width:100%;border:0;background-color:#f8f8f8;margin-bottom:20px;height:15px;border-radius:500px;overflow:hidden}*+.uk-progress{margin-top:20px}.uk-progress::-webkit-progress-bar{background-color:transparent}.uk-progress::-webkit-progress-value{background-color:#1e87f0;transition:width .6s ease}.uk-progress::-moz-progress-bar{background-color:#1e87f0;transition:width .6s ease}.uk-section{display:flow-root;box-sizing:border-box;padding-top:40px;padding-bottom:40px}@media (min-width:960px){.uk-section{padding-top:70px;padding-bottom:70px}}.uk-section>:last-child{margin-bottom:0}.uk-section-xsmall{padding-top:20px;padding-bottom:20px}.uk-section-small{padding-top:40px;padding-bottom:40px}.uk-section-large{padding-top:70px;padding-bottom:70px}@media (min-width:960px){.uk-section-large{padding-top:140px;padding-bottom:140px}}.uk-section-xlarge{padding-top:140px;padding-bottom:140px}@media (min-width:960px){.uk-section-xlarge{padding-top:210px;padding-bottom:210px}}.uk-section-default{--uk-inverse:dark;background:#fff}.uk-section-muted{--uk-inverse:dark;background:#f8f8f8}.uk-section-primary{--uk-inverse:light;background:#1e87f0}.uk-section-secondary{--uk-inverse:light;background:#222}.uk-container{display:flow-root;box-sizing:content-box;max-width:1200px;margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}@media (min-width:640px){.uk-container{padding-left:30px;padding-right:30px}}@media (min-width:960px){.uk-container{padding-left:40px;padding-right:40px}}.uk-container>:last-child{margin-bottom:0}.uk-container .uk-container{padding-left:0;padding-right:0}.uk-container-xsmall{max-width:750px}.uk-container-small{max-width:900px}.uk-container-large{max-width:1400px}.uk-container-xlarge{max-width:1600px}.uk-container-expand{max-width:none}.uk-container-expand-left{margin-left:0}.uk-container-expand-right{margin-right:0}@media (min-width:640px){.uk-container-expand-left.uk-container-xsmall,.uk-container-expand-right.uk-container-xsmall{max-width:calc(50% + (750px / 2) - 30px)}.uk-container-expand-left.uk-container-small,.uk-container-expand-right.uk-container-small{max-width:calc(50% + (900px / 2) - 30px)}}@media (min-width:960px){.uk-container-expand-left,.uk-container-expand-right{max-width:calc(50% + (1200px / 2) - 40px)}.uk-container-expand-left.uk-container-xsmall,.uk-container-expand-right.uk-container-xsmall{max-width:calc(50% + (750px / 2) - 40px)}.uk-container-expand-left.uk-container-small,.uk-container-expand-right.uk-container-small{max-width:calc(50% + (900px / 2) - 40px)}.uk-container-expand-left.uk-container-large,.uk-container-expand-right.uk-container-large{max-width:calc(50% + (1400px / 2) - 40px)}.uk-container-expand-left.uk-container-xlarge,.uk-container-expand-right.uk-container-xlarge{max-width:calc(50% + (1600px / 2) - 40px)}}.uk-container-item-padding-remove-left,.uk-container-item-padding-remove-right{width:calc(100% + 15px)}.uk-container-item-padding-remove-left{margin-left:-15px}.uk-container-item-padding-remove-right{margin-right:-15px}@media (min-width:640px){.uk-container-item-padding-remove-left,.uk-container-item-padding-remove-right{width:calc(100% + 30px)}.uk-container-item-padding-remove-left{margin-left:-30px}.uk-container-item-padding-remove-right{margin-right:-30px}}@media (min-width:960px){.uk-container-item-padding-remove-left,.uk-container-item-padding-remove-right{width:calc(100% + 40px)}.uk-container-item-padding-remove-left{margin-left:-40px}.uk-container-item-padding-remove-right{margin-right:-40px}}.uk-tile{display:flow-root;position:relative;box-sizing:border-box;padding-left:15px;padding-right:15px;padding-top:40px;padding-bottom:40px}@media (min-width:640px){.uk-tile{padding-left:30px;padding-right:30px}}@media (min-width:960px){.uk-tile{padding-left:40px;padding-right:40px;padding-top:70px;padding-bottom:70px}}.uk-tile>:last-child{margin-bottom:0}.uk-tile-xsmall{padding-top:20px;padding-bottom:20px}.uk-tile-small{padding-top:40px;padding-bottom:40px}.uk-tile-large{padding-top:70px;padding-bottom:70px}@media (min-width:960px){.uk-tile-large{padding-top:140px;padding-bottom:140px}}.uk-tile-xlarge{padding-top:140px;padding-bottom:140px}@media (min-width:960px){.uk-tile-xlarge{padding-top:210px;padding-bottom:210px}}.uk-tile-default{--uk-inverse:dark;background-color:#fff}.uk-tile-muted{--uk-inverse:dark;background-color:#f8f8f8}.uk-tile-primary{--uk-inverse:light;background-color:#1e87f0}.uk-tile-secondary{--uk-inverse:light;background-color:#222}.uk-card{position:relative;box-sizing:border-box;transition:box-shadow .1s ease-in-out}.uk-card-body{display:flow-root;padding:30px 30px}.uk-card-header{display:flow-root;padding:15px 30px}.uk-card-footer{display:flow-root;padding:15px 30px}@media (min-width:1200px){.uk-card-body{padding:40px 40px}.uk-card-header{padding:20px 40px}.uk-card-footer{padding:20px 40px}}.uk-card-body>:last-child,.uk-card-footer>:last-child,.uk-card-header>:last-child{margin-bottom:0}.uk-card-title{font-size:1.5rem;line-height:1.4}.uk-card-badge{position:absolute;top:15px;right:15px;z-index:1;height:22px;padding:0 10px;background:#1e87f0;color:#fff;font-size:.875rem;display:flex;justify-content:center;align-items:center;line-height:0;border-radius:2px;text-transform:uppercase}.uk-card-badge:first-child+*{margin-top:0}.uk-card-hover:not(.uk-card-default):not(.uk-card-primary):not(.uk-card-secondary):hover{background-color:#fff;box-shadow:0 14px 25px rgba(0,0,0,.16)}.uk-card-default{--uk-inverse:dark;background-color:#fff;color:#666;box-shadow:0 5px 15px rgba(0,0,0,.08)}.uk-card-default .uk-card-title{color:#333}.uk-card-default.uk-card-hover:hover{background-color:#fff;box-shadow:0 14px 25px rgba(0,0,0,.16)}.uk-card-default .uk-card-header{border-bottom:1px solid #e5e5e5}.uk-card-default .uk-card-footer{border-top:1px solid #e5e5e5}.uk-card-primary{--uk-inverse:light;background-color:#1e87f0;color:#fff;box-shadow:0 5px 15px rgba(0,0,0,.08)}.uk-card-primary .uk-card-title{color:#fff}.uk-card-primary.uk-card-hover:hover{background-color:#1e87f0;box-shadow:0 14px 25px rgba(0,0,0,.16)}.uk-card-secondary{--uk-inverse:light;background-color:#222;color:#fff;box-shadow:0 5px 15px rgba(0,0,0,.08)}.uk-card-secondary .uk-card-title{color:#fff}.uk-card-secondary.uk-card-hover:hover{background-color:#222;box-shadow:0 14px 25px rgba(0,0,0,.16)}.uk-card-small .uk-card-body,.uk-card-small.uk-card-body{padding:20px 20px}.uk-card-small .uk-card-header{padding:13px 20px}.uk-card-small .uk-card-footer{padding:13px 20px}@media (min-width:1200px){.uk-card-large .uk-card-body,.uk-card-large.uk-card-body{padding:70px 70px}.uk-card-large .uk-card-header{padding:35px 70px}.uk-card-large .uk-card-footer{padding:35px 70px}}.uk-card-body>.uk-nav-default{margin-left:-30px;margin-right:-30px}.uk-card-body>.uk-nav-default:only-child{margin-top:-15px;margin-bottom:-15px}.uk-card-body>.uk-nav-default .uk-nav-divider,.uk-card-body>.uk-nav-default .uk-nav-header,.uk-card-body>.uk-nav-default>li>a{padding-left:30px;padding-right:30px}.uk-card-body>.uk-nav-default .uk-nav-sub{padding-left:45px}@media (min-width:1200px){.uk-card-body>.uk-nav-default{margin-left:-40px;margin-right:-40px}.uk-card-body>.uk-nav-default:only-child{margin-top:-25px;margin-bottom:-25px}.uk-card-body>.uk-nav-default .uk-nav-divider,.uk-card-body>.uk-nav-default .uk-nav-header,.uk-card-body>.uk-nav-default>li>a{padding-left:40px;padding-right:40px}.uk-card-body>.uk-nav-default .uk-nav-sub{padding-left:55px}}.uk-card-small>.uk-nav-default{margin-left:-20px;margin-right:-20px}.uk-card-small>.uk-nav-default:only-child{margin-top:-5px;margin-bottom:-5px}.uk-card-small>.uk-nav-default .uk-nav-divider,.uk-card-small>.uk-nav-default .uk-nav-header,.uk-card-small>.uk-nav-default>li>a{padding-left:20px;padding-right:20px}.uk-card-small>.uk-nav-default .uk-nav-sub{padding-left:35px}@media (min-width:1200px){.uk-card-large>.uk-nav-default{margin:0}.uk-card-large>.uk-nav-default:only-child{margin:0}.uk-card-large>.uk-nav-default .uk-nav-divider,.uk-card-large>.uk-nav-default .uk-nav-header,.uk-card-large>.uk-nav-default>li>a{padding-left:0;padding-right:0}.uk-card-large>.uk-nav-default .uk-nav-sub{padding-left:15px}}.uk-close{color:#999;transition:.1s ease-in-out;transition-property:color,opacity}.uk-close:hover{color:#666}.uk-spinner>*{animation:uk-spinner-rotate 1.4s linear infinite}@keyframes uk-spinner-rotate{0%{transform:rotate(0)}100%{transform:rotate(270deg)}}.uk-spinner>*>*{stroke-dasharray:88px;stroke-dashoffset:0;transform-origin:center;animation:uk-spinner-dash 1.4s ease-in-out infinite;stroke-width:1;stroke-linecap:round}@keyframes uk-spinner-dash{0%{stroke-dashoffset:88px}50%{stroke-dashoffset:22px;transform:rotate(135deg)}100%{stroke-dashoffset:88px;transform:rotate(450deg)}}.uk-totop{padding:5px;color:#999;transition:color .1s ease-in-out}.uk-totop:hover{color:#666}.uk-totop:active{color:#333}.uk-marker{padding:5px;background:#222;color:#fff;border-radius:500px}.uk-marker:hover{color:#fff}.uk-alert{position:relative;margin-bottom:20px;padding:15px 29px 15px 15px;background:#f8f8f8;color:#666}*+.uk-alert{margin-top:20px}.uk-alert>:last-child{margin-bottom:0}.uk-alert-close{position:absolute;top:20px;right:15px;color:inherit;opacity:.4}.uk-alert-close:first-child+*{margin-top:0}.uk-alert-close:hover{color:inherit;opacity:.8}.uk-alert-primary{background:#d8eafc;color:#1e87f0}.uk-alert-success{background:#edfbf6;color:#32d296}.uk-alert-warning{background:#fff6ee;color:#faa05a}.uk-alert-danger{background:#fef4f6;color:#f0506e}.uk-alert h1,.uk-alert h2,.uk-alert h3,.uk-alert h4,.uk-alert h5,.uk-alert h6{color:inherit}.uk-alert a:not([class]){color:inherit;text-decoration:underline}.uk-alert a:not([class]):hover{color:inherit;text-decoration:underline}.uk-placeholder{margin-bottom:20px;padding:30px 30px;background:0 0;border:1px dashed #e5e5e5}*+.uk-placeholder{margin-top:20px}.uk-placeholder>:last-child{margin-bottom:0}.uk-badge{box-sizing:border-box;min-width:18px;height:18px;padding:0 5px;border-radius:500px;vertical-align:middle;background:#1e87f0;color:#fff!important;font-size:11px;display:inline-flex;justify-content:center;align-items:center;line-height:0}.uk-badge:hover{text-decoration:none}.uk-label{display:inline-block;padding:0 10px;background:#1e87f0;line-height:1.5;font-size:.875rem;color:#fff;vertical-align:middle;white-space:nowrap;border-radius:2px;text-transform:uppercase}.uk-label-success{background-color:#32d296;color:#fff}.uk-label-warning{background-color:#faa05a;color:#fff}.uk-label-danger{background-color:#f0506e;color:#fff}.uk-overlay{padding:30px 30px}.uk-overlay>:last-child{margin-bottom:0}.uk-overlay-default{--uk-inverse:dark;background:rgba(255,255,255,.8)}.uk-overlay-primary{--uk-inverse:light;background:rgba(34,34,34,.8)}.uk-article{display:flow-root}.uk-article>:last-child{margin-bottom:0}.uk-article+.uk-article{margin-top:70px}.uk-article-title{font-size:2.23125rem;line-height:1.2}@media (min-width:960px){.uk-article-title{font-size:2.625rem}}.uk-article-meta{font-size:.875rem;line-height:1.4;color:#999}.uk-article-meta a{color:#999}.uk-article-meta a:hover{color:#666;text-decoration:none}.uk-comment-body{display:flow-root;overflow-wrap:break-word;word-wrap:break-word}.uk-comment-header{display:flow-root;margin-bottom:20px}.uk-comment-body>:last-child,.uk-comment-header>:last-child{margin-bottom:0}.uk-comment-title{font-size:1.25rem;line-height:1.4}.uk-comment-meta{font-size:.875rem;line-height:1.4;color:#999}.uk-comment-list{padding:0;list-style:none}.uk-comment-list>:nth-child(n+2){margin-top:70px}.uk-comment-list .uk-comment~ul{margin:70px 0 0 0;padding-left:30px;list-style:none}@media (min-width:960px){.uk-comment-list .uk-comment~ul{padding-left:100px}}.uk-comment-list .uk-comment~ul>:nth-child(n+2){margin-top:70px}.uk-comment-primary{padding:30px;background-color:#f8f8f8}.uk-search{display:inline-block;position:relative;max-width:100%;margin:0}.uk-search-input::-webkit-search-cancel-button,.uk-search-input::-webkit-search-decoration{-webkit-appearance:none}.uk-search-input::-moz-placeholder{opacity:1}.uk-search-input{box-sizing:border-box;margin:0;border-radius:0;font:inherit;overflow:visible;-webkit-appearance:none;vertical-align:middle;width:100%;border:none;color:#666}.uk-search-input:focus{outline:0}.uk-search-input::placeholder{color:#999}.uk-search .uk-search-icon{position:absolute;top:0;bottom:0;left:0;display:inline-flex;justify-content:center;align-items:center;color:#999}.uk-search .uk-search-icon:hover{color:#999}.uk-search .uk-search-icon:not(a):not(button):not(input){pointer-events:none}.uk-search .uk-search-icon-flip{right:0;left:auto}.uk-search-default{width:240px}.uk-search-default .uk-search-input{height:40px;padding-left:10px;padding-right:10px;background:0 0;border:1px solid #e5e5e5}.uk-search-default .uk-search-input:focus{background-color:rgba(0,0,0,0);border-color:#1e87f0}.uk-search-default .uk-search-icon{width:40px}.uk-search-default:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input{padding-left:40px}.uk-search-default:has(.uk-search-icon-flip) .uk-search-input{padding-right:40px}.uk-search-navbar{width:240px}.uk-search-navbar .uk-search-input{height:40px;padding-left:10px;padding-right:10px;background:#fff;border:1px solid #e5e5e5}.uk-search-navbar .uk-search-input:focus{background-color:#fff;border-color:#1e87f0}.uk-search-navbar .uk-search-icon{width:40px}.uk-search-navbar:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input{padding-left:40px}.uk-search-navbar:has(.uk-search-icon-flip) .uk-search-input{padding-right:40px}.uk-search-medium{width:400px}.uk-search-medium .uk-search-input{height:40px;background:0 0;font-size:1.5rem}.uk-search-medium .uk-search-icon{width:24px}.uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input{padding-left:34px}.uk-search-medium:has(.uk-search-icon-flip) .uk-search-input{padding-right:34px}.uk-search-large{width:500px}.uk-search-large .uk-search-input{height:80px;background:0 0;font-size:2.625rem}.uk-search-large .uk-search-icon{width:40px}.uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input{padding-left:60px}.uk-search-large:has(.uk-search-icon-flip) .uk-search-input{padding-right:60px}.uk-search-toggle{color:#999}.uk-search-toggle:hover{color:#666}.uk-accordion{padding:0;list-style:none}.uk-accordion>:nth-child(n+2){margin-top:20px}.uk-accordion-title{display:block;font-size:1.25rem;line-height:1.4;color:#333;overflow:hidden}.uk-accordion-title::before{content:"";width:1.4em;height:1.4em;margin-left:10px;float:right;background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E");background-repeat:no-repeat;background-position:50% 50%}.uk-open>.uk-accordion-title::before{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E")}.uk-accordion-title:hover{color:#666;text-decoration:none}.uk-accordion-content{display:flow-root;margin-top:20px}.uk-accordion-content>:last-child{margin-bottom:0}.uk-drop{display:none;position:absolute;z-index:1020;--uk-position-offset:20px;--uk-position-viewport-offset:15px;box-sizing:border-box;width:300px}.uk-drop.uk-open{display:block}.uk-drop-stack .uk-drop-grid>*{width:100%!important}.uk-drop-parent-icon{margin-left:.25em;transition:transform .3s ease-out}[aria-expanded=true]>.uk-drop-parent-icon{transform:rotateX(180deg)}.uk-dropbar{--uk-position-offset:0;--uk-position-shift-offset:0;--uk-position-viewport-offset:0;--uk-inverse:dark;width:auto;padding:25px 15px 25px 15px;background:#fff;color:#666}.uk-dropbar>:last-child{margin-bottom:0}@media (min-width:640px){.uk-dropbar{padding-left:30px;padding-right:30px}}@media (min-width:960px){.uk-dropbar{padding-left:40px;padding-right:40px}}.uk-dropbar :focus-visible{outline-color:#333!important}.uk-dropbar-large{padding-top:40px;padding-bottom:40px}.uk-dropbar-top{box-shadow:0 12px 7px -6px rgba(0,0,0,.05)}.uk-dropbar-bottom{box-shadow:0 -12px 7px -6px rgba(0,0,0,.05)}.uk-dropbar-left{box-shadow:12px 0 7px -6px rgba(0,0,0,.05)}.uk-dropbar-right{box-shadow:-12px 0 7px -6px rgba(0,0,0,.05)}.uk-dropnav-dropbar{position:absolute;z-index:980;padding:0;left:0;right:0}.uk-modal{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1010;overflow-y:auto;padding:15px 15px;background:rgba(0,0,0,.6);opacity:0;transition:opacity .15s linear}@media (min-width:640px){.uk-modal{padding:50px 30px}}@media (min-width:960px){.uk-modal{padding-left:40px;padding-right:40px}}.uk-modal.uk-open{opacity:1}.uk-modal-page{overflow:hidden}.uk-modal-dialog{position:relative;box-sizing:border-box;margin:0 auto;width:600px;max-width:100%!important;background:#fff;opacity:0;transform:translateY(-100px);transition:.3s linear;transition-property:opacity,transform}.uk-open>.uk-modal-dialog{opacity:1;transform:translateY(0)}.uk-modal-container .uk-modal-dialog{width:1200px}.uk-modal-full{padding:0;background:0 0}.uk-modal-full .uk-modal-dialog{margin:0;width:100%;max-width:100%;transform:translateY(0)}.uk-modal-body{display:flow-root;padding:20px 20px}.uk-modal-header{display:flow-root;padding:10px 20px;background:#fff;border-bottom:1px solid #e5e5e5}.uk-modal-footer{display:flow-root;padding:10px 20px;background:#fff;border-top:1px solid #e5e5e5}@media (min-width:640px){.uk-modal-body{padding:30px 30px}.uk-modal-header{padding:15px 30px}.uk-modal-footer{padding:15px 30px}}.uk-modal-body>:last-child,.uk-modal-footer>:last-child,.uk-modal-header>:last-child{margin-bottom:0}.uk-modal-title{font-size:2rem;line-height:1.3}[class*=uk-modal-close-]{position:absolute;z-index:1010;top:10px;right:10px;padding:5px}[class*=uk-modal-close-]:first-child+*{margin-top:0}.uk-modal-close-outside{top:0;right:-5px;transform:translate(0,-100%);color:#fff}.uk-modal-close-outside:hover{color:#fff}@media (min-width:960px){.uk-modal-close-outside{right:0;transform:translate(100%,-100%)}}.uk-modal-close-full{top:0;right:0;padding:10px;background:#fff}@media (min-width:960px){.uk-modal-close-full{padding:20px}}.uk-slideshow{-webkit-tap-highlight-color:transparent}.uk-slideshow-items{position:relative;z-index:0;margin:0;padding:0;list-style:none;overflow:hidden;-webkit-touch-callout:none;touch-action:pan-y}.uk-slideshow-items>*{position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden;will-change:transform,opacity}.uk-slideshow-items>:not(.uk-active){display:none}.uk-slider{-webkit-tap-highlight-color:transparent}.uk-slider-container{overflow:hidden;overflow:clip}.uk-slider-container-offset{margin:-11px -25px -39px -25px;padding:11px 25px 39px 25px}.uk-slider-items{will-change:transform;position:relative;touch-action:pan-y}.uk-slider-items:not(.uk-grid){display:flex;margin:0;padding:0;list-style:none;-webkit-touch-callout:none}.uk-slider-items.uk-grid{flex-wrap:nowrap}.uk-slider-items>*{flex:none!important;box-sizing:border-box;max-width:100%;position:relative}.uk-sticky{position:relative;z-index:980;box-sizing:border-box}.uk-sticky-fixed{margin:0!important;-webkit-backface-visibility:hidden;backface-visibility:hidden}.uk-sticky[class*=uk-animation-]{animation-duration:.2s}.uk-sticky.uk-animation-reverse{animation-duration:.2s}.uk-sticky-placeholder{pointer-events:none}.uk-offcanvas{display:none;position:fixed;top:0;bottom:0;left:0;z-index:1000}.uk-offcanvas-flip .uk-offcanvas{right:0;left:auto}.uk-offcanvas-bar{--uk-inverse:light;position:absolute;top:0;bottom:0;left:-270px;box-sizing:border-box;width:270px;padding:20px 20px;background:#222;overflow-y:auto}@media (min-width:640px){.uk-offcanvas-bar{left:-350px;width:350px;padding:30px 30px}}.uk-offcanvas-flip .uk-offcanvas-bar{left:auto;right:-270px}@media (min-width:640px){.uk-offcanvas-flip .uk-offcanvas-bar{right:-350px}}.uk-open>.uk-offcanvas-bar{left:0}.uk-offcanvas-flip .uk-open>.uk-offcanvas-bar{left:auto;right:0}.uk-offcanvas-bar-animation{transition:left .3s ease-out}.uk-offcanvas-flip .uk-offcanvas-bar-animation{transition-property:right}.uk-offcanvas-reveal{position:absolute;top:0;bottom:0;left:0;width:0;overflow:hidden;transition:width .3s ease-out}.uk-offcanvas-reveal .uk-offcanvas-bar{left:0}.uk-offcanvas-flip .uk-offcanvas-reveal .uk-offcanvas-bar{left:auto;right:0}.uk-open>.uk-offcanvas-reveal{width:270px}@media (min-width:640px){.uk-open>.uk-offcanvas-reveal{width:350px}}.uk-offcanvas-flip .uk-offcanvas-reveal{right:0;left:auto}.uk-offcanvas-close{position:absolute;z-index:1000;top:5px;right:5px;padding:5px}@media (min-width:640px){.uk-offcanvas-close{top:10px;right:10px}}.uk-offcanvas-close:first-child+*{margin-top:0}.uk-offcanvas-overlay{width:100vw;touch-action:none}.uk-offcanvas-overlay::before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(0,0,0,.1);opacity:0;transition:opacity .15s linear}.uk-offcanvas-overlay.uk-open::before{opacity:1}.uk-offcanvas-container,.uk-offcanvas-page{overflow-x:hidden;overflow-x:clip}.uk-offcanvas-container{position:relative;left:0;transition:left .3s ease-out;box-sizing:border-box;width:100%}:not(.uk-offcanvas-flip).uk-offcanvas-container-animation{left:270px}.uk-offcanvas-flip.uk-offcanvas-container-animation{left:-270px}@media (min-width:640px){:not(.uk-offcanvas-flip).uk-offcanvas-container-animation{left:350px}.uk-offcanvas-flip.uk-offcanvas-container-animation{left:-350px}}.uk-switcher{margin:0;padding:0;list-style:none}.uk-switcher>:not(.uk-active){display:none}.uk-switcher>*>:last-child{margin-bottom:0}.uk-leader{overflow:hidden}.uk-leader-fill::after{display:inline-block;margin-left:15px;width:0;content:attr(data-fill);white-space:nowrap}.uk-leader-fill.uk-leader-hide::after{display:none}:root{--uk-leader-fill-content:.}.uk-notification{position:fixed;top:10px;left:10px;z-index:1040;box-sizing:border-box;width:350px}.uk-notification-bottom-right,.uk-notification-top-right{left:auto;right:10px}.uk-notification-bottom-center,.uk-notification-top-center{left:50%;margin-left:-175px}.uk-notification-bottom-center,.uk-notification-bottom-left,.uk-notification-bottom-right{top:auto;bottom:10px}@media (max-width:639px){.uk-notification{left:10px;right:10px;width:auto;margin:0}}.uk-notification-message{position:relative;padding:15px;background:#f8f8f8;color:#666;font-size:1.25rem;line-height:1.4;cursor:pointer}*+.uk-notification-message{margin-top:10px}.uk-notification-close{display:none;position:absolute;top:20px;right:15px}.uk-notification-message:hover .uk-notification-close{display:block}.uk-notification-message-primary{color:#1e87f0}.uk-notification-message-success{color:#32d296}.uk-notification-message-warning{color:#faa05a}.uk-notification-message-danger{color:#f0506e}.uk-tooltip{display:none;position:absolute;z-index:1030;--uk-position-offset:10px;--uk-position-viewport-offset:10;top:0;box-sizing:border-box;max-width:200px;padding:3px 6px;background:#666;border-radius:2px;color:#fff;font-size:12px}.uk-tooltip.uk-active{display:block}.uk-sortable{position:relative}.uk-sortable>:last-child{margin-bottom:0}.uk-sortable-drag{position:fixed!important;z-index:1050!important;pointer-events:none}.uk-sortable-placeholder{opacity:0;pointer-events:none}.uk-sortable-empty{min-height:50px}.uk-sortable-handle:hover{cursor:move}.uk-countdown-number{font-variant-numeric:tabular-nums;font-size:2rem;line-height:.8}@media (min-width:640px){.uk-countdown-number{font-size:4rem}}@media (min-width:960px){.uk-countdown-number{font-size:6rem}}.uk-countdown-separator{font-size:1rem;line-height:1.6}@media (min-width:640px){.uk-countdown-separator{font-size:2rem}}@media (min-width:960px){.uk-countdown-separator{font-size:3rem}}.uk-thumbnav{display:flex;flex-wrap:wrap;margin:0;padding:0;list-style:none;margin-left:-15px}.uk-thumbnav>*{padding-left:15px}.uk-thumbnav>*>*{display:inline-block;position:relative}.uk-thumbnav>*>::after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-image:linear-gradient(180deg,rgba(255,255,255,0),rgba(255,255,255,.4));transition:opacity .1s ease-in-out}.uk-thumbnav>*>:hover::after{opacity:0}.uk-thumbnav>.uk-active>::after{opacity:0}.uk-thumbnav-vertical{flex-direction:column;margin-left:0;margin-top:-15px}.uk-thumbnav-vertical>*{padding-left:0;padding-top:15px}.uk-iconnav{display:flex;flex-wrap:wrap;margin:0;padding:0;list-style:none;margin-left:-10px}.uk-iconnav>*{padding-left:10px}.uk-iconnav>*>a{display:flex;align-items:center;column-gap:.25em;line-height:0;color:#999;text-decoration:none;font-size:.875rem;transition:.1s ease-in-out;transition-property:color,background-color}.uk-iconnav>*>a:hover{color:#666}.uk-iconnav>.uk-active>a{color:#666}.uk-iconnav-vertical{flex-direction:column;margin-left:0;margin-top:-10px}.uk-iconnav-vertical>*{padding-left:0;padding-top:10px}.uk-grid{display:flex;flex-wrap:wrap;margin:0;padding:0;list-style:none}.uk-grid>*{margin:0}.uk-grid>*>:last-child{margin-bottom:0}.uk-grid{margin-left:-30px}.uk-grid>*{padding-left:30px}*+.uk-grid-margin,.uk-grid+.uk-grid,.uk-grid>.uk-grid-margin{margin-top:30px}@media (min-width:1200px){.uk-grid{margin-left:-40px}.uk-grid>*{padding-left:40px}*+.uk-grid-margin,.uk-grid+.uk-grid,.uk-grid>.uk-grid-margin{margin-top:40px}}.uk-grid-column-small,.uk-grid-small{margin-left:-15px}.uk-grid-column-small>*,.uk-grid-small>*{padding-left:15px}*+.uk-grid-margin-small,.uk-grid+.uk-grid-row-small,.uk-grid+.uk-grid-small,.uk-grid-row-small>.uk-grid-margin,.uk-grid-small>.uk-grid-margin{margin-top:15px}.uk-grid-column-medium,.uk-grid-medium{margin-left:-30px}.uk-grid-column-medium>*,.uk-grid-medium>*{padding-left:30px}*+.uk-grid-margin-medium,.uk-grid+.uk-grid-medium,.uk-grid+.uk-grid-row-medium,.uk-grid-medium>.uk-grid-margin,.uk-grid-row-medium>.uk-grid-margin{margin-top:30px}.uk-grid-column-large,.uk-grid-large{margin-left:-40px}.uk-grid-column-large>*,.uk-grid-large>*{padding-left:40px}*+.uk-grid-margin-large,.uk-grid+.uk-grid-large,.uk-grid+.uk-grid-row-large,.uk-grid-large>.uk-grid-margin,.uk-grid-row-large>.uk-grid-margin{margin-top:40px}@media (min-width:1200px){.uk-grid-column-large,.uk-grid-large{margin-left:-70px}.uk-grid-column-large>*,.uk-grid-large>*{padding-left:70px}*+.uk-grid-margin-large,.uk-grid+.uk-grid-large,.uk-grid+.uk-grid-row-large,.uk-grid-large>.uk-grid-margin,.uk-grid-row-large>.uk-grid-margin{margin-top:70px}}.uk-grid-collapse,.uk-grid-column-collapse{margin-left:0}.uk-grid-collapse>*,.uk-grid-column-collapse>*{padding-left:0}.uk-grid+.uk-grid-collapse,.uk-grid+.uk-grid-row-collapse,.uk-grid-collapse>.uk-grid-margin,.uk-grid-row-collapse>.uk-grid-margin{margin-top:0}.uk-grid-divider>*{position:relative}.uk-grid-divider>:not(.uk-first-column)::before{content:"";position:absolute;top:0;bottom:0;border-left:1px solid #e5e5e5}.uk-grid-divider.uk-grid-stack>.uk-grid-margin::before{content:"";position:absolute;left:0;right:0;border-top:1px solid #e5e5e5}.uk-grid-divider{margin-left:-60px}.uk-grid-divider>*{padding-left:60px}.uk-grid-divider>:not(.uk-first-column)::before{left:30px}.uk-grid-divider.uk-grid-stack>.uk-grid-margin{margin-top:60px}.uk-grid-divider.uk-grid-stack>.uk-grid-margin::before{top:-30px;left:60px}@media (min-width:1200px){.uk-grid-divider{margin-left:-80px}.uk-grid-divider>*{padding-left:80px}.uk-grid-divider>:not(.uk-first-column)::before{left:40px}.uk-grid-divider.uk-grid-stack>.uk-grid-margin{margin-top:80px}.uk-grid-divider.uk-grid-stack>.uk-grid-margin::before{top:-40px;left:80px}}.uk-grid-divider.uk-grid-column-small,.uk-grid-divider.uk-grid-small{margin-left:-30px}.uk-grid-divider.uk-grid-column-small>*,.uk-grid-divider.uk-grid-small>*{padding-left:30px}.uk-grid-divider.uk-grid-column-small>:not(.uk-first-column)::before,.uk-grid-divider.uk-grid-small>:not(.uk-first-column)::before{left:15px}.uk-grid-divider.uk-grid-row-small.uk-grid-stack>.uk-grid-margin,.uk-grid-divider.uk-grid-small.uk-grid-stack>.uk-grid-margin{margin-top:30px}.uk-grid-divider.uk-grid-small.uk-grid-stack>.uk-grid-margin::before{top:-15px;left:30px}.uk-grid-divider.uk-grid-row-small.uk-grid-stack>.uk-grid-margin::before{top:-15px}.uk-grid-divider.uk-grid-column-small.uk-grid-stack>.uk-grid-margin::before{left:30px}.uk-grid-divider.uk-grid-column-medium,.uk-grid-divider.uk-grid-medium{margin-left:-60px}.uk-grid-divider.uk-grid-column-medium>*,.uk-grid-divider.uk-grid-medium>*{padding-left:60px}.uk-grid-divider.uk-grid-column-medium>:not(.uk-first-column)::before,.uk-grid-divider.uk-grid-medium>:not(.uk-first-column)::before{left:30px}.uk-grid-divider.uk-grid-medium.uk-grid-stack>.uk-grid-margin,.uk-grid-divider.uk-grid-row-medium.uk-grid-stack>.uk-grid-margin{margin-top:60px}.uk-grid-divider.uk-grid-medium.uk-grid-stack>.uk-grid-margin::before{top:-30px;left:60px}.uk-grid-divider.uk-grid-row-medium.uk-grid-stack>.uk-grid-margin::before{top:-30px}.uk-grid-divider.uk-grid-column-medium.uk-grid-stack>.uk-grid-margin::before{left:60px}.uk-grid-divider.uk-grid-column-large,.uk-grid-divider.uk-grid-large{margin-left:-80px}.uk-grid-divider.uk-grid-column-large>*,.uk-grid-divider.uk-grid-large>*{padding-left:80px}.uk-grid-divider.uk-grid-column-large>:not(.uk-first-column)::before,.uk-grid-divider.uk-grid-large>:not(.uk-first-column)::before{left:40px}.uk-grid-divider.uk-grid-large.uk-grid-stack>.uk-grid-margin,.uk-grid-divider.uk-grid-row-large.uk-grid-stack>.uk-grid-margin{margin-top:80px}.uk-grid-divider.uk-grid-large.uk-grid-stack>.uk-grid-margin::before{top:-40px;left:80px}.uk-grid-divider.uk-grid-row-large.uk-grid-stack>.uk-grid-margin::before{top:-40px}.uk-grid-divider.uk-grid-column-large.uk-grid-stack>.uk-grid-margin::before{left:80px}@media (min-width:1200px){.uk-grid-divider.uk-grid-column-large,.uk-grid-divider.uk-grid-large{margin-left:-140px}.uk-grid-divider.uk-grid-column-large>*,.uk-grid-divider.uk-grid-large>*{padding-left:140px}.uk-grid-divider.uk-grid-column-large>:not(.uk-first-column)::before,.uk-grid-divider.uk-grid-large>:not(.uk-first-column)::before{left:70px}.uk-grid-divider.uk-grid-large.uk-grid-stack>.uk-grid-margin,.uk-grid-divider.uk-grid-row-large.uk-grid-stack>.uk-grid-margin{margin-top:140px}.uk-grid-divider.uk-grid-large.uk-grid-stack>.uk-grid-margin::before{top:-70px;left:140px}.uk-grid-divider.uk-grid-row-large.uk-grid-stack>.uk-grid-margin::before{top:-70px}.uk-grid-divider.uk-grid-column-large.uk-grid-stack>.uk-grid-margin::before{left:140px}}.uk-grid-item-match,.uk-grid-match>*{display:flex;flex-wrap:wrap}.uk-grid-item-match>:not([class*=uk-width]),.uk-grid-match>*>:not([class*=uk-width]){box-sizing:border-box;width:100%;flex:auto}.uk-nav,.uk-nav ul{margin:0;padding:0;list-style:none}.uk-nav li>a{display:flex;align-items:center;column-gap:.25em;text-decoration:none}.uk-nav>li>a{padding:5px 0}ul.uk-nav-sub{padding:5px 0 5px 15px}.uk-nav-sub ul{padding-left:15px}.uk-nav-sub a{padding:2px 0}.uk-nav-parent-icon{margin-left:auto;transition:transform .3s ease-out}.uk-nav>li.uk-open>a .uk-nav-parent-icon{transform:rotateX(180deg)}.uk-nav-header{padding:5px 0;text-transform:uppercase;font-size:.875rem}.uk-nav-header:not(:first-child){margin-top:20px}.uk-nav .uk-nav-divider{margin:5px 0}.uk-nav-default{font-size:.875rem;line-height:1.5}.uk-nav-default>li>a{color:#999}.uk-nav-default>li>a:hover{color:#666}.uk-nav-default>li.uk-active>a{color:#333}.uk-nav-default .uk-nav-subtitle{font-size:12px}.uk-nav-default .uk-nav-header{color:#333}.uk-nav-default .uk-nav-divider{border-top:1px solid #e5e5e5}.uk-nav-default .uk-nav-sub{font-size:.875rem;line-height:1.5}.uk-nav-default .uk-nav-sub a{color:#999}.uk-nav-default .uk-nav-sub a:hover{color:#666}.uk-nav-default .uk-nav-sub li.uk-active>a{color:#333}.uk-nav-primary{font-size:1.5rem;line-height:1.5}.uk-nav-primary>li>a{color:#999}.uk-nav-primary>li>a:hover{color:#666}.uk-nav-primary>li.uk-active>a{color:#333}.uk-nav-primary .uk-nav-subtitle{font-size:1.25rem}.uk-nav-primary .uk-nav-header{color:#333}.uk-nav-primary .uk-nav-divider{border-top:1px solid #e5e5e5}.uk-nav-primary .uk-nav-sub{font-size:1.25rem;line-height:1.5}.uk-nav-primary .uk-nav-sub a{color:#999}.uk-nav-primary .uk-nav-sub a:hover{color:#666}.uk-nav-primary .uk-nav-sub li.uk-active>a{color:#333}.uk-nav-secondary{font-size:16px;line-height:1.5}.uk-nav-secondary>:not(.uk-nav-divider)+:not(.uk-nav-header,.uk-nav-divider){margin-top:0}.uk-nav-secondary>li>a{color:#333;padding:10px 10px}.uk-nav-secondary>li>a:hover{color:#333;background-color:#f8f8f8}.uk-nav-secondary>li.uk-active>a{color:#333;background-color:#f8f8f8}.uk-nav-secondary .uk-nav-subtitle{font-size:.875rem;color:#999}.uk-nav-secondary>li>a:hover .uk-nav-subtitle{color:#666}.uk-nav-secondary>li.uk-active>a .uk-nav-subtitle{color:#333}.uk-nav-secondary .uk-nav-header{color:#333}.uk-nav-secondary .uk-nav-divider{border-top:1px solid #e5e5e5}.uk-nav-secondary .uk-nav-sub{font-size:.875rem;line-height:1.5}.uk-nav-secondary .uk-nav-sub a{color:#999}.uk-nav-secondary .uk-nav-sub a:hover{color:#666}.uk-nav-secondary .uk-nav-sub li.uk-active>a{color:#333}.uk-nav-medium{font-size:2.8875rem;line-height:1}.uk-nav-large{font-size:3.4rem;line-height:1}.uk-nav-xlarge{font-size:4rem;line-height:1}@media (min-width:960px){.uk-nav-medium{font-size:3.5rem}.uk-nav-large{font-size:4rem}.uk-nav-xlarge{font-size:6rem}}@media (min-width:1200px){.uk-nav-medium{font-size:4rem}.uk-nav-large{font-size:6rem}.uk-nav-xlarge{font-size:8rem}}.uk-nav-center{text-align:center}.uk-nav-center li>a{justify-content:center}.uk-nav-center .uk-nav-sub,.uk-nav-center .uk-nav-sub ul{padding-left:0}.uk-nav-center .uk-nav-parent-icon{margin-left:.25em}.uk-nav.uk-nav-divider>:not(.uk-nav-header,.uk-nav-divider)+:not(.uk-nav-header,.uk-nav-divider){margin-top:5px;padding-top:5px;border-top:1px solid #e5e5e5}.uk-navbar{display:flex;position:relative}.uk-navbar-container:not(.uk-navbar-transparent){background:#f8f8f8}.uk-navbar-left,.uk-navbar-right,[class*=uk-navbar-center]{display:flex;gap:15px;align-items:center}.uk-navbar-right{margin-left:auto}.uk-navbar-center:only-child{margin-left:auto;margin-right:auto;position:relative}.uk-navbar-center:not(:only-child){position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:max-content;box-sizing:border-box;z-index:990}.uk-navbar-center-left,.uk-navbar-center-right{position:absolute;top:0}.uk-navbar-center-left{right:calc(100% + 15px)}.uk-navbar-center-right{left:calc(100% + 15px)}[class*=uk-navbar-center-]{width:max-content;box-sizing:border-box}.uk-navbar-nav{display:flex;gap:15px;margin:0;padding:0;list-style:none}.uk-navbar-center:only-child,.uk-navbar-left,.uk-navbar-right{flex-wrap:wrap}.uk-navbar-item,.uk-navbar-nav>li>a,.uk-navbar-toggle{display:flex;justify-content:center;align-items:center;column-gap:.25em;box-sizing:border-box;min-height:80px;font-size:.875rem;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";text-decoration:none}.uk-navbar-nav>li>a{padding:0 0;color:#999;text-transform:uppercase;transition:.1s ease-in-out;transition-property:color,background-color}.uk-navbar-nav>li:hover>a,.uk-navbar-nav>li>a[aria-expanded=true]{color:#666}.uk-navbar-nav>li>a:active{color:#333}.uk-navbar-nav>li.uk-active>a{color:#333}.uk-navbar-parent-icon{margin-left:4px;transition:transform .3s ease-out}.uk-navbar-nav>li>a[aria-expanded=true] .uk-navbar-parent-icon{transform:rotateX(180deg)}.uk-navbar-item{padding:0 0;color:#666}.uk-navbar-item>:last-child{margin-bottom:0}.uk-navbar-toggle{padding:0 0;color:#999}.uk-navbar-toggle:hover,.uk-navbar-toggle[aria-expanded=true]{color:#666;text-decoration:none}.uk-navbar-subtitle{font-size:.875rem}.uk-navbar-justify .uk-navbar-item,.uk-navbar-justify .uk-navbar-left,.uk-navbar-justify .uk-navbar-nav,.uk-navbar-justify .uk-navbar-nav>li,.uk-navbar-justify .uk-navbar-right,.uk-navbar-justify .uk-navbar-toggle{flex-grow:1}.uk-navbar-dropdown{--uk-position-offset:15px;--uk-position-shift-offset:0;--uk-position-viewport-offset:15px;--uk-inverse:dark;width:200px;padding:25px;background:#fff;color:#666;box-shadow:0 5px 12px rgba(0,0,0,.15)}.uk-navbar-dropdown>:last-child{margin-bottom:0}.uk-navbar-dropdown :focus-visible{outline-color:#333!important}.uk-navbar-dropdown .uk-drop-grid{margin-left:-30px}.uk-navbar-dropdown .uk-drop-grid>*{padding-left:30px}.uk-navbar-dropdown .uk-drop-grid>.uk-grid-margin{margin-top:30px}.uk-navbar-dropdown-width-2:not(.uk-drop-stack){width:400px}.uk-navbar-dropdown-width-3:not(.uk-drop-stack){width:600px}.uk-navbar-dropdown-width-4:not(.uk-drop-stack){width:800px}.uk-navbar-dropdown-width-5:not(.uk-drop-stack){width:1000px}.uk-navbar-dropdown-large{--uk-position-shift-offset:0;padding:40px}.uk-navbar-dropdown-dropbar{width:auto;background:0 0;padding:25px 0 25px 0;--uk-position-offset:0;--uk-position-shift-offset:0;--uk-position-viewport-offset:15px;box-shadow:none}@media (min-width:640px){.uk-navbar-dropdown-dropbar{--uk-position-viewport-offset:30px}}@media (min-width:960px){.uk-navbar-dropdown-dropbar{--uk-position-viewport-offset:40px}}.uk-navbar-dropdown-dropbar-large{--uk-position-shift-offset:0;padding-top:40px;padding-bottom:40px}.uk-navbar-dropdown-nav{font-size:.875rem}.uk-navbar-dropdown-nav>li>a{color:#999}.uk-navbar-dropdown-nav>li>a:hover{color:#666}.uk-navbar-dropdown-nav>li.uk-active>a{color:#333}.uk-navbar-dropdown-nav .uk-nav-subtitle{font-size:12px}.uk-navbar-dropdown-nav .uk-nav-header{color:#333}.uk-navbar-dropdown-nav .uk-nav-divider{border-top:1px solid #e5e5e5}.uk-navbar-dropdown-nav .uk-nav-sub a{color:#999}.uk-navbar-dropdown-nav .uk-nav-sub a:hover{color:#666}.uk-navbar-dropdown-nav .uk-nav-sub li.uk-active>a{color:#333}.uk-navbar-container{transition:.1s ease-in-out;transition-property:background-color}@media (min-width:960px){.uk-navbar-left,.uk-navbar-right,[class*=uk-navbar-center]{gap:30px}.uk-navbar-center-left{right:calc(100% + 30px)}.uk-navbar-center-right{left:calc(100% + 30px)}}@media (min-width:960px){.uk-navbar-nav{gap:30px}}.uk-subnav{display:flex;flex-wrap:wrap;align-items:center;margin-left:-20px;padding:0;list-style:none}.uk-subnav>*{flex:none;padding-left:20px;position:relative}.uk-subnav>*>:first-child{display:flex;align-items:center;column-gap:.25em;color:#999;font-size:.875rem;text-transform:uppercase;transition:.1s ease-in-out;transition-property:color,background-color}.uk-subnav>*>a:hover{color:#666;text-decoration:none}.uk-subnav>.uk-active>a{color:#333}.uk-subnav-divider{margin-left:-41px}.uk-subnav-divider>*{display:flex;align-items:center}.uk-subnav-divider>::before{content:"";height:1.5em;margin-left:0;margin-right:20px;border-left:1px solid transparent}.uk-subnav-divider>:nth-child(n+2):not(.uk-first-column)::before{border-left-color:#e5e5e5}.uk-subnav-pill>*>:first-child{padding:5px 10px;background:0 0;color:#999}.uk-subnav-pill>*>a:hover{background-color:#f8f8f8;color:#666}.uk-subnav-pill>*>a:active{background-color:#f8f8f8;color:#666}.uk-subnav-pill>.uk-active>a{background-color:#1e87f0;color:#fff}.uk-subnav>.uk-disabled>a{color:#999}.uk-breadcrumb{padding:0;list-style:none}.uk-breadcrumb>*{display:contents}.uk-breadcrumb>*>*{font-size:.875rem;color:#999}.uk-breadcrumb>*>:hover{color:#666;text-decoration:none}.uk-breadcrumb>:last-child>a:not([href]),.uk-breadcrumb>:last-child>span{color:#666}.uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before{content:"/";display:inline-block;margin:0 20px 0 calc(20px - 4px);font-size:.875rem;color:#999}.uk-pagination{display:flex;flex-wrap:wrap;align-items:center;margin-left:0;padding:0;list-style:none}.uk-pagination>*{flex:none;padding-left:0;position:relative}.uk-pagination>*>*{display:flex;align-items:center;column-gap:.25em;padding:5px 10px;color:#999;transition:color .1s ease-in-out}.uk-pagination>*>:hover{color:#666;text-decoration:none}.uk-pagination>.uk-active>*{color:#666}.uk-pagination>.uk-disabled>*{color:#999}.uk-tab{display:flex;flex-wrap:wrap;margin-left:-20px;padding:0;list-style:none;position:relative}.uk-tab::before{content:"";position:absolute;bottom:0;left:20px;right:0;border-bottom:1px solid #e5e5e5}.uk-tab>*{flex:none;padding-left:20px;position:relative}.uk-tab>*>a{display:flex;align-items:center;column-gap:.25em;justify-content:center;padding:5px 10px;color:#999;border-bottom:1px solid transparent;font-size:.875rem;text-transform:uppercase;transition:color .1s ease-in-out}.uk-tab>*>a:hover{color:#666;text-decoration:none}.uk-tab>.uk-active>a{color:#333;border-color:#1e87f0}.uk-tab>.uk-disabled>a{color:#999}.uk-tab-bottom::before{top:0;bottom:auto}.uk-tab-bottom>*>a{border-top:1px solid transparent;border-bottom:none}.uk-tab-left,.uk-tab-right{flex-direction:column;margin-left:0}.uk-tab-left>*,.uk-tab-right>*{padding-left:0}.uk-tab-left::before{top:0;bottom:0;left:auto;right:0;border-left:1px solid #e5e5e5;border-bottom:none}.uk-tab-right::before{top:0;bottom:0;left:0;right:auto;border-left:1px solid #e5e5e5;border-bottom:none}.uk-tab-left>*>a{justify-content:left;border-right:1px solid transparent;border-bottom:none}.uk-tab-right>*>a{justify-content:left;border-left:1px solid transparent;border-bottom:none}.uk-tab .uk-dropdown{margin-left:30px}.uk-slidenav{padding:5px 10px;color:rgba(102,102,102,.5);transition:color .1s ease-in-out}.uk-slidenav:hover{color:rgba(102,102,102,.9)}.uk-slidenav:active{color:rgba(102,102,102,.5)}.uk-slidenav-large{padding:10px 10px}.uk-slidenav-container{display:flex}.uk-dotnav{display:flex;flex-wrap:wrap;margin:0;padding:0;list-style:none;margin-left:-12px}.uk-dotnav>*{flex:none;padding-left:12px}.uk-dotnav>*>*{display:block;box-sizing:border-box;width:10px;height:10px;border-radius:50%;background:0 0;text-indent:100%;overflow:hidden;white-space:nowrap;border:1px solid rgba(102,102,102,.4);transition:.2s ease-in-out;transition-property:background-color,border-color}.uk-dotnav>*>:hover{background-color:rgba(102,102,102,.6);border-color:transparent}.uk-dotnav>*>:active{background-color:rgba(102,102,102,.2);border-color:transparent}.uk-dotnav>.uk-active>*{background-color:rgba(102,102,102,.6);border-color:transparent}.uk-dotnav-vertical{flex-direction:column;margin-left:0;margin-top:-12px}.uk-dotnav-vertical>*{padding-left:0;padding-top:12px}.uk-dropdown{--uk-position-offset:10px;--uk-position-viewport-offset:15px;--uk-inverse:dark;width:auto;min-width:200px;padding:25px;background:#fff;color:#666;box-shadow:0 5px 12px rgba(0,0,0,.15)}.uk-dropdown>:last-child{margin-bottom:0}.uk-dropdown :focus-visible{outline-color:#333!important}.uk-dropdown-large{padding:40px}.uk-dropdown-dropbar{width:auto;background:0 0;padding:5px 0 25px 0;--uk-position-viewport-offset:15px;box-shadow:none}@media (min-width:640px){.uk-dropdown-dropbar{--uk-position-viewport-offset:30px}}@media (min-width:960px){.uk-dropdown-dropbar{--uk-position-viewport-offset:40px}}.uk-dropdown-dropbar-large{padding-top:40px;padding-bottom:40px}.uk-dropdown-nav{font-size:.875rem}.uk-dropdown-nav>li>a{color:#999}.uk-dropdown-nav>li.uk-active>a,.uk-dropdown-nav>li>a:hover{color:#666}.uk-dropdown-nav .uk-nav-subtitle{font-size:12px}.uk-dropdown-nav .uk-nav-header{color:#333}.uk-dropdown-nav .uk-nav-divider{border-top:1px solid #e5e5e5}.uk-dropdown-nav .uk-nav-sub a{color:#999}.uk-dropdown-nav .uk-nav-sub a:hover,.uk-dropdown-nav .uk-nav-sub li.uk-active>a{color:#666}.uk-lightbox{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1010;background:#000;opacity:0;transition:opacity .15s linear;touch-action:pinch-zoom}.uk-lightbox.uk-open{display:block;opacity:1}.uk-lightbox :focus-visible{outline-color:rgba(255,255,255,.7)}.uk-lightbox-page{overflow:hidden}.uk-lightbox-items>*{position:absolute;top:0;right:0;bottom:0;left:0;display:none;justify-content:center;align-items:center;color:rgba(255,255,255,.7);will-change:transform,opacity}.uk-lightbox-items>*>*{max-width:100vw;max-height:100vh}.uk-lightbox-items>*>:not(iframe){width:auto;height:auto}.uk-lightbox-items>.uk-active{display:flex}.uk-lightbox-toolbar{padding:10px 10px;background:rgba(0,0,0,.3);color:rgba(255,255,255,.7)}.uk-lightbox-toolbar>*{color:rgba(255,255,255,.7)}.uk-lightbox-toolbar-icon{padding:5px;color:rgba(255,255,255,.7)}.uk-lightbox-toolbar-icon:hover{color:#fff}.uk-lightbox-button{box-sizing:border-box;width:50px;height:50px;background:rgba(0,0,0,.3);color:rgba(255,255,255,.7);display:inline-flex;justify-content:center;align-items:center}.uk-lightbox-button:hover{color:#fff}.uk-lightbox-caption:empty{display:none}.uk-lightbox-iframe{width:80%;height:80%}[class*=uk-animation-]{animation:.5s ease-out both}.uk-animation-fade{animation-name:uk-fade;animation-duration:.8s;animation-timing-function:linear}.uk-animation-scale-up{animation-name:uk-fade,uk-scale-up}.uk-animation-scale-down{animation-name:uk-fade,uk-scale-down}.uk-animation-slide-top{animation-name:uk-fade,uk-slide-top}.uk-animation-slide-bottom{animation-name:uk-fade,uk-slide-bottom}.uk-animation-slide-left{animation-name:uk-fade,uk-slide-left}.uk-animation-slide-right{animation-name:uk-fade,uk-slide-right}.uk-animation-slide-top-small{animation-name:uk-fade,uk-slide-top-small}.uk-animation-slide-bottom-small{animation-name:uk-fade,uk-slide-bottom-small}.uk-animation-slide-left-small{animation-name:uk-fade,uk-slide-left-small}.uk-animation-slide-right-small{animation-name:uk-fade,uk-slide-right-small}.uk-animation-slide-top-medium{animation-name:uk-fade,uk-slide-top-medium}.uk-animation-slide-bottom-medium{animation-name:uk-fade,uk-slide-bottom-medium}.uk-animation-slide-left-medium{animation-name:uk-fade,uk-slide-left-medium}.uk-animation-slide-right-medium{animation-name:uk-fade,uk-slide-right-medium}.uk-animation-kenburns{animation-name:uk-kenburns;animation-duration:15s}.uk-animation-shake{animation-name:uk-shake}.uk-animation-stroke{animation-name:uk-stroke;animation-duration:2s;stroke-dasharray:var(--uk-animation-stroke)}.uk-animation-reverse{animation-direction:reverse;animation-timing-function:ease-in}.uk-animation-fast{animation-duration:.1s}.uk-animation-toggle:not(:hover):not(:focus) [class*=uk-animation-]{animation-name:none}@keyframes uk-fade{0%{opacity:0}100%{opacity:1}}@keyframes uk-scale-up{0%{transform:scale(.9)}100%{transform:scale(1)}}@keyframes uk-scale-down{0%{transform:scale(1.1)}100%{transform:scale(1)}}@keyframes uk-slide-top{0%{transform:translateY(-100%)}100%{transform:translateY(0)}}@keyframes uk-slide-bottom{0%{transform:translateY(100%)}100%{transform:translateY(0)}}@keyframes uk-slide-left{0%{transform:translateX(-100%)}100%{transform:translateX(0)}}@keyframes uk-slide-right{0%{transform:translateX(100%)}100%{transform:translateX(0)}}@keyframes uk-slide-top-small{0%{transform:translateY(-10px)}100%{transform:translateY(0)}}@keyframes uk-slide-bottom-small{0%{transform:translateY(10px)}100%{transform:translateY(0)}}@keyframes uk-slide-left-small{0%{transform:translateX(-10px)}100%{transform:translateX(0)}}@keyframes uk-slide-right-small{0%{transform:translateX(10px)}100%{transform:translateX(0)}}@keyframes uk-slide-top-medium{0%{transform:translateY(-50px)}100%{transform:translateY(0)}}@keyframes uk-slide-bottom-medium{0%{transform:translateY(50px)}100%{transform:translateY(0)}}@keyframes uk-slide-left-medium{0%{transform:translateX(-50px)}100%{transform:translateX(0)}}@keyframes uk-slide-right-medium{0%{transform:translateX(50px)}100%{transform:translateX(0)}}@keyframes uk-kenburns{0%{transform:scale(1)}100%{transform:scale(1.2)}}@keyframes uk-shake{0%,100%{transform:translateX(0)}10%{transform:translateX(-9px)}20%{transform:translateX(8px)}30%{transform:translateX(-7px)}40%{transform:translateX(6px)}50%{transform:translateX(-5px)}60%{transform:translateX(4px)}70%{transform:translateX(-3px)}80%{transform:translateX(2px)}90%{transform:translateX(-1px)}}@keyframes uk-stroke{0%{stroke-dashoffset:var(--uk-animation-stroke)}100%{stroke-dashoffset:0}}[class*=uk-child-width]>*{box-sizing:border-box;width:100%}.uk-child-width-1-2>*{width:50%}.uk-child-width-1-3>*{width:calc(100% / 3)}.uk-child-width-1-4>*{width:25%}.uk-child-width-1-5>*{width:20%}.uk-child-width-1-6>*{width:calc(100% / 6)}.uk-child-width-auto>*{width:auto}.uk-child-width-expand>:not([class*=uk-width]){flex:1;min-width:1px}@media (min-width:640px){.uk-child-width-1-1\@s>*{width:100%}.uk-child-width-1-2\@s>*{width:50%}.uk-child-width-1-3\@s>*{width:calc(100% / 3)}.uk-child-width-1-4\@s>*{width:25%}.uk-child-width-1-5\@s>*{width:20%}.uk-child-width-1-6\@s>*{width:calc(100% / 6)}.uk-child-width-auto\@s>*{width:auto}.uk-child-width-expand\@s>:not([class*=uk-width]){flex:1;min-width:1px}.uk-child-width-1-1\@s>:not([class*=uk-width]),.uk-child-width-1-2\@s>:not([class*=uk-width]),.uk-child-width-1-3\@s>:not([class*=uk-width]),.uk-child-width-1-4\@s>:not([class*=uk-width]),.uk-child-width-1-5\@s>:not([class*=uk-width]),.uk-child-width-1-6\@s>:not([class*=uk-width]),.uk-child-width-auto\@s>:not([class*=uk-width]){flex:initial}}@media (min-width:960px){.uk-child-width-1-1\@m>*{width:100%}.uk-child-width-1-2\@m>*{width:50%}.uk-child-width-1-3\@m>*{width:calc(100% / 3)}.uk-child-width-1-4\@m>*{width:25%}.uk-child-width-1-5\@m>*{width:20%}.uk-child-width-1-6\@m>*{width:calc(100% / 6)}.uk-child-width-auto\@m>*{width:auto}.uk-child-width-expand\@m>:not([class*=uk-width]){flex:1;min-width:1px}.uk-child-width-1-1\@m>:not([class*=uk-width]),.uk-child-width-1-2\@m>:not([class*=uk-width]),.uk-child-width-1-3\@m>:not([class*=uk-width]),.uk-child-width-1-4\@m>:not([class*=uk-width]),.uk-child-width-1-5\@m>:not([class*=uk-width]),.uk-child-width-1-6\@m>:not([class*=uk-width]),.uk-child-width-auto\@m>:not([class*=uk-width]){flex:initial}}@media (min-width:1200px){.uk-child-width-1-1\@l>*{width:100%}.uk-child-width-1-2\@l>*{width:50%}.uk-child-width-1-3\@l>*{width:calc(100% / 3)}.uk-child-width-1-4\@l>*{width:25%}.uk-child-width-1-5\@l>*{width:20%}.uk-child-width-1-6\@l>*{width:calc(100% / 6)}.uk-child-width-auto\@l>*{width:auto}.uk-child-width-expand\@l>:not([class*=uk-width]){flex:1;min-width:1px}.uk-child-width-1-1\@l>:not([class*=uk-width]),.uk-child-width-1-2\@l>:not([class*=uk-width]),.uk-child-width-1-3\@l>:not([class*=uk-width]),.uk-child-width-1-4\@l>:not([class*=uk-width]),.uk-child-width-1-5\@l>:not([class*=uk-width]),.uk-child-width-1-6\@l>:not([class*=uk-width]),.uk-child-width-auto\@l>:not([class*=uk-width]){flex:initial}}@media (min-width:1600px){.uk-child-width-1-1\@xl>*{width:100%}.uk-child-width-1-2\@xl>*{width:50%}.uk-child-width-1-3\@xl>*{width:calc(100% / 3)}.uk-child-width-1-4\@xl>*{width:25%}.uk-child-width-1-5\@xl>*{width:20%}.uk-child-width-1-6\@xl>*{width:calc(100% / 6)}.uk-child-width-auto\@xl>*{width:auto}.uk-child-width-expand\@xl>:not([class*=uk-width]){flex:1;min-width:1px}.uk-child-width-1-1\@xl>:not([class*=uk-width]),.uk-child-width-1-2\@xl>:not([class*=uk-width]),.uk-child-width-1-3\@xl>:not([class*=uk-width]),.uk-child-width-1-4\@xl>:not([class*=uk-width]),.uk-child-width-1-5\@xl>:not([class*=uk-width]),.uk-child-width-1-6\@xl>:not([class*=uk-width]),.uk-child-width-auto\@xl>:not([class*=uk-width]){flex:initial}}[class*=uk-width]{box-sizing:border-box;width:100%;max-width:100%}.uk-width-1-2{width:50%}.uk-width-1-3{width:calc(100% / 3)}.uk-width-2-3{width:calc(200% / 3)}.uk-width-1-4{width:25%}.uk-width-3-4{width:75%}.uk-width-1-5{width:20%}.uk-width-2-5{width:40%}.uk-width-3-5{width:60%}.uk-width-4-5{width:80%}.uk-width-1-6{width:calc(100% / 6)}.uk-width-5-6{width:calc(500% / 6)}.uk-width-small{width:150px}.uk-width-medium{width:300px}.uk-width-large{width:450px}.uk-width-xlarge{width:600px}.uk-width-2xlarge{width:750px}.uk-width-auto{width:auto}.uk-width-expand{flex:1;min-width:1px}@media (min-width:640px){.uk-width-1-1\@s{width:100%}.uk-width-1-2\@s{width:50%}.uk-width-1-3\@s{width:calc(100% / 3)}.uk-width-2-3\@s{width:calc(200% / 3)}.uk-width-1-4\@s{width:25%}.uk-width-3-4\@s{width:75%}.uk-width-1-5\@s{width:20%}.uk-width-2-5\@s{width:40%}.uk-width-3-5\@s{width:60%}.uk-width-4-5\@s{width:80%}.uk-width-1-6\@s{width:calc(100% / 6)}.uk-width-5-6\@s{width:calc(500% / 6)}.uk-width-small\@s{width:150px}.uk-width-medium\@s{width:300px}.uk-width-large\@s{width:450px}.uk-width-xlarge\@s{width:600px}.uk-width-2xlarge\@s{width:750px}.uk-width-auto\@s{width:auto}.uk-width-expand\@s{flex:1;min-width:1px}.uk-width-1-1\@s,.uk-width-1-2\@s,.uk-width-1-3\@s,.uk-width-1-4\@s,.uk-width-1-5\@s,.uk-width-1-6\@s,.uk-width-2-3\@s,.uk-width-2-5\@s,.uk-width-2xlarge\@s,.uk-width-3-4\@s,.uk-width-3-5\@s,.uk-width-4-5\@s,.uk-width-5-6\@s,.uk-width-auto\@s,.uk-width-large\@s,.uk-width-medium\@s,.uk-width-small\@s,.uk-width-xlarge\@s{flex:initial}}@media (min-width:960px){.uk-width-1-1\@m{width:100%}.uk-width-1-2\@m{width:50%}.uk-width-1-3\@m{width:calc(100% / 3)}.uk-width-2-3\@m{width:calc(200% / 3)}.uk-width-1-4\@m{width:25%}.uk-width-3-4\@m{width:75%}.uk-width-1-5\@m{width:20%}.uk-width-2-5\@m{width:40%}.uk-width-3-5\@m{width:60%}.uk-width-4-5\@m{width:80%}.uk-width-1-6\@m{width:calc(100% / 6)}.uk-width-5-6\@m{width:calc(500% / 6)}.uk-width-small\@m{width:150px}.uk-width-medium\@m{width:300px}.uk-width-large\@m{width:450px}.uk-width-xlarge\@m{width:600px}.uk-width-2xlarge\@m{width:750px}.uk-width-auto\@m{width:auto}.uk-width-expand\@m{flex:1;min-width:1px}.uk-width-1-1\@m,.uk-width-1-2\@m,.uk-width-1-3\@m,.uk-width-1-4\@m,.uk-width-1-5\@m,.uk-width-1-6\@m,.uk-width-2-3\@m,.uk-width-2-5\@m,.uk-width-2xlarge\@m,.uk-width-3-4\@m,.uk-width-3-5\@m,.uk-width-4-5\@m,.uk-width-5-6\@m,.uk-width-auto\@m,.uk-width-large\@m,.uk-width-medium\@m,.uk-width-small\@m,.uk-width-xlarge\@m{flex:initial}}@media (min-width:1200px){.uk-width-1-1\@l{width:100%}.uk-width-1-2\@l{width:50%}.uk-width-1-3\@l{width:calc(100% / 3)}.uk-width-2-3\@l{width:calc(200% / 3)}.uk-width-1-4\@l{width:25%}.uk-width-3-4\@l{width:75%}.uk-width-1-5\@l{width:20%}.uk-width-2-5\@l{width:40%}.uk-width-3-5\@l{width:60%}.uk-width-4-5\@l{width:80%}.uk-width-1-6\@l{width:calc(100% / 6)}.uk-width-5-6\@l{width:calc(500% / 6)}.uk-width-small\@l{width:150px}.uk-width-medium\@l{width:300px}.uk-width-large\@l{width:450px}.uk-width-xlarge\@l{width:600px}.uk-width-2xlarge\@l{width:750px}.uk-width-auto\@l{width:auto}.uk-width-expand\@l{flex:1;min-width:1px}.uk-width-1-1\@l,.uk-width-1-2\@l,.uk-width-1-3\@l,.uk-width-1-4\@l,.uk-width-1-5\@l,.uk-width-1-6\@l,.uk-width-2-3\@l,.uk-width-2-5\@l,.uk-width-2xlarge\@l,.uk-width-3-4\@l,.uk-width-3-5\@l,.uk-width-4-5\@l,.uk-width-5-6\@l,.uk-width-auto\@l,.uk-width-large\@l,.uk-width-medium\@l,.uk-width-small\@l,.uk-width-xlarge\@l{flex:initial}}@media (min-width:1600px){.uk-width-1-1\@xl{width:100%}.uk-width-1-2\@xl{width:50%}.uk-width-1-3\@xl{width:calc(100% / 3)}.uk-width-2-3\@xl{width:calc(200% / 3)}.uk-width-1-4\@xl{width:25%}.uk-width-3-4\@xl{width:75%}.uk-width-1-5\@xl{width:20%}.uk-width-2-5\@xl{width:40%}.uk-width-3-5\@xl{width:60%}.uk-width-4-5\@xl{width:80%}.uk-width-1-6\@xl{width:calc(100% / 6)}.uk-width-5-6\@xl{width:calc(500% / 6)}.uk-width-small\@xl{width:150px}.uk-width-medium\@xl{width:300px}.uk-width-large\@xl{width:450px}.uk-width-xlarge\@xl{width:600px}.uk-width-2xlarge\@xl{width:750px}.uk-width-auto\@xl{width:auto}.uk-width-expand\@xl{flex:1;min-width:1px}.uk-width-1-1\@xl,.uk-width-1-2\@xl,.uk-width-1-3\@xl,.uk-width-1-4\@xl,.uk-width-1-5\@xl,.uk-width-1-6\@xl,.uk-width-2-3\@xl,.uk-width-2-5\@xl,.uk-width-2xlarge\@xl,.uk-width-3-4\@xl,.uk-width-3-5\@xl,.uk-width-4-5\@xl,.uk-width-5-6\@xl,.uk-width-auto\@xl,.uk-width-large\@xl,.uk-width-medium\@xl,.uk-width-small\@xl,.uk-width-xlarge\@xl{flex:initial}}.uk-width-max-content{width:max-content}.uk-width-min-content{width:min-content}[class*=uk-height]{box-sizing:border-box}.uk-height-1-1{height:100%}.uk-height-viewport{min-height:100vh}.uk-height-viewport-2{min-height:200vh}.uk-height-viewport-3{min-height:300vh}.uk-height-viewport-4{min-height:400vh}.uk-height-small{height:150px}.uk-height-medium{height:300px}.uk-height-large{height:450px}.uk-height-max-small{max-height:150px}.uk-height-max-medium{max-height:300px}.uk-height-max-large{max-height:450px}.uk-text-lead{font-size:1.5rem;line-height:1.5;color:#333}.uk-text-meta{font-size:.875rem;line-height:1.4;color:#999}.uk-text-meta>a{color:#999}.uk-text-meta>a:hover{color:#666;text-decoration:none}.uk-text-small{font-size:.875rem;line-height:1.5}.uk-text-large{font-size:1.5rem;line-height:1.5}.uk-text-default{font-size:16px;line-height:1.5}.uk-text-light{font-weight:300}.uk-text-normal{font-weight:400}.uk-text-bold{font-weight:700}.uk-text-lighter{font-weight:lighter}.uk-text-bolder{font-weight:bolder}.uk-text-italic{font-style:italic}.uk-text-capitalize{text-transform:capitalize!important}.uk-text-uppercase{text-transform:uppercase!important}.uk-text-lowercase{text-transform:lowercase!important}.uk-text-decoration-none{text-decoration:none!important}.uk-text-muted{color:#999!important}.uk-text-emphasis{color:#333!important}.uk-text-primary{color:#1e87f0!important}.uk-text-secondary{color:#222!important}.uk-text-success{color:#32d296!important}.uk-text-warning{color:#faa05a!important}.uk-text-danger{color:#f0506e!important}.uk-text-background{-webkit-background-clip:text;color:transparent!important;display:inline-block;background-color:#1e87f0;background-image:linear-gradient(90deg,#1e87f0 0,#411ef0 100%)}.uk-text-left{text-align:left!important}.uk-text-right{text-align:right!important}.uk-text-center{text-align:center!important}.uk-text-justify{text-align:justify!important}@media (min-width:640px){.uk-text-left\@s{text-align:left!important}.uk-text-right\@s{text-align:right!important}.uk-text-center\@s{text-align:center!important}}@media (min-width:960px){.uk-text-left\@m{text-align:left!important}.uk-text-right\@m{text-align:right!important}.uk-text-center\@m{text-align:center!important}}@media (min-width:1200px){.uk-text-left\@l{text-align:left!important}.uk-text-right\@l{text-align:right!important}.uk-text-center\@l{text-align:center!important}}@media (min-width:1600px){.uk-text-left\@xl{text-align:left!important}.uk-text-right\@xl{text-align:right!important}.uk-text-center\@xl{text-align:center!important}}.uk-text-top{vertical-align:top!important}.uk-text-middle{vertical-align:middle!important}.uk-text-bottom{vertical-align:bottom!important}.uk-text-baseline{vertical-align:baseline!important}.uk-text-nowrap{white-space:nowrap}.uk-text-truncate{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}td.uk-text-truncate,th.uk-text-truncate{max-width:0}.uk-text-break{overflow-wrap:break-word}td.uk-text-break,th.uk-text-break{word-break:break-word}[class*=uk-column-]{column-gap:30px}@media (min-width:1200px){[class*=uk-column-]{column-gap:40px}}[class*=uk-column-] img{transform:translate3d(0,0,0)}.uk-column-divider{column-rule:1px solid #e5e5e5;column-gap:60px}@media (min-width:1200px){.uk-column-divider{column-gap:80px}}.uk-column-1-2{column-count:2}.uk-column-1-3{column-count:3}.uk-column-1-4{column-count:4}.uk-column-1-5{column-count:5}.uk-column-1-6{column-count:6}@media (min-width:640px){.uk-column-1-2\@s{column-count:2}.uk-column-1-3\@s{column-count:3}.uk-column-1-4\@s{column-count:4}.uk-column-1-5\@s{column-count:5}.uk-column-1-6\@s{column-count:6}}@media (min-width:960px){.uk-column-1-2\@m{column-count:2}.uk-column-1-3\@m{column-count:3}.uk-column-1-4\@m{column-count:4}.uk-column-1-5\@m{column-count:5}.uk-column-1-6\@m{column-count:6}}@media (min-width:1200px){.uk-column-1-2\@l{column-count:2}.uk-column-1-3\@l{column-count:3}.uk-column-1-4\@l{column-count:4}.uk-column-1-5\@l{column-count:5}.uk-column-1-6\@l{column-count:6}}@media (min-width:1600px){.uk-column-1-2\@xl{column-count:2}.uk-column-1-3\@xl{column-count:3}.uk-column-1-4\@xl{column-count:4}.uk-column-1-5\@xl{column-count:5}.uk-column-1-6\@xl{column-count:6}}.uk-column-span{column-span:all}[data-uk-cover]:where(canvas,iframe,svg),[uk-cover]:where(canvas,iframe,svg){max-width:none;position:absolute;left:50%;top:50%;--uk-position-translate-x:-50%;--uk-position-translate-y:-50%;transform:translate(var(--uk-position-translate-x),var(--uk-position-translate-y))}iframe[data-uk-cover],iframe[uk-cover]{pointer-events:none}[data-uk-cover]:where(img,video),[uk-cover]:where(img,video){position:absolute;top:0;left:0;width:100%;height:100%;box-sizing:border-box;object-fit:cover;object-position:center}.uk-cover-container{overflow:hidden;position:relative}.uk-background-default{background-color:#fff}.uk-background-muted{background-color:#f8f8f8}.uk-background-primary{background-color:#1e87f0}.uk-background-secondary{background-color:#222}.uk-background-contain,.uk-background-cover,.uk-background-height-1-1,.uk-background-width-1-1{background-position:50% 50%;background-repeat:no-repeat}.uk-background-cover{background-size:cover}.uk-background-contain{background-size:contain}.uk-background-width-1-1{background-size:100%}.uk-background-height-1-1{background-size:auto 100%}.uk-background-top-left{background-position:0 0}.uk-background-top-center{background-position:50% 0}.uk-background-top-right{background-position:100% 0}.uk-background-center-left{background-position:0 50%}.uk-background-center-center{background-position:50% 50%}.uk-background-center-right{background-position:100% 50%}.uk-background-bottom-left{background-position:0 100%}.uk-background-bottom-center{background-position:50% 100%}.uk-background-bottom-right{background-position:100% 100%}.uk-background-norepeat{background-repeat:no-repeat}.uk-background-fixed{background-attachment:fixed;backface-visibility:hidden}@media (pointer:coarse){.uk-background-fixed{background-attachment:scroll}}@media (max-width:639px){.uk-background-image\@s{background-image:none!important}}@media (max-width:959px){.uk-background-image\@m{background-image:none!important}}@media (max-width:1199px){.uk-background-image\@l{background-image:none!important}}@media (max-width:1599px){.uk-background-image\@xl{background-image:none!important}}.uk-background-blend-multiply{background-blend-mode:multiply}.uk-background-blend-screen{background-blend-mode:screen}.uk-background-blend-overlay{background-blend-mode:overlay}.uk-background-blend-darken{background-blend-mode:darken}.uk-background-blend-lighten{background-blend-mode:lighten}.uk-background-blend-color-dodge{background-blend-mode:color-dodge}.uk-background-blend-color-burn{background-blend-mode:color-burn}.uk-background-blend-hard-light{background-blend-mode:hard-light}.uk-background-blend-soft-light{background-blend-mode:soft-light}.uk-background-blend-difference{background-blend-mode:difference}.uk-background-blend-exclusion{background-blend-mode:exclusion}.uk-background-blend-hue{background-blend-mode:hue}.uk-background-blend-saturation{background-blend-mode:saturation}.uk-background-blend-color{background-blend-mode:color}.uk-background-blend-luminosity{background-blend-mode:luminosity}[class*=uk-align]{display:block;margin-bottom:30px}*+[class*=uk-align]{margin-top:30px}.uk-align-center{margin-left:auto;margin-right:auto}.uk-align-left{margin-top:0;margin-right:30px;float:left}.uk-align-right{margin-top:0;margin-left:30px;float:right}@media (min-width:640px){.uk-align-left\@s{margin-top:0;margin-right:30px;float:left}.uk-align-right\@s{margin-top:0;margin-left:30px;float:right}}@media (min-width:960px){.uk-align-left\@m{margin-top:0;margin-right:30px;float:left}.uk-align-right\@m{margin-top:0;margin-left:30px;float:right}}@media (min-width:1200px){.uk-align-left\@l{margin-top:0;float:left}.uk-align-right\@l{margin-top:0;float:right}.uk-align-left,.uk-align-left\@l,.uk-align-left\@m,.uk-align-left\@s{margin-right:40px}.uk-align-right,.uk-align-right\@l,.uk-align-right\@m,.uk-align-right\@s{margin-left:40px}}@media (min-width:1600px){.uk-align-left\@xl{margin-top:0;margin-right:40px;float:left}.uk-align-right\@xl{margin-top:0;margin-left:40px;float:right}}.uk-svg,.uk-svg:not(.uk-preserve) [fill*="#"]:not(.uk-preserve){fill:currentcolor}.uk-svg:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve){stroke:currentcolor}.uk-svg{transform:translate(0,0)}.uk-panel{display:flow-root;position:relative;box-sizing:border-box}.uk-panel>:last-child{margin-bottom:0}.uk-panel-scrollable{height:170px;padding:10px;border:1px solid #e5e5e5;overflow:auto;resize:both}.uk-clearfix::before{content:"";display:table-cell}.uk-clearfix::after{content:"";display:table;clear:both}.uk-float-left{float:left}.uk-float-right{float:right}[class*=uk-float-]{max-width:100%}.uk-overflow-hidden{overflow:hidden}.uk-overflow-auto{overflow:auto}.uk-overflow-auto>:last-child{margin-bottom:0}.uk-box-sizing-content{box-sizing:content-box}.uk-box-sizing-border{box-sizing:border-box}.uk-resize{resize:both}.uk-resize-horizontal{resize:horizontal}.uk-resize-vertical{resize:vertical}.uk-display-block{display:block!important}.uk-display-inline{display:inline!important}.uk-display-inline-block{display:inline-block!important}[class*=uk-inline]{display:inline-block;position:relative;max-width:100%;vertical-align:middle;-webkit-backface-visibility:hidden}.uk-inline-clip{overflow:hidden}.uk-preserve-width,.uk-preserve-width canvas,.uk-preserve-width img,.uk-preserve-width svg,.uk-preserve-width video{max-width:none}.uk-responsive-height,.uk-responsive-width{box-sizing:border-box}.uk-responsive-width{max-width:100%!important;height:auto}.uk-responsive-height{max-height:100%;width:auto;max-width:none}[data-uk-responsive],[uk-responsive]{max-width:100%}.uk-object-cover{object-fit:cover}.uk-object-contain{object-fit:contain}.uk-object-fill{object-fit:fill}.uk-object-none{object-fit:none}.uk-object-scale-down{object-fit:scale-down}.uk-object-top-left{object-position:0 0}.uk-object-top-center{object-position:50% 0}.uk-object-top-right{object-position:100% 0}.uk-object-center-left{object-position:0 50%}.uk-object-center-center{object-position:50% 50%}.uk-object-center-right{object-position:100% 50%}.uk-object-bottom-left{object-position:0 100%}.uk-object-bottom-center{object-position:50% 100%}.uk-object-bottom-right{object-position:100% 100%}.uk-border-circle{border-radius:50%}.uk-border-pill{border-radius:500px}.uk-border-rounded{border-radius:5px}.uk-inline-clip[class*=uk-border-]{-webkit-transform:translateZ(0)}.uk-box-shadow-small{box-shadow:0 2px 8px rgba(0,0,0,.08)}.uk-box-shadow-medium{box-shadow:0 5px 15px rgba(0,0,0,.08)}.uk-box-shadow-large{box-shadow:0 14px 25px rgba(0,0,0,.16)}.uk-box-shadow-xlarge{box-shadow:0 28px 50px rgba(0,0,0,.16)}[class*=uk-box-shadow-hover]{transition:box-shadow .1s ease-in-out}.uk-box-shadow-hover-small:hover{box-shadow:0 2px 8px rgba(0,0,0,.08)}.uk-box-shadow-hover-medium:hover{box-shadow:0 5px 15px rgba(0,0,0,.08)}.uk-box-shadow-hover-large:hover{box-shadow:0 14px 25px rgba(0,0,0,.16)}.uk-box-shadow-hover-xlarge:hover{box-shadow:0 28px 50px rgba(0,0,0,.16)}@supports (filter:blur(0)){.uk-box-shadow-bottom{display:inline-block;position:relative;z-index:0;max-width:100%;vertical-align:middle}.uk-box-shadow-bottom::after{content:"";position:absolute;bottom:-30px;left:0;right:0;z-index:-1;height:30px;border-radius:100%;background:#444;filter:blur(20px);will-change:filter}}.uk-dropcap::first-letter,.uk-dropcap>p:first-of-type::first-letter{display:block;margin-right:10px;float:left;font-size:4.5em;line-height:1;margin-bottom:-2px}@-moz-document url-prefix(){.uk-dropcap::first-letter,.uk-dropcap>p:first-of-type::first-letter{margin-top:1.1%}}.uk-logo{font-size:1.5rem;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";color:#333;text-decoration:none}:where(.uk-logo){display:inline-block;vertical-align:middle}.uk-logo:hover{color:#333;text-decoration:none}.uk-logo :where(img,svg,video){display:block}.uk-logo-inverse{display:none}.uk-disabled{pointer-events:none}.uk-drag,.uk-drag *{cursor:move}.uk-drag iframe{pointer-events:none}.uk-dragover{box-shadow:0 0 20px rgba(100,100,100,.3)}.uk-blend-multiply{mix-blend-mode:multiply}.uk-blend-screen{mix-blend-mode:screen}.uk-blend-overlay{mix-blend-mode:overlay}.uk-blend-darken{mix-blend-mode:darken}.uk-blend-lighten{mix-blend-mode:lighten}.uk-blend-color-dodge{mix-blend-mode:color-dodge}.uk-blend-color-burn{mix-blend-mode:color-burn}.uk-blend-hard-light{mix-blend-mode:hard-light}.uk-blend-soft-light{mix-blend-mode:soft-light}.uk-blend-difference{mix-blend-mode:difference}.uk-blend-exclusion{mix-blend-mode:exclusion}.uk-blend-hue{mix-blend-mode:hue}.uk-blend-saturation{mix-blend-mode:saturation}.uk-blend-color{mix-blend-mode:color}.uk-blend-luminosity{mix-blend-mode:luminosity}.uk-transform-center{transform:translate(-50%,-50%)}.uk-transform-origin-top-left{transform-origin:0 0}.uk-transform-origin-top-center{transform-origin:50% 0}.uk-transform-origin-top-right{transform-origin:100% 0}.uk-transform-origin-center-left{transform-origin:0 50%}.uk-transform-origin-center-right{transform-origin:100% 50%}.uk-transform-origin-bottom-left{transform-origin:0 100%}.uk-transform-origin-bottom-center{transform-origin:50% 100%}.uk-transform-origin-bottom-right{transform-origin:100% 100%}.uk-flex{display:flex}.uk-flex-inline{display:inline-flex}.uk-flex-left{justify-content:flex-start}.uk-flex-center{justify-content:center}.uk-flex-right{justify-content:flex-end}.uk-flex-between{justify-content:space-between}.uk-flex-around{justify-content:space-around}@media (min-width:640px){.uk-flex-left\@s{justify-content:flex-start}.uk-flex-center\@s{justify-content:center}.uk-flex-right\@s{justify-content:flex-end}.uk-flex-between\@s{justify-content:space-between}.uk-flex-around\@s{justify-content:space-around}}@media (min-width:960px){.uk-flex-left\@m{justify-content:flex-start}.uk-flex-center\@m{justify-content:center}.uk-flex-right\@m{justify-content:flex-end}.uk-flex-between\@m{justify-content:space-between}.uk-flex-around\@m{justify-content:space-around}}@media (min-width:1200px){.uk-flex-left\@l{justify-content:flex-start}.uk-flex-center\@l{justify-content:center}.uk-flex-right\@l{justify-content:flex-end}.uk-flex-between\@l{justify-content:space-between}.uk-flex-around\@l{justify-content:space-around}}@media (min-width:1600px){.uk-flex-left\@xl{justify-content:flex-start}.uk-flex-center\@xl{justify-content:center}.uk-flex-right\@xl{justify-content:flex-end}.uk-flex-between\@xl{justify-content:space-between}.uk-flex-around\@xl{justify-content:space-around}}.uk-flex-stretch{align-items:stretch}.uk-flex-top{align-items:flex-start}.uk-flex-middle{align-items:center}.uk-flex-bottom{align-items:flex-end}@media (min-width:640px){.uk-flex-stretch\@s{align-items:stretch}.uk-flex-top\@s{align-items:flex-start}.uk-flex-middle\@s{align-items:center}.uk-flex-bottom\@s{align-items:flex-end}}@media (min-width:960px){.uk-flex-stretch\@m{align-items:stretch}.uk-flex-top\@m{align-items:flex-start}.uk-flex-middle\@m{align-items:center}.uk-flex-bottom\@m{align-items:flex-end}}@media (min-width:1200px){.uk-flex-stretch\@l{align-items:stretch}.uk-flex-top\@l{align-items:flex-start}.uk-flex-middle\@l{align-items:center}.uk-flex-bottom\@l{align-items:flex-end}}@media (min-width:1600px){.uk-flex-stretch\@xl{align-items:stretch}.uk-flex-top\@xl{align-items:flex-start}.uk-flex-middle\@xl{align-items:center}.uk-flex-bottom\@xl{align-items:flex-end}}.uk-flex-row{flex-direction:row}.uk-flex-row-reverse{flex-direction:row-reverse}.uk-flex-column{flex-direction:column}.uk-flex-column-reverse{flex-direction:column-reverse}@media (min-width:640px){.uk-flex-row\@s{flex-direction:row}.uk-flex-column\@s{flex-direction:column}}@media (min-width:960px){.uk-flex-row\@m{flex-direction:row}.uk-flex-column\@m{flex-direction:column}}@media (min-width:1200px){.uk-flex-row\@l{flex-direction:row}.uk-flex-column\@l{flex-direction:column}}@media (min-width:1600px){.uk-flex-row\@xl{flex-direction:row}.uk-flex-column\@xl{flex-direction:column}}.uk-flex-nowrap{flex-wrap:nowrap}.uk-flex-wrap{flex-wrap:wrap}.uk-flex-wrap-reverse{flex-wrap:wrap-reverse}.uk-flex-wrap-stretch{align-content:stretch}.uk-flex-wrap-top{align-content:flex-start}.uk-flex-wrap-middle{align-content:center}.uk-flex-wrap-bottom{align-content:flex-end}.uk-flex-wrap-between{align-content:space-between}.uk-flex-wrap-around{align-content:space-around}.uk-flex-first{order:-1}.uk-flex-last{order:99}@media (min-width:640px){.uk-flex-first\@s{order:-1}.uk-flex-last\@s{order:99}}@media (min-width:960px){.uk-flex-first\@m{order:-1}.uk-flex-last\@m{order:99}}@media (min-width:1200px){.uk-flex-first\@l{order:-1}.uk-flex-last\@l{order:99}}@media (min-width:1600px){.uk-flex-first\@xl{order:-1}.uk-flex-last\@xl{order:99}}.uk-flex-initial{flex:initial}.uk-flex-none{flex:none}.uk-flex-auto{flex:auto}.uk-flex-1{flex:1}@media (min-width:640px){.uk-flex-initial\@s{flex:initial}.uk-flex-none\@s{flex:none}.uk-flex-1\@s{flex:1}}@media (min-width:960px){.uk-flex-initial\@m{flex:initial}.uk-flex-none\@m{flex:none}.uk-flex-1\@m{flex:1}}@media (min-width:1200px){.uk-flex-initial\@l{flex:initial}.uk-flex-none\@l{flex:none}.uk-flex-1\@l{flex:1}}@media (min-width:1600px){.uk-flex-initial\@xl{flex:initial}.uk-flex-none\@xl{flex:none}.uk-flex-1\@xl{flex:1}}.uk-margin{margin-bottom:20px}*+.uk-margin{margin-top:20px!important}.uk-margin-top{margin-top:20px!important}.uk-margin-bottom{margin-bottom:20px!important}.uk-margin-left{margin-left:20px!important}.uk-margin-right{margin-right:20px!important}.uk-margin-small{margin-bottom:10px}*+.uk-margin-small{margin-top:10px!important}.uk-margin-small-top{margin-top:10px!important}.uk-margin-small-bottom{margin-bottom:10px!important}.uk-margin-small-left{margin-left:10px!important}.uk-margin-small-right{margin-right:10px!important}.uk-margin-medium{margin-bottom:40px}*+.uk-margin-medium{margin-top:40px!important}.uk-margin-medium-top{margin-top:40px!important}.uk-margin-medium-bottom{margin-bottom:40px!important}.uk-margin-medium-left{margin-left:40px!important}.uk-margin-medium-right{margin-right:40px!important}.uk-margin-large{margin-bottom:40px}*+.uk-margin-large{margin-top:40px!important}.uk-margin-large-top{margin-top:40px!important}.uk-margin-large-bottom{margin-bottom:40px!important}.uk-margin-large-left{margin-left:40px!important}.uk-margin-large-right{margin-right:40px!important}@media (min-width:1200px){.uk-margin-large{margin-bottom:70px}*+.uk-margin-large{margin-top:70px!important}.uk-margin-large-top{margin-top:70px!important}.uk-margin-large-bottom{margin-bottom:70px!important}.uk-margin-large-left{margin-left:70px!important}.uk-margin-large-right{margin-right:70px!important}}.uk-margin-xlarge{margin-bottom:70px}*+.uk-margin-xlarge{margin-top:70px!important}.uk-margin-xlarge-top{margin-top:70px!important}.uk-margin-xlarge-bottom{margin-bottom:70px!important}.uk-margin-xlarge-left{margin-left:70px!important}.uk-margin-xlarge-right{margin-right:70px!important}@media (min-width:1200px){.uk-margin-xlarge{margin-bottom:140px}*+.uk-margin-xlarge{margin-top:140px!important}.uk-margin-xlarge-top{margin-top:140px!important}.uk-margin-xlarge-bottom{margin-bottom:140px!important}.uk-margin-xlarge-left{margin-left:140px!important}.uk-margin-xlarge-right{margin-right:140px!important}}.uk-margin-auto{margin-left:auto!important;margin-right:auto!important}.uk-margin-auto-top{margin-top:auto!important}.uk-margin-auto-bottom{margin-bottom:auto!important}.uk-margin-auto-left{margin-left:auto!important}.uk-margin-auto-right{margin-right:auto!important}.uk-margin-auto-vertical{margin-top:auto!important;margin-bottom:auto!important}@media (min-width:640px){.uk-margin-auto\@s{margin-left:auto!important;margin-right:auto!important}.uk-margin-auto-left\@s{margin-left:auto!important}.uk-margin-auto-right\@s{margin-right:auto!important}}@media (min-width:960px){.uk-margin-auto\@m{margin-left:auto!important;margin-right:auto!important}.uk-margin-auto-left\@m{margin-left:auto!important}.uk-margin-auto-right\@m{margin-right:auto!important}}@media (min-width:1200px){.uk-margin-auto\@l{margin-left:auto!important;margin-right:auto!important}.uk-margin-auto-left\@l{margin-left:auto!important}.uk-margin-auto-right\@l{margin-right:auto!important}}@media (min-width:1600px){.uk-margin-auto\@xl{margin-left:auto!important;margin-right:auto!important}.uk-margin-auto-left\@xl{margin-left:auto!important}.uk-margin-auto-right\@xl{margin-right:auto!important}}.uk-margin-remove{margin:0!important}.uk-margin-remove-top{margin-top:0!important}.uk-margin-remove-bottom{margin-bottom:0!important}.uk-margin-remove-left{margin-left:0!important}.uk-margin-remove-right{margin-right:0!important}.uk-margin-remove-vertical{margin-top:0!important;margin-bottom:0!important}.uk-margin-remove-adjacent+*,.uk-margin-remove-first-child>:first-child{margin-top:0!important}.uk-margin-remove-last-child>:last-child{margin-bottom:0!important}@media (min-width:640px){.uk-margin-remove-left\@s{margin-left:0!important}.uk-margin-remove-right\@s{margin-right:0!important}}@media (min-width:960px){.uk-margin-remove-left\@m{margin-left:0!important}.uk-margin-remove-right\@m{margin-right:0!important}}@media (min-width:1200px){.uk-margin-remove-left\@l{margin-left:0!important}.uk-margin-remove-right\@l{margin-right:0!important}}@media (min-width:1600px){.uk-margin-remove-left\@xl{margin-left:0!important}.uk-margin-remove-right\@xl{margin-right:0!important}}.uk-padding{padding:30px}@media (min-width:1200px){.uk-padding{padding:40px}}.uk-padding-small{padding:15px}.uk-padding-large{padding:40px}@media (min-width:1200px){.uk-padding-large{padding:70px}}.uk-padding-remove{padding:0!important}.uk-padding-remove-top{padding-top:0!important}.uk-padding-remove-bottom{padding-bottom:0!important}.uk-padding-remove-left{padding-left:0!important}.uk-padding-remove-right{padding-right:0!important}.uk-padding-remove-vertical{padding-top:0!important;padding-bottom:0!important}.uk-padding-remove-horizontal{padding-left:0!important;padding-right:0!important}:root{--uk-position-margin-offset:0px}[class*=uk-position-bottom],[class*=uk-position-center],[class*=uk-position-left],[class*=uk-position-right],[class*=uk-position-top]{position:absolute!important;max-width:calc(100% - (var(--uk-position-margin-offset) * 2));box-sizing:border-box}.uk-position-top{top:0;left:0;right:0}.uk-position-bottom{bottom:0;left:0;right:0}.uk-position-left{top:0;bottom:0;left:0}.uk-position-right{top:0;bottom:0;right:0}.uk-position-top-left{top:0;left:0}.uk-position-top-right{top:0;right:0}.uk-position-bottom-left{bottom:0;left:0}.uk-position-bottom-right{bottom:0;right:0}.uk-position-center{top:calc(50% - var(--uk-position-margin-offset));left:calc(50% - var(--uk-position-margin-offset));--uk-position-translate-x:-50%;--uk-position-translate-y:-50%;transform:translate(var(--uk-position-translate-x),var(--uk-position-translate-y));width:max-content}.uk-position-center-vertical,[class*=uk-position-center-left],[class*=uk-position-center-right]{top:calc(50% - var(--uk-position-margin-offset));--uk-position-translate-y:-50%;transform:translate(0,var(--uk-position-translate-y))}.uk-position-center-left{left:0}.uk-position-center-right{right:0}.uk-position-center-vertical{left:0;right:0}.uk-position-center-left-out{right:100%;width:max-content}.uk-position-center-right-out{left:100%;width:max-content}.uk-position-bottom-center,.uk-position-center-horizontal,.uk-position-top-center{left:calc(50% - var(--uk-position-margin-offset));--uk-position-translate-x:-50%;transform:translate(var(--uk-position-translate-x),0);width:max-content}.uk-position-top-center{top:0}.uk-position-bottom-center{bottom:0}.uk-position-center-horizontal{top:0;bottom:0}.uk-position-cover{position:absolute;top:0;bottom:0;left:0;right:0}.uk-position-small{margin:15px;--uk-position-margin-offset:15px}.uk-position-medium{margin:30px;--uk-position-margin-offset:30px}.uk-position-large{margin:30px;--uk-position-margin-offset:30px}@media (min-width:1200px){.uk-position-large{margin:50px;--uk-position-margin-offset:50px}}.uk-position-relative{position:relative!important}.uk-position-absolute{position:absolute!important}.uk-position-fixed{position:fixed!important}.uk-position-sticky{position:sticky!important}.uk-position-z-index{z-index:1}.uk-position-z-index-zero{z-index:0}.uk-position-z-index-negative{z-index:-1}.uk-position-z-index-high{z-index:990}:where(.uk-transition-fade),:where([class*=uk-transition-scale]),:where([class*=uk-transition-slide]){--uk-position-translate-x:0;--uk-position-translate-y:0}.uk-transition-fade,[class*=uk-transition-scale],[class*=uk-transition-slide]{--uk-translate-x:0;--uk-translate-y:0;--uk-scale-x:1;--uk-scale-y:1;transform:translate(var(--uk-position-translate-x),var(--uk-position-translate-y)) translate(var(--uk-translate-x),var(--uk-translate-y)) scale(var(--uk-scale-x),var(--uk-scale-y));transition:.3s ease-out;transition-property:opacity,transform,filter;opacity:0}.uk-transition-active.uk-active .uk-transition-fade,.uk-transition-toggle .uk-transition-fade:focus-within,.uk-transition-toggle:focus .uk-transition-fade,.uk-transition-toggle:hover .uk-transition-fade{opacity:1}[class*=uk-transition-scale]{-webkit-backface-visibility:hidden}.uk-transition-scale-up{--uk-scale-x:1;--uk-scale-y:1}.uk-transition-scale-down{--uk-scale-x:1.03;--uk-scale-y:1.03}.uk-transition-active.uk-active .uk-transition-scale-up,.uk-transition-toggle .uk-transition-scale-up:focus-within,.uk-transition-toggle:focus .uk-transition-scale-up,.uk-transition-toggle:hover .uk-transition-scale-up{--uk-scale-x:1.03;--uk-scale-y:1.03;opacity:1}.uk-transition-active.uk-active .uk-transition-scale-down,.uk-transition-toggle .uk-transition-scale-down:focus-within,.uk-transition-toggle:focus .uk-transition-scale-down,.uk-transition-toggle:hover .uk-transition-scale-down{--uk-scale-x:1;--uk-scale-y:1;opacity:1}.uk-transition-slide-top{--uk-translate-y:-100%}.uk-transition-slide-bottom{--uk-translate-y:100%}.uk-transition-slide-left{--uk-translate-x:-100%}.uk-transition-slide-right{--uk-translate-x:100%}.uk-transition-slide-top-small{--uk-translate-y:calc(-1 * 10px)}.uk-transition-slide-bottom-small{--uk-translate-y:10px}.uk-transition-slide-left-small{--uk-translate-x:calc(-1 * 10px)}.uk-transition-slide-right-small{--uk-translate-x:10px}.uk-transition-slide-top-medium{--uk-translate-y:calc(-1 * 50px)}.uk-transition-slide-bottom-medium{--uk-translate-y:50px}.uk-transition-slide-left-medium{--uk-translate-x:calc(-1 * 50px)}.uk-transition-slide-right-medium{--uk-translate-x:50px}.uk-transition-active.uk-active [class*=uk-transition-slide],.uk-transition-toggle [class*=uk-transition-slide]:focus-within,.uk-transition-toggle:focus [class*=uk-transition-slide],.uk-transition-toggle:hover [class*=uk-transition-slide]{--uk-translate-x:0;--uk-translate-y:0;opacity:1}.uk-transition-opaque{opacity:1}.uk-transition-slow{transition-duration:.7s}.uk-transition-disable,.uk-transition-disable *{transition:none!important}.uk-hidden,[hidden]{display:none!important}@media (min-width:640px){.uk-hidden\@s{display:none!important}}@media (min-width:960px){.uk-hidden\@m{display:none!important}}@media (min-width:1200px){.uk-hidden\@l{display:none!important}}@media (min-width:1600px){.uk-hidden\@xl{display:none!important}}@media (max-width:639px){.uk-visible\@s{display:none!important}}@media (max-width:959px){.uk-visible\@m{display:none!important}}@media (max-width:1199px){.uk-visible\@l{display:none!important}}@media (max-width:1599px){.uk-visible\@xl{display:none!important}}.uk-invisible{visibility:hidden!important}.uk-hidden-visually:not(:focus):not(:active):not(:focus-within),.uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-within){position:absolute!important;width:0!important;height:0!important;padding:0!important;border:0!important;margin:0!important;overflow:hidden!important}.uk-visible-toggle:not(:hover):not(:focus) .uk-invisible-hover:not(:focus-within){opacity:0!important}@media (hover:none){.uk-hidden-touch{display:none!important}}@media (hover){.uk-hidden-notouch{display:none!important}}.uk-card-primary.uk-card-body,.uk-card-primary>:not([class*=uk-card-media]),.uk-card-secondary.uk-card-body,.uk-card-secondary>:not([class*=uk-card-media]),.uk-light,.uk-offcanvas-bar,.uk-overlay-primary,.uk-section-primary:not(.uk-preserve-color),.uk-section-secondary:not(.uk-preserve-color),.uk-tile-primary:not(.uk-preserve-color),.uk-tile-secondary:not(.uk-preserve-color){color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-link,.uk-card-primary.uk-card-body a,.uk-card-primary>:not([class*=uk-card-media]) .uk-link,.uk-card-primary>:not([class*=uk-card-media]) a,.uk-card-secondary.uk-card-body .uk-link,.uk-card-secondary.uk-card-body a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-link,.uk-card-secondary>:not([class*=uk-card-media]) a,.uk-light .uk-link,.uk-light a,.uk-offcanvas-bar .uk-link,.uk-offcanvas-bar a,.uk-overlay-primary .uk-link,.uk-overlay-primary a,.uk-section-primary:not(.uk-preserve-color) .uk-link,.uk-section-primary:not(.uk-preserve-color) a,.uk-section-secondary:not(.uk-preserve-color) .uk-link,.uk-section-secondary:not(.uk-preserve-color) a,.uk-tile-primary:not(.uk-preserve-color) .uk-link,.uk-tile-primary:not(.uk-preserve-color) a,.uk-tile-secondary:not(.uk-preserve-color) .uk-link,.uk-tile-secondary:not(.uk-preserve-color) a{color:#fff}.uk-card-primary.uk-card-body .uk-link-toggle:hover .uk-link,.uk-card-primary.uk-card-body .uk-link:hover,.uk-card-primary.uk-card-body a:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-link-toggle:hover .uk-link,.uk-card-primary>:not([class*=uk-card-media]) .uk-link:hover,.uk-card-primary>:not([class*=uk-card-media]) a:hover,.uk-card-secondary.uk-card-body .uk-link-toggle:hover .uk-link,.uk-card-secondary.uk-card-body .uk-link:hover,.uk-card-secondary.uk-card-body a:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-link-toggle:hover .uk-link,.uk-card-secondary>:not([class*=uk-card-media]) .uk-link:hover,.uk-card-secondary>:not([class*=uk-card-media]) a:hover,.uk-light .uk-link-toggle:hover .uk-link,.uk-light .uk-link:hover,.uk-light a:hover,.uk-offcanvas-bar .uk-link-toggle:hover .uk-link,.uk-offcanvas-bar .uk-link:hover,.uk-offcanvas-bar a:hover,.uk-overlay-primary .uk-link-toggle:hover .uk-link,.uk-overlay-primary .uk-link:hover,.uk-overlay-primary a:hover,.uk-section-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link,.uk-section-primary:not(.uk-preserve-color) .uk-link:hover,.uk-section-primary:not(.uk-preserve-color) a:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link,.uk-section-secondary:not(.uk-preserve-color) .uk-link:hover,.uk-section-secondary:not(.uk-preserve-color) a:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link,.uk-tile-primary:not(.uk-preserve-color) .uk-link:hover,.uk-tile-primary:not(.uk-preserve-color) a:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link,.uk-tile-secondary:not(.uk-preserve-color) .uk-link:hover,.uk-tile-secondary:not(.uk-preserve-color) a:hover{color:#fff}.uk-card-primary.uk-card-body :not(pre)>code,.uk-card-primary.uk-card-body :not(pre)>kbd,.uk-card-primary.uk-card-body :not(pre)>samp,.uk-card-primary>:not([class*=uk-card-media]) :not(pre)>code,.uk-card-primary>:not([class*=uk-card-media]) :not(pre)>kbd,.uk-card-primary>:not([class*=uk-card-media]) :not(pre)>samp,.uk-card-secondary.uk-card-body :not(pre)>code,.uk-card-secondary.uk-card-body :not(pre)>kbd,.uk-card-secondary.uk-card-body :not(pre)>samp,.uk-card-secondary>:not([class*=uk-card-media]) :not(pre)>code,.uk-card-secondary>:not([class*=uk-card-media]) :not(pre)>kbd,.uk-card-secondary>:not([class*=uk-card-media]) :not(pre)>samp,.uk-light :not(pre)>code,.uk-light :not(pre)>kbd,.uk-light :not(pre)>samp,.uk-offcanvas-bar :not(pre)>code,.uk-offcanvas-bar :not(pre)>kbd,.uk-offcanvas-bar :not(pre)>samp,.uk-overlay-primary :not(pre)>code,.uk-overlay-primary :not(pre)>kbd,.uk-overlay-primary :not(pre)>samp,.uk-section-primary:not(.uk-preserve-color) :not(pre)>code,.uk-section-primary:not(.uk-preserve-color) :not(pre)>kbd,.uk-section-primary:not(.uk-preserve-color) :not(pre)>samp,.uk-section-secondary:not(.uk-preserve-color) :not(pre)>code,.uk-section-secondary:not(.uk-preserve-color) :not(pre)>kbd,.uk-section-secondary:not(.uk-preserve-color) :not(pre)>samp,.uk-tile-primary:not(.uk-preserve-color) :not(pre)>code,.uk-tile-primary:not(.uk-preserve-color) :not(pre)>kbd,.uk-tile-primary:not(.uk-preserve-color) :not(pre)>samp,.uk-tile-secondary:not(.uk-preserve-color) :not(pre)>code,.uk-tile-secondary:not(.uk-preserve-color) :not(pre)>kbd,.uk-tile-secondary:not(.uk-preserve-color) :not(pre)>samp{color:rgba(255,255,255,.7);background-color:rgba(255,255,255,.1)}.uk-card-primary.uk-card-body em,.uk-card-primary>:not([class*=uk-card-media]) em,.uk-card-secondary.uk-card-body em,.uk-card-secondary>:not([class*=uk-card-media]) em,.uk-light em,.uk-offcanvas-bar em,.uk-overlay-primary em,.uk-section-primary:not(.uk-preserve-color) em,.uk-section-secondary:not(.uk-preserve-color) em,.uk-tile-primary:not(.uk-preserve-color) em,.uk-tile-secondary:not(.uk-preserve-color) em{color:#fff}.uk-card-primary.uk-card-body .uk-h1,.uk-card-primary.uk-card-body .uk-h2,.uk-card-primary.uk-card-body .uk-h3,.uk-card-primary.uk-card-body .uk-h4,.uk-card-primary.uk-card-body .uk-h5,.uk-card-primary.uk-card-body .uk-h6,.uk-card-primary.uk-card-body .uk-heading-2xlarge,.uk-card-primary.uk-card-body .uk-heading-3xlarge,.uk-card-primary.uk-card-body .uk-heading-large,.uk-card-primary.uk-card-body .uk-heading-medium,.uk-card-primary.uk-card-body .uk-heading-small,.uk-card-primary.uk-card-body .uk-heading-xlarge,.uk-card-primary.uk-card-body h1,.uk-card-primary.uk-card-body h2,.uk-card-primary.uk-card-body h3,.uk-card-primary.uk-card-body h4,.uk-card-primary.uk-card-body h5,.uk-card-primary.uk-card-body h6,.uk-card-primary>:not([class*=uk-card-media]) .uk-h1,.uk-card-primary>:not([class*=uk-card-media]) .uk-h2,.uk-card-primary>:not([class*=uk-card-media]) .uk-h3,.uk-card-primary>:not([class*=uk-card-media]) .uk-h4,.uk-card-primary>:not([class*=uk-card-media]) .uk-h5,.uk-card-primary>:not([class*=uk-card-media]) .uk-h6,.uk-card-primary>:not([class*=uk-card-media]) .uk-heading-2xlarge,.uk-card-primary>:not([class*=uk-card-media]) .uk-heading-3xlarge,.uk-card-primary>:not([class*=uk-card-media]) .uk-heading-large,.uk-card-primary>:not([class*=uk-card-media]) .uk-heading-medium,.uk-card-primary>:not([class*=uk-card-media]) .uk-heading-small,.uk-card-primary>:not([class*=uk-card-media]) .uk-heading-xlarge,.uk-card-primary>:not([class*=uk-card-media]) h1,.uk-card-primary>:not([class*=uk-card-media]) h2,.uk-card-primary>:not([class*=uk-card-media]) h3,.uk-card-primary>:not([class*=uk-card-media]) h4,.uk-card-primary>:not([class*=uk-card-media]) h5,.uk-card-primary>:not([class*=uk-card-media]) h6,.uk-card-secondary.uk-card-body .uk-h1,.uk-card-secondary.uk-card-body .uk-h2,.uk-card-secondary.uk-card-body .uk-h3,.uk-card-secondary.uk-card-body .uk-h4,.uk-card-secondary.uk-card-body .uk-h5,.uk-card-secondary.uk-card-body .uk-h6,.uk-card-secondary.uk-card-body .uk-heading-2xlarge,.uk-card-secondary.uk-card-body .uk-heading-3xlarge,.uk-card-secondary.uk-card-body .uk-heading-large,.uk-card-secondary.uk-card-body .uk-heading-medium,.uk-card-secondary.uk-card-body .uk-heading-small,.uk-card-secondary.uk-card-body .uk-heading-xlarge,.uk-card-secondary.uk-card-body h1,.uk-card-secondary.uk-card-body h2,.uk-card-secondary.uk-card-body h3,.uk-card-secondary.uk-card-body h4,.uk-card-secondary.uk-card-body h5,.uk-card-secondary.uk-card-body h6,.uk-card-secondary>:not([class*=uk-card-media]) .uk-h1,.uk-card-secondary>:not([class*=uk-card-media]) .uk-h2,.uk-card-secondary>:not([class*=uk-card-media]) .uk-h3,.uk-card-secondary>:not([class*=uk-card-media]) .uk-h4,.uk-card-secondary>:not([class*=uk-card-media]) .uk-h5,.uk-card-secondary>:not([class*=uk-card-media]) .uk-h6,.uk-card-secondary>:not([class*=uk-card-media]) .uk-heading-2xlarge,.uk-card-secondary>:not([class*=uk-card-media]) .uk-heading-3xlarge,.uk-card-secondary>:not([class*=uk-card-media]) .uk-heading-large,.uk-card-secondary>:not([class*=uk-card-media]) .uk-heading-medium,.uk-card-secondary>:not([class*=uk-card-media]) .uk-heading-small,.uk-card-secondary>:not([class*=uk-card-media]) .uk-heading-xlarge,.uk-card-secondary>:not([class*=uk-card-media]) h1,.uk-card-secondary>:not([class*=uk-card-media]) h2,.uk-card-secondary>:not([class*=uk-card-media]) h3,.uk-card-secondary>:not([class*=uk-card-media]) h4,.uk-card-secondary>:not([class*=uk-card-media]) h5,.uk-card-secondary>:not([class*=uk-card-media]) h6,.uk-light .uk-h1,.uk-light .uk-h2,.uk-light .uk-h3,.uk-light .uk-h4,.uk-light .uk-h5,.uk-light .uk-h6,.uk-light .uk-heading-2xlarge,.uk-light .uk-heading-3xlarge,.uk-light .uk-heading-large,.uk-light .uk-heading-medium,.uk-light .uk-heading-small,.uk-light .uk-heading-xlarge,.uk-light h1,.uk-light h2,.uk-light h3,.uk-light h4,.uk-light h5,.uk-light h6,.uk-offcanvas-bar .uk-h1,.uk-offcanvas-bar .uk-h2,.uk-offcanvas-bar .uk-h3,.uk-offcanvas-bar .uk-h4,.uk-offcanvas-bar .uk-h5,.uk-offcanvas-bar .uk-h6,.uk-offcanvas-bar .uk-heading-2xlarge,.uk-offcanvas-bar .uk-heading-3xlarge,.uk-offcanvas-bar .uk-heading-large,.uk-offcanvas-bar .uk-heading-medium,.uk-offcanvas-bar .uk-heading-small,.uk-offcanvas-bar .uk-heading-xlarge,.uk-offcanvas-bar h1,.uk-offcanvas-bar h2,.uk-offcanvas-bar h3,.uk-offcanvas-bar h4,.uk-offcanvas-bar h5,.uk-offcanvas-bar h6,.uk-overlay-primary .uk-h1,.uk-overlay-primary .uk-h2,.uk-overlay-primary .uk-h3,.uk-overlay-primary .uk-h4,.uk-overlay-primary .uk-h5,.uk-overlay-primary .uk-h6,.uk-overlay-primary .uk-heading-2xlarge,.uk-overlay-primary .uk-heading-3xlarge,.uk-overlay-primary .uk-heading-large,.uk-overlay-primary .uk-heading-medium,.uk-overlay-primary .uk-heading-small,.uk-overlay-primary .uk-heading-xlarge,.uk-overlay-primary h1,.uk-overlay-primary h2,.uk-overlay-primary h3,.uk-overlay-primary h4,.uk-overlay-primary h5,.uk-overlay-primary h6,.uk-section-primary:not(.uk-preserve-color) .uk-h1,.uk-section-primary:not(.uk-preserve-color) .uk-h2,.uk-section-primary:not(.uk-preserve-color) .uk-h3,.uk-section-primary:not(.uk-preserve-color) .uk-h4,.uk-section-primary:not(.uk-preserve-color) .uk-h5,.uk-section-primary:not(.uk-preserve-color) .uk-h6,.uk-section-primary:not(.uk-preserve-color) .uk-heading-2xlarge,.uk-section-primary:not(.uk-preserve-color) .uk-heading-3xlarge,.uk-section-primary:not(.uk-preserve-color) .uk-heading-large,.uk-section-primary:not(.uk-preserve-color) .uk-heading-medium,.uk-section-primary:not(.uk-preserve-color) .uk-heading-small,.uk-section-primary:not(.uk-preserve-color) .uk-heading-xlarge,.uk-section-primary:not(.uk-preserve-color) h1,.uk-section-primary:not(.uk-preserve-color) h2,.uk-section-primary:not(.uk-preserve-color) h3,.uk-section-primary:not(.uk-preserve-color) h4,.uk-section-primary:not(.uk-preserve-color) h5,.uk-section-primary:not(.uk-preserve-color) h6,.uk-section-secondary:not(.uk-preserve-color) .uk-h1,.uk-section-secondary:not(.uk-preserve-color) .uk-h2,.uk-section-secondary:not(.uk-preserve-color) .uk-h3,.uk-section-secondary:not(.uk-preserve-color) .uk-h4,.uk-section-secondary:not(.uk-preserve-color) .uk-h5,.uk-section-secondary:not(.uk-preserve-color) .uk-h6,.uk-section-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,.uk-section-secondary:not(.uk-preserve-color) .uk-heading-3xlarge,.uk-section-secondary:not(.uk-preserve-color) .uk-heading-large,.uk-section-secondary:not(.uk-preserve-color) .uk-heading-medium,.uk-section-secondary:not(.uk-preserve-color) .uk-heading-small,.uk-section-secondary:not(.uk-preserve-color) .uk-heading-xlarge,.uk-section-secondary:not(.uk-preserve-color) h1,.uk-section-secondary:not(.uk-preserve-color) h2,.uk-section-secondary:not(.uk-preserve-color) h3,.uk-section-secondary:not(.uk-preserve-color) h4,.uk-section-secondary:not(.uk-preserve-color) h5,.uk-section-secondary:not(.uk-preserve-color) h6,.uk-tile-primary:not(.uk-preserve-color) .uk-h1,.uk-tile-primary:not(.uk-preserve-color) .uk-h2,.uk-tile-primary:not(.uk-preserve-color) .uk-h3,.uk-tile-primary:not(.uk-preserve-color) .uk-h4,.uk-tile-primary:not(.uk-preserve-color) .uk-h5,.uk-tile-primary:not(.uk-preserve-color) .uk-h6,.uk-tile-primary:not(.uk-preserve-color) .uk-heading-2xlarge,.uk-tile-primary:not(.uk-preserve-color) .uk-heading-3xlarge,.uk-tile-primary:not(.uk-preserve-color) .uk-heading-large,.uk-tile-primary:not(.uk-preserve-color) .uk-heading-medium,.uk-tile-primary:not(.uk-preserve-color) .uk-heading-small,.uk-tile-primary:not(.uk-preserve-color) .uk-heading-xlarge,.uk-tile-primary:not(.uk-preserve-color) h1,.uk-tile-primary:not(.uk-preserve-color) h2,.uk-tile-primary:not(.uk-preserve-color) h3,.uk-tile-primary:not(.uk-preserve-color) h4,.uk-tile-primary:not(.uk-preserve-color) h5,.uk-tile-primary:not(.uk-preserve-color) h6,.uk-tile-secondary:not(.uk-preserve-color) .uk-h1,.uk-tile-secondary:not(.uk-preserve-color) .uk-h2,.uk-tile-secondary:not(.uk-preserve-color) .uk-h3,.uk-tile-secondary:not(.uk-preserve-color) .uk-h4,.uk-tile-secondary:not(.uk-preserve-color) .uk-h5,.uk-tile-secondary:not(.uk-preserve-color) .uk-h6,.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-3xlarge,.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-large,.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-medium,.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-small,.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-xlarge,.uk-tile-secondary:not(.uk-preserve-color) h1,.uk-tile-secondary:not(.uk-preserve-color) h2,.uk-tile-secondary:not(.uk-preserve-color) h3,.uk-tile-secondary:not(.uk-preserve-color) h4,.uk-tile-secondary:not(.uk-preserve-color) h5,.uk-tile-secondary:not(.uk-preserve-color) h6{color:#fff}.uk-card-primary.uk-card-body blockquote,.uk-card-primary>:not([class*=uk-card-media]) blockquote,.uk-card-secondary.uk-card-body blockquote,.uk-card-secondary>:not([class*=uk-card-media]) blockquote,.uk-light blockquote,.uk-offcanvas-bar blockquote,.uk-overlay-primary blockquote,.uk-section-primary:not(.uk-preserve-color) blockquote,.uk-section-secondary:not(.uk-preserve-color) blockquote,.uk-tile-primary:not(.uk-preserve-color) blockquote,.uk-tile-secondary:not(.uk-preserve-color) blockquote{color:#fff}.uk-card-primary.uk-card-body blockquote footer,.uk-card-primary>:not([class*=uk-card-media]) blockquote footer,.uk-card-secondary.uk-card-body blockquote footer,.uk-card-secondary>:not([class*=uk-card-media]) blockquote footer,.uk-light blockquote footer,.uk-offcanvas-bar blockquote footer,.uk-overlay-primary blockquote footer,.uk-section-primary:not(.uk-preserve-color) blockquote footer,.uk-section-secondary:not(.uk-preserve-color) blockquote footer,.uk-tile-primary:not(.uk-preserve-color) blockquote footer,.uk-tile-secondary:not(.uk-preserve-color) blockquote footer{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-hr,.uk-card-primary.uk-card-body hr,.uk-card-primary>:not([class*=uk-card-media]) .uk-hr,.uk-card-primary>:not([class*=uk-card-media]) hr,.uk-card-secondary.uk-card-body .uk-hr,.uk-card-secondary.uk-card-body hr,.uk-card-secondary>:not([class*=uk-card-media]) .uk-hr,.uk-card-secondary>:not([class*=uk-card-media]) hr,.uk-light .uk-hr,.uk-light hr,.uk-offcanvas-bar .uk-hr,.uk-offcanvas-bar hr,.uk-overlay-primary .uk-hr,.uk-overlay-primary hr,.uk-section-primary:not(.uk-preserve-color) .uk-hr,.uk-section-primary:not(.uk-preserve-color) hr,.uk-section-secondary:not(.uk-preserve-color) .uk-hr,.uk-section-secondary:not(.uk-preserve-color) hr,.uk-tile-primary:not(.uk-preserve-color) .uk-hr,.uk-tile-primary:not(.uk-preserve-color) hr,.uk-tile-secondary:not(.uk-preserve-color) .uk-hr,.uk-tile-secondary:not(.uk-preserve-color) hr{border-top-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body :focus-visible,.uk-card-primary>:not([class*=uk-card-media]) :focus-visible,.uk-card-secondary.uk-card-body :focus-visible,.uk-card-secondary>:not([class*=uk-card-media]) :focus-visible,.uk-light :focus-visible,.uk-offcanvas-bar :focus-visible,.uk-overlay-primary :focus-visible,.uk-section-primary:not(.uk-preserve-color) :focus-visible,.uk-section-secondary:not(.uk-preserve-color) :focus-visible,.uk-tile-primary:not(.uk-preserve-color) :focus-visible,.uk-tile-secondary:not(.uk-preserve-color) :focus-visible{outline-color:#fff}.uk-card-primary.uk-card-body .uk-link-muted a,.uk-card-primary.uk-card-body a.uk-link-muted,.uk-card-primary>:not([class*=uk-card-media]) .uk-link-muted a,.uk-card-primary>:not([class*=uk-card-media]) a.uk-link-muted,.uk-card-secondary.uk-card-body .uk-link-muted a,.uk-card-secondary.uk-card-body a.uk-link-muted,.uk-card-secondary>:not([class*=uk-card-media]) .uk-link-muted a,.uk-card-secondary>:not([class*=uk-card-media]) a.uk-link-muted,.uk-light .uk-link-muted a,.uk-light a.uk-link-muted,.uk-offcanvas-bar .uk-link-muted a,.uk-offcanvas-bar a.uk-link-muted,.uk-overlay-primary .uk-link-muted a,.uk-overlay-primary a.uk-link-muted,.uk-section-primary:not(.uk-preserve-color) .uk-link-muted a,.uk-section-primary:not(.uk-preserve-color) a.uk-link-muted,.uk-section-secondary:not(.uk-preserve-color) .uk-link-muted a,.uk-section-secondary:not(.uk-preserve-color) a.uk-link-muted,.uk-tile-primary:not(.uk-preserve-color) .uk-link-muted a,.uk-tile-primary:not(.uk-preserve-color) a.uk-link-muted,.uk-tile-secondary:not(.uk-preserve-color) .uk-link-muted a,.uk-tile-secondary:not(.uk-preserve-color) a.uk-link-muted{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-link-muted a:hover,.uk-card-primary.uk-card-body .uk-link-toggle:hover .uk-link-muted,.uk-card-primary.uk-card-body a.uk-link-muted:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-link-muted a:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-link-toggle:hover .uk-link-muted,.uk-card-primary>:not([class*=uk-card-media]) a.uk-link-muted:hover,.uk-card-secondary.uk-card-body .uk-link-muted a:hover,.uk-card-secondary.uk-card-body .uk-link-toggle:hover .uk-link-muted,.uk-card-secondary.uk-card-body a.uk-link-muted:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-link-muted a:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-link-toggle:hover .uk-link-muted,.uk-card-secondary>:not([class*=uk-card-media]) a.uk-link-muted:hover,.uk-light .uk-link-muted a:hover,.uk-light .uk-link-toggle:hover .uk-link-muted,.uk-light a.uk-link-muted:hover,.uk-offcanvas-bar .uk-link-muted a:hover,.uk-offcanvas-bar .uk-link-toggle:hover .uk-link-muted,.uk-offcanvas-bar a.uk-link-muted:hover,.uk-overlay-primary .uk-link-muted a:hover,.uk-overlay-primary .uk-link-toggle:hover .uk-link-muted,.uk-overlay-primary a.uk-link-muted:hover,.uk-section-primary:not(.uk-preserve-color) .uk-link-muted a:hover,.uk-section-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-muted,.uk-section-primary:not(.uk-preserve-color) a.uk-link-muted:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-link-muted a:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-muted,.uk-section-secondary:not(.uk-preserve-color) a.uk-link-muted:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-link-muted a:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-muted,.uk-tile-primary:not(.uk-preserve-color) a.uk-link-muted:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-link-muted a:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-muted,.uk-tile-secondary:not(.uk-preserve-color) a.uk-link-muted:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-link-text a:hover,.uk-card-primary.uk-card-body .uk-link-toggle:hover .uk-link-text,.uk-card-primary.uk-card-body a.uk-link-text:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-link-text a:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-link-toggle:hover .uk-link-text,.uk-card-primary>:not([class*=uk-card-media]) a.uk-link-text:hover,.uk-card-secondary.uk-card-body .uk-link-text a:hover,.uk-card-secondary.uk-card-body .uk-link-toggle:hover .uk-link-text,.uk-card-secondary.uk-card-body a.uk-link-text:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-link-text a:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-link-toggle:hover .uk-link-text,.uk-card-secondary>:not([class*=uk-card-media]) a.uk-link-text:hover,.uk-light .uk-link-text a:hover,.uk-light .uk-link-toggle:hover .uk-link-text,.uk-light a.uk-link-text:hover,.uk-offcanvas-bar .uk-link-text a:hover,.uk-offcanvas-bar .uk-link-toggle:hover .uk-link-text,.uk-offcanvas-bar a.uk-link-text:hover,.uk-overlay-primary .uk-link-text a:hover,.uk-overlay-primary .uk-link-toggle:hover .uk-link-text,.uk-overlay-primary a.uk-link-text:hover,.uk-section-primary:not(.uk-preserve-color) .uk-link-text a:hover,.uk-section-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-text,.uk-section-primary:not(.uk-preserve-color) a.uk-link-text:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-link-text a:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-text,.uk-section-secondary:not(.uk-preserve-color) a.uk-link-text:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-link-text a:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-text,.uk-tile-primary:not(.uk-preserve-color) a.uk-link-text:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-link-text a:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-text,.uk-tile-secondary:not(.uk-preserve-color) a.uk-link-text:hover{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-link-heading a:hover,.uk-card-primary.uk-card-body .uk-link-toggle:hover .uk-link-heading,.uk-card-primary.uk-card-body a.uk-link-heading:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-link-heading a:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-link-toggle:hover .uk-link-heading,.uk-card-primary>:not([class*=uk-card-media]) a.uk-link-heading:hover,.uk-card-secondary.uk-card-body .uk-link-heading a:hover,.uk-card-secondary.uk-card-body .uk-link-toggle:hover .uk-link-heading,.uk-card-secondary.uk-card-body a.uk-link-heading:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-link-heading a:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-link-toggle:hover .uk-link-heading,.uk-card-secondary>:not([class*=uk-card-media]) a.uk-link-heading:hover,.uk-light .uk-link-heading a:hover,.uk-light .uk-link-toggle:hover .uk-link-heading,.uk-light a.uk-link-heading:hover,.uk-offcanvas-bar .uk-link-heading a:hover,.uk-offcanvas-bar .uk-link-toggle:hover .uk-link-heading,.uk-offcanvas-bar a.uk-link-heading:hover,.uk-overlay-primary .uk-link-heading a:hover,.uk-overlay-primary .uk-link-toggle:hover .uk-link-heading,.uk-overlay-primary a.uk-link-heading:hover,.uk-section-primary:not(.uk-preserve-color) .uk-link-heading a:hover,.uk-section-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-heading,.uk-section-primary:not(.uk-preserve-color) a.uk-link-heading:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-link-heading a:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-heading,.uk-section-secondary:not(.uk-preserve-color) a.uk-link-heading:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-link-heading a:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-heading,.uk-tile-primary:not(.uk-preserve-color) a.uk-link-heading:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-link-heading a:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-link-toggle:hover .uk-link-heading,.uk-tile-secondary:not(.uk-preserve-color) a.uk-link-heading:hover{color:#fff}.uk-card-primary.uk-card-body .uk-heading-divider,.uk-card-primary>:not([class*=uk-card-media]) .uk-heading-divider,.uk-card-secondary.uk-card-body .uk-heading-divider,.uk-card-secondary>:not([class*=uk-card-media]) .uk-heading-divider,.uk-light .uk-heading-divider,.uk-offcanvas-bar .uk-heading-divider,.uk-overlay-primary .uk-heading-divider,.uk-section-primary:not(.uk-preserve-color) .uk-heading-divider,.uk-section-secondary:not(.uk-preserve-color) .uk-heading-divider,.uk-tile-primary:not(.uk-preserve-color) .uk-heading-divider,.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-divider{border-bottom-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-heading-bullet::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-heading-bullet::before,.uk-card-secondary.uk-card-body .uk-heading-bullet::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-heading-bullet::before,.uk-light .uk-heading-bullet::before,.uk-offcanvas-bar .uk-heading-bullet::before,.uk-overlay-primary .uk-heading-bullet::before,.uk-section-primary:not(.uk-preserve-color) .uk-heading-bullet::before,.uk-section-secondary:not(.uk-preserve-color) .uk-heading-bullet::before,.uk-tile-primary:not(.uk-preserve-color) .uk-heading-bullet::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-bullet::before{border-left-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-heading-line>::after,.uk-card-primary.uk-card-body .uk-heading-line>::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-heading-line>::after,.uk-card-primary>:not([class*=uk-card-media]) .uk-heading-line>::before,.uk-card-secondary.uk-card-body .uk-heading-line>::after,.uk-card-secondary.uk-card-body .uk-heading-line>::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-heading-line>::after,.uk-card-secondary>:not([class*=uk-card-media]) .uk-heading-line>::before,.uk-light .uk-heading-line>::after,.uk-light .uk-heading-line>::before,.uk-offcanvas-bar .uk-heading-line>::after,.uk-offcanvas-bar .uk-heading-line>::before,.uk-overlay-primary .uk-heading-line>::after,.uk-overlay-primary .uk-heading-line>::before,.uk-section-primary:not(.uk-preserve-color) .uk-heading-line>::after,.uk-section-primary:not(.uk-preserve-color) .uk-heading-line>::before,.uk-section-secondary:not(.uk-preserve-color) .uk-heading-line>::after,.uk-section-secondary:not(.uk-preserve-color) .uk-heading-line>::before,.uk-tile-primary:not(.uk-preserve-color) .uk-heading-line>::after,.uk-tile-primary:not(.uk-preserve-color) .uk-heading-line>::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-line>::after,.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-line>::before{border-bottom-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-divider-icon,.uk-card-primary>:not([class*=uk-card-media]) .uk-divider-icon,.uk-card-secondary.uk-card-body .uk-divider-icon,.uk-card-secondary>:not([class*=uk-card-media]) .uk-divider-icon,.uk-light .uk-divider-icon,.uk-offcanvas-bar .uk-divider-icon,.uk-overlay-primary .uk-divider-icon,.uk-section-primary:not(.uk-preserve-color) .uk-divider-icon,.uk-section-secondary:not(.uk-preserve-color) .uk-divider-icon,.uk-tile-primary:not(.uk-preserve-color) .uk-divider-icon,.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-icon{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22none%22%20stroke%3D%22rgba%28255,%20255,%20255,%200.2%29%22%20stroke-width%3D%222%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%227%22%20%2F%3E%0A%3C%2Fsvg%3E%0A")}.uk-card-primary.uk-card-body .uk-divider-icon::after,.uk-card-primary.uk-card-body .uk-divider-icon::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-divider-icon::after,.uk-card-primary>:not([class*=uk-card-media]) .uk-divider-icon::before,.uk-card-secondary.uk-card-body .uk-divider-icon::after,.uk-card-secondary.uk-card-body .uk-divider-icon::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-divider-icon::after,.uk-card-secondary>:not([class*=uk-card-media]) .uk-divider-icon::before,.uk-light .uk-divider-icon::after,.uk-light .uk-divider-icon::before,.uk-offcanvas-bar .uk-divider-icon::after,.uk-offcanvas-bar .uk-divider-icon::before,.uk-overlay-primary .uk-divider-icon::after,.uk-overlay-primary .uk-divider-icon::before,.uk-section-primary:not(.uk-preserve-color) .uk-divider-icon::after,.uk-section-primary:not(.uk-preserve-color) .uk-divider-icon::before,.uk-section-secondary:not(.uk-preserve-color) .uk-divider-icon::after,.uk-section-secondary:not(.uk-preserve-color) .uk-divider-icon::before,.uk-tile-primary:not(.uk-preserve-color) .uk-divider-icon::after,.uk-tile-primary:not(.uk-preserve-color) .uk-divider-icon::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-icon::after,.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-icon::before{border-bottom-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-divider-small::after,.uk-card-primary>:not([class*=uk-card-media]) .uk-divider-small::after,.uk-card-secondary.uk-card-body .uk-divider-small::after,.uk-card-secondary>:not([class*=uk-card-media]) .uk-divider-small::after,.uk-light .uk-divider-small::after,.uk-offcanvas-bar .uk-divider-small::after,.uk-overlay-primary .uk-divider-small::after,.uk-section-primary:not(.uk-preserve-color) .uk-divider-small::after,.uk-section-secondary:not(.uk-preserve-color) .uk-divider-small::after,.uk-tile-primary:not(.uk-preserve-color) .uk-divider-small::after,.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-small::after{border-top-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-divider-vertical,.uk-card-primary>:not([class*=uk-card-media]) .uk-divider-vertical,.uk-card-secondary.uk-card-body .uk-divider-vertical,.uk-card-secondary>:not([class*=uk-card-media]) .uk-divider-vertical,.uk-light .uk-divider-vertical,.uk-offcanvas-bar .uk-divider-vertical,.uk-overlay-primary .uk-divider-vertical,.uk-section-primary:not(.uk-preserve-color) .uk-divider-vertical,.uk-section-secondary:not(.uk-preserve-color) .uk-divider-vertical,.uk-tile-primary:not(.uk-preserve-color) .uk-divider-vertical,.uk-tile-secondary:not(.uk-preserve-color) .uk-divider-vertical{border-left-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-list-muted>::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-list-muted>::before,.uk-card-secondary.uk-card-body .uk-list-muted>::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-list-muted>::before,.uk-light .uk-list-muted>::before,.uk-offcanvas-bar .uk-list-muted>::before,.uk-overlay-primary .uk-list-muted>::before,.uk-section-primary:not(.uk-preserve-color) .uk-list-muted>::before,.uk-section-secondary:not(.uk-preserve-color) .uk-list-muted>::before,.uk-tile-primary:not(.uk-preserve-color) .uk-list-muted>::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-list-muted>::before{color:rgba(255,255,255,.5)!important}.uk-card-primary.uk-card-body .uk-list-emphasis>::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-list-emphasis>::before,.uk-card-secondary.uk-card-body .uk-list-emphasis>::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-list-emphasis>::before,.uk-light .uk-list-emphasis>::before,.uk-offcanvas-bar .uk-list-emphasis>::before,.uk-overlay-primary .uk-list-emphasis>::before,.uk-section-primary:not(.uk-preserve-color) .uk-list-emphasis>::before,.uk-section-secondary:not(.uk-preserve-color) .uk-list-emphasis>::before,.uk-tile-primary:not(.uk-preserve-color) .uk-list-emphasis>::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-list-emphasis>::before{color:#fff!important}.uk-card-primary.uk-card-body .uk-list-primary>::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-list-primary>::before,.uk-card-secondary.uk-card-body .uk-list-primary>::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-list-primary>::before,.uk-light .uk-list-primary>::before,.uk-offcanvas-bar .uk-list-primary>::before,.uk-overlay-primary .uk-list-primary>::before,.uk-section-primary:not(.uk-preserve-color) .uk-list-primary>::before,.uk-section-secondary:not(.uk-preserve-color) .uk-list-primary>::before,.uk-tile-primary:not(.uk-preserve-color) .uk-list-primary>::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-list-primary>::before{color:#fff!important}.uk-card-primary.uk-card-body .uk-list-secondary>::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-list-secondary>::before,.uk-card-secondary.uk-card-body .uk-list-secondary>::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-list-secondary>::before,.uk-light .uk-list-secondary>::before,.uk-offcanvas-bar .uk-list-secondary>::before,.uk-overlay-primary .uk-list-secondary>::before,.uk-section-primary:not(.uk-preserve-color) .uk-list-secondary>::before,.uk-section-secondary:not(.uk-preserve-color) .uk-list-secondary>::before,.uk-tile-primary:not(.uk-preserve-color) .uk-list-secondary>::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-list-secondary>::before{color:#fff!important}.uk-card-primary.uk-card-body .uk-list-bullet>::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-list-bullet>::before,.uk-card-secondary.uk-card-body .uk-list-bullet>::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-list-bullet>::before,.uk-light .uk-list-bullet>::before,.uk-offcanvas-bar .uk-list-bullet>::before,.uk-overlay-primary .uk-list-bullet>::before,.uk-section-primary:not(.uk-preserve-color) .uk-list-bullet>::before,.uk-section-secondary:not(.uk-preserve-color) .uk-list-bullet>::before,.uk-tile-primary:not(.uk-preserve-color) .uk-list-bullet>::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-list-bullet>::before{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E")}.uk-card-primary.uk-card-body .uk-list-divider>:nth-child(n+2),.uk-card-primary>:not([class*=uk-card-media]) .uk-list-divider>:nth-child(n+2),.uk-card-secondary.uk-card-body .uk-list-divider>:nth-child(n+2),.uk-card-secondary>:not([class*=uk-card-media]) .uk-list-divider>:nth-child(n+2),.uk-light .uk-list-divider>:nth-child(n+2),.uk-offcanvas-bar .uk-list-divider>:nth-child(n+2),.uk-overlay-primary .uk-list-divider>:nth-child(n+2),.uk-section-primary:not(.uk-preserve-color) .uk-list-divider>:nth-child(n+2),.uk-section-secondary:not(.uk-preserve-color) .uk-list-divider>:nth-child(n+2),.uk-tile-primary:not(.uk-preserve-color) .uk-list-divider>:nth-child(n+2),.uk-tile-secondary:not(.uk-preserve-color) .uk-list-divider>:nth-child(n+2){border-top-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-list-striped>:nth-of-type(odd),.uk-card-primary>:not([class*=uk-card-media]) .uk-list-striped>:nth-of-type(odd),.uk-card-secondary.uk-card-body .uk-list-striped>:nth-of-type(odd),.uk-card-secondary>:not([class*=uk-card-media]) .uk-list-striped>:nth-of-type(odd),.uk-light .uk-list-striped>:nth-of-type(odd),.uk-offcanvas-bar .uk-list-striped>:nth-of-type(odd),.uk-overlay-primary .uk-list-striped>:nth-of-type(odd),.uk-section-primary:not(.uk-preserve-color) .uk-list-striped>:nth-of-type(odd),.uk-section-secondary:not(.uk-preserve-color) .uk-list-striped>:nth-of-type(odd),.uk-tile-primary:not(.uk-preserve-color) .uk-list-striped>:nth-of-type(odd),.uk-tile-secondary:not(.uk-preserve-color) .uk-list-striped>:nth-of-type(odd){border-top-color:rgba(255,255,255,.2);border-bottom-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-list-striped>:nth-of-type(odd),.uk-card-primary>:not([class*=uk-card-media]) .uk-list-striped>:nth-of-type(odd),.uk-card-secondary.uk-card-body .uk-list-striped>:nth-of-type(odd),.uk-card-secondary>:not([class*=uk-card-media]) .uk-list-striped>:nth-of-type(odd),.uk-light .uk-list-striped>:nth-of-type(odd),.uk-offcanvas-bar .uk-list-striped>:nth-of-type(odd),.uk-overlay-primary .uk-list-striped>:nth-of-type(odd),.uk-section-primary:not(.uk-preserve-color) .uk-list-striped>:nth-of-type(odd),.uk-section-secondary:not(.uk-preserve-color) .uk-list-striped>:nth-of-type(odd),.uk-tile-primary:not(.uk-preserve-color) .uk-list-striped>:nth-of-type(odd),.uk-tile-secondary:not(.uk-preserve-color) .uk-list-striped>:nth-of-type(odd){background-color:rgba(255,255,255,.1)}.uk-card-primary.uk-card-body .uk-table th,.uk-card-primary>:not([class*=uk-card-media]) .uk-table th,.uk-card-secondary.uk-card-body .uk-table th,.uk-card-secondary>:not([class*=uk-card-media]) .uk-table th,.uk-light .uk-table th,.uk-offcanvas-bar .uk-table th,.uk-overlay-primary .uk-table th,.uk-section-primary:not(.uk-preserve-color) .uk-table th,.uk-section-secondary:not(.uk-preserve-color) .uk-table th,.uk-tile-primary:not(.uk-preserve-color) .uk-table th,.uk-tile-secondary:not(.uk-preserve-color) .uk-table th{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-table caption,.uk-card-primary>:not([class*=uk-card-media]) .uk-table caption,.uk-card-secondary.uk-card-body .uk-table caption,.uk-card-secondary>:not([class*=uk-card-media]) .uk-table caption,.uk-light .uk-table caption,.uk-offcanvas-bar .uk-table caption,.uk-overlay-primary .uk-table caption,.uk-section-primary:not(.uk-preserve-color) .uk-table caption,.uk-section-secondary:not(.uk-preserve-color) .uk-table caption,.uk-tile-primary:not(.uk-preserve-color) .uk-table caption,.uk-tile-secondary:not(.uk-preserve-color) .uk-table caption{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-table tbody tr.uk-active,.uk-card-primary.uk-card-body .uk-table>tr.uk-active,.uk-card-primary>:not([class*=uk-card-media]) .uk-table tbody tr.uk-active,.uk-card-primary>:not([class*=uk-card-media]) .uk-table>tr.uk-active,.uk-card-secondary.uk-card-body .uk-table tbody tr.uk-active,.uk-card-secondary.uk-card-body .uk-table>tr.uk-active,.uk-card-secondary>:not([class*=uk-card-media]) .uk-table tbody tr.uk-active,.uk-card-secondary>:not([class*=uk-card-media]) .uk-table>tr.uk-active,.uk-light .uk-table tbody tr.uk-active,.uk-light .uk-table>tr.uk-active,.uk-offcanvas-bar .uk-table tbody tr.uk-active,.uk-offcanvas-bar .uk-table>tr.uk-active,.uk-overlay-primary .uk-table tbody tr.uk-active,.uk-overlay-primary .uk-table>tr.uk-active,.uk-section-primary:not(.uk-preserve-color) .uk-table tbody tr.uk-active,.uk-section-primary:not(.uk-preserve-color) .uk-table>tr.uk-active,.uk-section-secondary:not(.uk-preserve-color) .uk-table tbody tr.uk-active,.uk-section-secondary:not(.uk-preserve-color) .uk-table>tr.uk-active,.uk-tile-primary:not(.uk-preserve-color) .uk-table tbody tr.uk-active,.uk-tile-primary:not(.uk-preserve-color) .uk-table>tr.uk-active,.uk-tile-secondary:not(.uk-preserve-color) .uk-table tbody tr.uk-active,.uk-tile-secondary:not(.uk-preserve-color) .uk-table>tr.uk-active{background:rgba(255,255,255,.08)}.uk-card-primary.uk-card-body .uk-table-divider>:first-child>tr:not(:first-child),.uk-card-primary.uk-card-body .uk-table-divider>:not(:first-child)>tr,.uk-card-primary.uk-card-body .uk-table-divider>tr:not(:first-child),.uk-card-primary>:not([class*=uk-card-media]) .uk-table-divider>:first-child>tr:not(:first-child),.uk-card-primary>:not([class*=uk-card-media]) .uk-table-divider>:not(:first-child)>tr,.uk-card-primary>:not([class*=uk-card-media]) .uk-table-divider>tr:not(:first-child),.uk-card-secondary.uk-card-body .uk-table-divider>:first-child>tr:not(:first-child),.uk-card-secondary.uk-card-body .uk-table-divider>:not(:first-child)>tr,.uk-card-secondary.uk-card-body .uk-table-divider>tr:not(:first-child),.uk-card-secondary>:not([class*=uk-card-media]) .uk-table-divider>:first-child>tr:not(:first-child),.uk-card-secondary>:not([class*=uk-card-media]) .uk-table-divider>:not(:first-child)>tr,.uk-card-secondary>:not([class*=uk-card-media]) .uk-table-divider>tr:not(:first-child),.uk-light .uk-table-divider>:first-child>tr:not(:first-child),.uk-light .uk-table-divider>:not(:first-child)>tr,.uk-light .uk-table-divider>tr:not(:first-child),.uk-offcanvas-bar .uk-table-divider>:first-child>tr:not(:first-child),.uk-offcanvas-bar .uk-table-divider>:not(:first-child)>tr,.uk-offcanvas-bar .uk-table-divider>tr:not(:first-child),.uk-overlay-primary .uk-table-divider>:first-child>tr:not(:first-child),.uk-overlay-primary .uk-table-divider>:not(:first-child)>tr,.uk-overlay-primary .uk-table-divider>tr:not(:first-child),.uk-section-primary:not(.uk-preserve-color) .uk-table-divider>:first-child>tr:not(:first-child),.uk-section-primary:not(.uk-preserve-color) .uk-table-divider>:not(:first-child)>tr,.uk-section-primary:not(.uk-preserve-color) .uk-table-divider>tr:not(:first-child),.uk-section-secondary:not(.uk-preserve-color) .uk-table-divider>:first-child>tr:not(:first-child),.uk-section-secondary:not(.uk-preserve-color) .uk-table-divider>:not(:first-child)>tr,.uk-section-secondary:not(.uk-preserve-color) .uk-table-divider>tr:not(:first-child),.uk-tile-primary:not(.uk-preserve-color) .uk-table-divider>:first-child>tr:not(:first-child),.uk-tile-primary:not(.uk-preserve-color) .uk-table-divider>:not(:first-child)>tr,.uk-tile-primary:not(.uk-preserve-color) .uk-table-divider>tr:not(:first-child),.uk-tile-secondary:not(.uk-preserve-color) .uk-table-divider>:first-child>tr:not(:first-child),.uk-tile-secondary:not(.uk-preserve-color) .uk-table-divider>:not(:first-child)>tr,.uk-tile-secondary:not(.uk-preserve-color) .uk-table-divider>tr:not(:first-child){border-top-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-table-striped tbody tr:nth-of-type(odd),.uk-card-primary.uk-card-body .uk-table-striped>tr:nth-of-type(odd),.uk-card-primary>:not([class*=uk-card-media]) .uk-table-striped tbody tr:nth-of-type(odd),.uk-card-primary>:not([class*=uk-card-media]) .uk-table-striped>tr:nth-of-type(odd),.uk-card-secondary.uk-card-body .uk-table-striped tbody tr:nth-of-type(odd),.uk-card-secondary.uk-card-body .uk-table-striped>tr:nth-of-type(odd),.uk-card-secondary>:not([class*=uk-card-media]) .uk-table-striped tbody tr:nth-of-type(odd),.uk-card-secondary>:not([class*=uk-card-media]) .uk-table-striped>tr:nth-of-type(odd),.uk-light .uk-table-striped tbody tr:nth-of-type(odd),.uk-light .uk-table-striped>tr:nth-of-type(odd),.uk-offcanvas-bar .uk-table-striped tbody tr:nth-of-type(odd),.uk-offcanvas-bar .uk-table-striped>tr:nth-of-type(odd),.uk-overlay-primary .uk-table-striped tbody tr:nth-of-type(odd),.uk-overlay-primary .uk-table-striped>tr:nth-of-type(odd),.uk-section-primary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(odd),.uk-section-primary:not(.uk-preserve-color) .uk-table-striped>tr:nth-of-type(odd),.uk-section-secondary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(odd),.uk-section-secondary:not(.uk-preserve-color) .uk-table-striped>tr:nth-of-type(odd),.uk-tile-primary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(odd),.uk-tile-primary:not(.uk-preserve-color) .uk-table-striped>tr:nth-of-type(odd),.uk-tile-secondary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(odd),.uk-tile-secondary:not(.uk-preserve-color) .uk-table-striped>tr:nth-of-type(odd){background:rgba(255,255,255,.1);border-top-color:rgba(255,255,255,.2);border-bottom-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-table-hover tbody tr:hover,.uk-card-primary.uk-card-body .uk-table-hover>tr:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-table-hover tbody tr:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-table-hover>tr:hover,.uk-card-secondary.uk-card-body .uk-table-hover tbody tr:hover,.uk-card-secondary.uk-card-body .uk-table-hover>tr:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-table-hover tbody tr:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-table-hover>tr:hover,.uk-light .uk-table-hover tbody tr:hover,.uk-light .uk-table-hover>tr:hover,.uk-offcanvas-bar .uk-table-hover tbody tr:hover,.uk-offcanvas-bar .uk-table-hover>tr:hover,.uk-overlay-primary .uk-table-hover tbody tr:hover,.uk-overlay-primary .uk-table-hover>tr:hover,.uk-section-primary:not(.uk-preserve-color) .uk-table-hover tbody tr:hover,.uk-section-primary:not(.uk-preserve-color) .uk-table-hover>tr:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-table-hover tbody tr:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-table-hover>tr:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-table-hover tbody tr:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-table-hover>tr:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-table-hover tbody tr:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-table-hover>tr:hover{background:rgba(255,255,255,.08)}.uk-card-primary.uk-card-body .uk-icon-link,.uk-card-primary>:not([class*=uk-card-media]) .uk-icon-link,.uk-card-secondary.uk-card-body .uk-icon-link,.uk-card-secondary>:not([class*=uk-card-media]) .uk-icon-link,.uk-light .uk-icon-link,.uk-offcanvas-bar .uk-icon-link,.uk-overlay-primary .uk-icon-link,.uk-section-primary:not(.uk-preserve-color) .uk-icon-link,.uk-section-secondary:not(.uk-preserve-color) .uk-icon-link,.uk-tile-primary:not(.uk-preserve-color) .uk-icon-link,.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-link{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-icon-link:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-icon-link:hover,.uk-card-secondary.uk-card-body .uk-icon-link:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-icon-link:hover,.uk-light .uk-icon-link:hover,.uk-offcanvas-bar .uk-icon-link:hover,.uk-overlay-primary .uk-icon-link:hover,.uk-section-primary:not(.uk-preserve-color) .uk-icon-link:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-icon-link:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-icon-link:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-link:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-active>.uk-icon-link,.uk-card-primary.uk-card-body .uk-icon-link:active,.uk-card-primary>:not([class*=uk-card-media]) .uk-active>.uk-icon-link,.uk-card-primary>:not([class*=uk-card-media]) .uk-icon-link:active,.uk-card-secondary.uk-card-body .uk-active>.uk-icon-link,.uk-card-secondary.uk-card-body .uk-icon-link:active,.uk-card-secondary>:not([class*=uk-card-media]) .uk-active>.uk-icon-link,.uk-card-secondary>:not([class*=uk-card-media]) .uk-icon-link:active,.uk-light .uk-active>.uk-icon-link,.uk-light .uk-icon-link:active,.uk-offcanvas-bar .uk-active>.uk-icon-link,.uk-offcanvas-bar .uk-icon-link:active,.uk-overlay-primary .uk-active>.uk-icon-link,.uk-overlay-primary .uk-icon-link:active,.uk-section-primary:not(.uk-preserve-color) .uk-active>.uk-icon-link,.uk-section-primary:not(.uk-preserve-color) .uk-icon-link:active,.uk-section-secondary:not(.uk-preserve-color) .uk-active>.uk-icon-link,.uk-section-secondary:not(.uk-preserve-color) .uk-icon-link:active,.uk-tile-primary:not(.uk-preserve-color) .uk-active>.uk-icon-link,.uk-tile-primary:not(.uk-preserve-color) .uk-icon-link:active,.uk-tile-secondary:not(.uk-preserve-color) .uk-active>.uk-icon-link,.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-link:active{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-icon-button,.uk-card-primary>:not([class*=uk-card-media]) .uk-icon-button,.uk-card-secondary.uk-card-body .uk-icon-button,.uk-card-secondary>:not([class*=uk-card-media]) .uk-icon-button,.uk-light .uk-icon-button,.uk-offcanvas-bar .uk-icon-button,.uk-overlay-primary .uk-icon-button,.uk-section-primary:not(.uk-preserve-color) .uk-icon-button,.uk-section-secondary:not(.uk-preserve-color) .uk-icon-button,.uk-tile-primary:not(.uk-preserve-color) .uk-icon-button,.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button{background-color:rgba(255,255,255,.1);color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-icon-button:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-icon-button:hover,.uk-card-secondary.uk-card-body .uk-icon-button:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-icon-button:hover,.uk-light .uk-icon-button:hover,.uk-offcanvas-bar .uk-icon-button:hover,.uk-overlay-primary .uk-icon-button:hover,.uk-section-primary:not(.uk-preserve-color) .uk-icon-button:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-icon-button:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-icon-button:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button:hover{background-color:rgba(255,255,255,.15);color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-icon-button:active,.uk-card-primary>:not([class*=uk-card-media]) .uk-icon-button:active,.uk-card-secondary.uk-card-body .uk-icon-button:active,.uk-card-secondary>:not([class*=uk-card-media]) .uk-icon-button:active,.uk-light .uk-icon-button:active,.uk-offcanvas-bar .uk-icon-button:active,.uk-overlay-primary .uk-icon-button:active,.uk-section-primary:not(.uk-preserve-color) .uk-icon-button:active,.uk-section-secondary:not(.uk-preserve-color) .uk-icon-button:active,.uk-tile-primary:not(.uk-preserve-color) .uk-icon-button:active,.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button:active{background-color:rgba(255,255,255,.2);color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-input,.uk-card-primary.uk-card-body .uk-select,.uk-card-primary.uk-card-body .uk-textarea,.uk-card-primary>:not([class*=uk-card-media]) .uk-input,.uk-card-primary>:not([class*=uk-card-media]) .uk-select,.uk-card-primary>:not([class*=uk-card-media]) .uk-textarea,.uk-card-secondary.uk-card-body .uk-input,.uk-card-secondary.uk-card-body .uk-select,.uk-card-secondary.uk-card-body .uk-textarea,.uk-card-secondary>:not([class*=uk-card-media]) .uk-input,.uk-card-secondary>:not([class*=uk-card-media]) .uk-select,.uk-card-secondary>:not([class*=uk-card-media]) .uk-textarea,.uk-light .uk-input,.uk-light .uk-select,.uk-light .uk-textarea,.uk-offcanvas-bar .uk-input,.uk-offcanvas-bar .uk-select,.uk-offcanvas-bar .uk-textarea,.uk-overlay-primary .uk-input,.uk-overlay-primary .uk-select,.uk-overlay-primary .uk-textarea,.uk-section-primary:not(.uk-preserve-color) .uk-input,.uk-section-primary:not(.uk-preserve-color) .uk-select,.uk-section-primary:not(.uk-preserve-color) .uk-textarea,.uk-section-secondary:not(.uk-preserve-color) .uk-input,.uk-section-secondary:not(.uk-preserve-color) .uk-select,.uk-section-secondary:not(.uk-preserve-color) .uk-textarea,.uk-tile-primary:not(.uk-preserve-color) .uk-input,.uk-tile-primary:not(.uk-preserve-color) .uk-select,.uk-tile-primary:not(.uk-preserve-color) .uk-textarea,.uk-tile-secondary:not(.uk-preserve-color) .uk-input,.uk-tile-secondary:not(.uk-preserve-color) .uk-select,.uk-tile-secondary:not(.uk-preserve-color) .uk-textarea{background-color:rgba(255,255,255,.1);color:rgba(255,255,255,.7);background-clip:padding-box;border-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-input:focus,.uk-card-primary.uk-card-body .uk-select:focus,.uk-card-primary.uk-card-body .uk-textarea:focus,.uk-card-primary>:not([class*=uk-card-media]) .uk-input:focus,.uk-card-primary>:not([class*=uk-card-media]) .uk-select:focus,.uk-card-primary>:not([class*=uk-card-media]) .uk-textarea:focus,.uk-card-secondary.uk-card-body .uk-input:focus,.uk-card-secondary.uk-card-body .uk-select:focus,.uk-card-secondary.uk-card-body .uk-textarea:focus,.uk-card-secondary>:not([class*=uk-card-media]) .uk-input:focus,.uk-card-secondary>:not([class*=uk-card-media]) .uk-select:focus,.uk-card-secondary>:not([class*=uk-card-media]) .uk-textarea:focus,.uk-light .uk-input:focus,.uk-light .uk-select:focus,.uk-light .uk-textarea:focus,.uk-offcanvas-bar .uk-input:focus,.uk-offcanvas-bar .uk-select:focus,.uk-offcanvas-bar .uk-textarea:focus,.uk-overlay-primary .uk-input:focus,.uk-overlay-primary .uk-select:focus,.uk-overlay-primary .uk-textarea:focus,.uk-section-primary:not(.uk-preserve-color) .uk-input:focus,.uk-section-primary:not(.uk-preserve-color) .uk-select:focus,.uk-section-primary:not(.uk-preserve-color) .uk-textarea:focus,.uk-section-secondary:not(.uk-preserve-color) .uk-input:focus,.uk-section-secondary:not(.uk-preserve-color) .uk-select:focus,.uk-section-secondary:not(.uk-preserve-color) .uk-textarea:focus,.uk-tile-primary:not(.uk-preserve-color) .uk-input:focus,.uk-tile-primary:not(.uk-preserve-color) .uk-select:focus,.uk-tile-primary:not(.uk-preserve-color) .uk-textarea:focus,.uk-tile-secondary:not(.uk-preserve-color) .uk-input:focus,.uk-tile-secondary:not(.uk-preserve-color) .uk-select:focus,.uk-tile-secondary:not(.uk-preserve-color) .uk-textarea:focus{background-color:rgba(255,255,255,.15);color:rgba(255,255,255,.7);border-color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-input::placeholder,.uk-card-primary>:not([class*=uk-card-media]) .uk-input::placeholder,.uk-card-secondary.uk-card-body .uk-input::placeholder,.uk-card-secondary>:not([class*=uk-card-media]) .uk-input::placeholder,.uk-light .uk-input::placeholder,.uk-offcanvas-bar .uk-input::placeholder,.uk-overlay-primary .uk-input::placeholder,.uk-section-primary:not(.uk-preserve-color) .uk-input::placeholder,.uk-section-secondary:not(.uk-preserve-color) .uk-input::placeholder,.uk-tile-primary:not(.uk-preserve-color) .uk-input::placeholder,.uk-tile-secondary:not(.uk-preserve-color) .uk-input::placeholder{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-textarea::placeholder,.uk-card-primary>:not([class*=uk-card-media]) .uk-textarea::placeholder,.uk-card-secondary.uk-card-body .uk-textarea::placeholder,.uk-card-secondary>:not([class*=uk-card-media]) .uk-textarea::placeholder,.uk-light .uk-textarea::placeholder,.uk-offcanvas-bar .uk-textarea::placeholder,.uk-overlay-primary .uk-textarea::placeholder,.uk-section-primary:not(.uk-preserve-color) .uk-textarea::placeholder,.uk-section-secondary:not(.uk-preserve-color) .uk-textarea::placeholder,.uk-tile-primary:not(.uk-preserve-color) .uk-textarea::placeholder,.uk-tile-secondary:not(.uk-preserve-color) .uk-textarea::placeholder{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-select:not([multiple]):not([size]),.uk-card-primary>:not([class*=uk-card-media]) .uk-select:not([multiple]):not([size]),.uk-card-secondary.uk-card-body .uk-select:not([multiple]):not([size]),.uk-card-secondary>:not([class*=uk-card-media]) .uk-select:not([multiple]):not([size]),.uk-light .uk-select:not([multiple]):not([size]),.uk-offcanvas-bar .uk-select:not([multiple]):not([size]),.uk-overlay-primary .uk-select:not([multiple]):not([size]),.uk-section-primary:not(.uk-preserve-color) .uk-select:not([multiple]):not([size]),.uk-section-secondary:not(.uk-preserve-color) .uk-select:not([multiple]):not([size]),.uk-tile-primary:not(.uk-preserve-color) .uk-select:not([multiple]):not([size]),.uk-tile-secondary:not(.uk-preserve-color) .uk-select:not([multiple]):not([size]){background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A")}.uk-card-primary.uk-card-body .uk-input[list]:focus,.uk-card-primary.uk-card-body .uk-input[list]:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-input[list]:focus,.uk-card-primary>:not([class*=uk-card-media]) .uk-input[list]:hover,.uk-card-secondary.uk-card-body .uk-input[list]:focus,.uk-card-secondary.uk-card-body .uk-input[list]:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-input[list]:focus,.uk-card-secondary>:not([class*=uk-card-media]) .uk-input[list]:hover,.uk-light .uk-input[list]:focus,.uk-light .uk-input[list]:hover,.uk-offcanvas-bar .uk-input[list]:focus,.uk-offcanvas-bar .uk-input[list]:hover,.uk-overlay-primary .uk-input[list]:focus,.uk-overlay-primary .uk-input[list]:hover,.uk-section-primary:not(.uk-preserve-color) .uk-input[list]:focus,.uk-section-primary:not(.uk-preserve-color) .uk-input[list]:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-input[list]:focus,.uk-section-secondary:not(.uk-preserve-color) .uk-input[list]:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-input[list]:focus,.uk-tile-primary:not(.uk-preserve-color) .uk-input[list]:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-input[list]:focus,.uk-tile-secondary:not(.uk-preserve-color) .uk-input[list]:hover{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A")}.uk-card-primary.uk-card-body .uk-checkbox,.uk-card-primary.uk-card-body .uk-radio,.uk-card-primary>:not([class*=uk-card-media]) .uk-checkbox,.uk-card-primary>:not([class*=uk-card-media]) .uk-radio,.uk-card-secondary.uk-card-body .uk-checkbox,.uk-card-secondary.uk-card-body .uk-radio,.uk-card-secondary>:not([class*=uk-card-media]) .uk-checkbox,.uk-card-secondary>:not([class*=uk-card-media]) .uk-radio,.uk-light .uk-checkbox,.uk-light .uk-radio,.uk-offcanvas-bar .uk-checkbox,.uk-offcanvas-bar .uk-radio,.uk-overlay-primary .uk-checkbox,.uk-overlay-primary .uk-radio,.uk-section-primary:not(.uk-preserve-color) .uk-checkbox,.uk-section-primary:not(.uk-preserve-color) .uk-radio,.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox,.uk-section-secondary:not(.uk-preserve-color) .uk-radio,.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox,.uk-tile-primary:not(.uk-preserve-color) .uk-radio,.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox,.uk-tile-secondary:not(.uk-preserve-color) .uk-radio{background-color:rgba(255,255,255,.1);border-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-checkbox:focus,.uk-card-primary.uk-card-body .uk-radio:focus,.uk-card-primary>:not([class*=uk-card-media]) .uk-checkbox:focus,.uk-card-primary>:not([class*=uk-card-media]) .uk-radio:focus,.uk-card-secondary.uk-card-body .uk-checkbox:focus,.uk-card-secondary.uk-card-body .uk-radio:focus,.uk-card-secondary>:not([class*=uk-card-media]) .uk-checkbox:focus,.uk-card-secondary>:not([class*=uk-card-media]) .uk-radio:focus,.uk-light .uk-checkbox:focus,.uk-light .uk-radio:focus,.uk-offcanvas-bar .uk-checkbox:focus,.uk-offcanvas-bar .uk-radio:focus,.uk-overlay-primary .uk-checkbox:focus,.uk-overlay-primary .uk-radio:focus,.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:focus,.uk-section-primary:not(.uk-preserve-color) .uk-radio:focus,.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:focus,.uk-section-secondary:not(.uk-preserve-color) .uk-radio:focus,.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:focus,.uk-tile-primary:not(.uk-preserve-color) .uk-radio:focus,.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:focus,.uk-tile-secondary:not(.uk-preserve-color) .uk-radio:focus{background-color:rgba(255,255,255,.15);border-color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-checkbox:checked,.uk-card-primary.uk-card-body .uk-checkbox:indeterminate,.uk-card-primary.uk-card-body .uk-radio:checked,.uk-card-primary>:not([class*=uk-card-media]) .uk-checkbox:checked,.uk-card-primary>:not([class*=uk-card-media]) .uk-checkbox:indeterminate,.uk-card-primary>:not([class*=uk-card-media]) .uk-radio:checked,.uk-card-secondary.uk-card-body .uk-checkbox:checked,.uk-card-secondary.uk-card-body .uk-checkbox:indeterminate,.uk-card-secondary.uk-card-body .uk-radio:checked,.uk-card-secondary>:not([class*=uk-card-media]) .uk-checkbox:checked,.uk-card-secondary>:not([class*=uk-card-media]) .uk-checkbox:indeterminate,.uk-card-secondary>:not([class*=uk-card-media]) .uk-radio:checked,.uk-light .uk-checkbox:checked,.uk-light .uk-checkbox:indeterminate,.uk-light .uk-radio:checked,.uk-offcanvas-bar .uk-checkbox:checked,.uk-offcanvas-bar .uk-checkbox:indeterminate,.uk-offcanvas-bar .uk-radio:checked,.uk-overlay-primary .uk-checkbox:checked,.uk-overlay-primary .uk-checkbox:indeterminate,.uk-overlay-primary .uk-radio:checked,.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:checked,.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,.uk-section-primary:not(.uk-preserve-color) .uk-radio:checked,.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:checked,.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,.uk-section-secondary:not(.uk-preserve-color) .uk-radio:checked,.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:checked,.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,.uk-tile-primary:not(.uk-preserve-color) .uk-radio:checked,.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:checked,.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,.uk-tile-secondary:not(.uk-preserve-color) .uk-radio:checked{background-color:#fff;border-color:#fff}.uk-card-primary.uk-card-body .uk-checkbox:checked:focus,.uk-card-primary.uk-card-body .uk-checkbox:indeterminate:focus,.uk-card-primary.uk-card-body .uk-radio:checked:focus,.uk-card-primary>:not([class*=uk-card-media]) .uk-checkbox:checked:focus,.uk-card-primary>:not([class*=uk-card-media]) .uk-checkbox:indeterminate:focus,.uk-card-primary>:not([class*=uk-card-media]) .uk-radio:checked:focus,.uk-card-secondary.uk-card-body .uk-checkbox:checked:focus,.uk-card-secondary.uk-card-body .uk-checkbox:indeterminate:focus,.uk-card-secondary.uk-card-body .uk-radio:checked:focus,.uk-card-secondary>:not([class*=uk-card-media]) .uk-checkbox:checked:focus,.uk-card-secondary>:not([class*=uk-card-media]) .uk-checkbox:indeterminate:focus,.uk-card-secondary>:not([class*=uk-card-media]) .uk-radio:checked:focus,.uk-light .uk-checkbox:checked:focus,.uk-light .uk-checkbox:indeterminate:focus,.uk-light .uk-radio:checked:focus,.uk-offcanvas-bar .uk-checkbox:checked:focus,.uk-offcanvas-bar .uk-checkbox:indeterminate:focus,.uk-offcanvas-bar .uk-radio:checked:focus,.uk-overlay-primary .uk-checkbox:checked:focus,.uk-overlay-primary .uk-checkbox:indeterminate:focus,.uk-overlay-primary .uk-radio:checked:focus,.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:checked:focus,.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate:focus,.uk-section-primary:not(.uk-preserve-color) .uk-radio:checked:focus,.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:checked:focus,.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate:focus,.uk-section-secondary:not(.uk-preserve-color) .uk-radio:checked:focus,.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:checked:focus,.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate:focus,.uk-tile-primary:not(.uk-preserve-color) .uk-radio:checked:focus,.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:checked:focus,.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate:focus,.uk-tile-secondary:not(.uk-preserve-color) .uk-radio:checked:focus{background-color:#fff}.uk-card-primary.uk-card-body .uk-radio:checked,.uk-card-primary>:not([class*=uk-card-media]) .uk-radio:checked,.uk-card-secondary.uk-card-body .uk-radio:checked,.uk-card-secondary>:not([class*=uk-card-media]) .uk-radio:checked,.uk-light .uk-radio:checked,.uk-offcanvas-bar .uk-radio:checked,.uk-overlay-primary .uk-radio:checked,.uk-section-primary:not(.uk-preserve-color) .uk-radio:checked,.uk-section-secondary:not(.uk-preserve-color) .uk-radio:checked,.uk-tile-primary:not(.uk-preserve-color) .uk-radio:checked,.uk-tile-secondary:not(.uk-preserve-color) .uk-radio:checked{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23666%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E")}.uk-card-primary.uk-card-body .uk-checkbox:checked,.uk-card-primary>:not([class*=uk-card-media]) .uk-checkbox:checked,.uk-card-secondary.uk-card-body .uk-checkbox:checked,.uk-card-secondary>:not([class*=uk-card-media]) .uk-checkbox:checked,.uk-light .uk-checkbox:checked,.uk-offcanvas-bar .uk-checkbox:checked,.uk-overlay-primary .uk-checkbox:checked,.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:checked,.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:checked,.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:checked,.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:checked{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A")}.uk-card-primary.uk-card-body .uk-checkbox:indeterminate,.uk-card-primary>:not([class*=uk-card-media]) .uk-checkbox:indeterminate,.uk-card-secondary.uk-card-body .uk-checkbox:indeterminate,.uk-card-secondary>:not([class*=uk-card-media]) .uk-checkbox:indeterminate,.uk-light .uk-checkbox:indeterminate,.uk-offcanvas-bar .uk-checkbox:indeterminate,.uk-overlay-primary .uk-checkbox:indeterminate,.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E")}.uk-card-primary.uk-card-body .uk-form-label,.uk-card-primary>:not([class*=uk-card-media]) .uk-form-label,.uk-card-secondary.uk-card-body .uk-form-label,.uk-card-secondary>:not([class*=uk-card-media]) .uk-form-label,.uk-light .uk-form-label,.uk-offcanvas-bar .uk-form-label,.uk-overlay-primary .uk-form-label,.uk-section-primary:not(.uk-preserve-color) .uk-form-label,.uk-section-secondary:not(.uk-preserve-color) .uk-form-label,.uk-tile-primary:not(.uk-preserve-color) .uk-form-label,.uk-tile-secondary:not(.uk-preserve-color) .uk-form-label{color:#fff}.uk-card-primary.uk-card-body .uk-form-icon,.uk-card-primary>:not([class*=uk-card-media]) .uk-form-icon,.uk-card-secondary.uk-card-body .uk-form-icon,.uk-card-secondary>:not([class*=uk-card-media]) .uk-form-icon,.uk-light .uk-form-icon,.uk-offcanvas-bar .uk-form-icon,.uk-overlay-primary .uk-form-icon,.uk-section-primary:not(.uk-preserve-color) .uk-form-icon,.uk-section-secondary:not(.uk-preserve-color) .uk-form-icon,.uk-tile-primary:not(.uk-preserve-color) .uk-form-icon,.uk-tile-secondary:not(.uk-preserve-color) .uk-form-icon{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-form-icon:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-form-icon:hover,.uk-card-secondary.uk-card-body .uk-form-icon:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-form-icon:hover,.uk-light .uk-form-icon:hover,.uk-offcanvas-bar .uk-form-icon:hover,.uk-overlay-primary .uk-form-icon:hover,.uk-section-primary:not(.uk-preserve-color) .uk-form-icon:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-form-icon:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-form-icon:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-form-icon:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-button-default,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-default,.uk-card-secondary.uk-card-body .uk-button-default,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-default,.uk-light .uk-button-default,.uk-offcanvas-bar .uk-button-default,.uk-overlay-primary .uk-button-default,.uk-section-primary:not(.uk-preserve-color) .uk-button-default,.uk-section-secondary:not(.uk-preserve-color) .uk-button-default,.uk-tile-primary:not(.uk-preserve-color) .uk-button-default,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default{background-color:transparent;color:#fff;border-color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-button-default:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-default:hover,.uk-card-secondary.uk-card-body .uk-button-default:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-default:hover,.uk-light .uk-button-default:hover,.uk-offcanvas-bar .uk-button-default:hover,.uk-overlay-primary .uk-button-default:hover,.uk-section-primary:not(.uk-preserve-color) .uk-button-default:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-button-default:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-button-default:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:hover{background-color:transparent;color:#fff;border-color:#fff}.uk-card-primary.uk-card-body .uk-button-default.uk-active,.uk-card-primary.uk-card-body .uk-button-default:active,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-default.uk-active,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-default:active,.uk-card-secondary.uk-card-body .uk-button-default.uk-active,.uk-card-secondary.uk-card-body .uk-button-default:active,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-default.uk-active,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-default:active,.uk-light .uk-button-default.uk-active,.uk-light .uk-button-default:active,.uk-offcanvas-bar .uk-button-default.uk-active,.uk-offcanvas-bar .uk-button-default:active,.uk-overlay-primary .uk-button-default.uk-active,.uk-overlay-primary .uk-button-default:active,.uk-section-primary:not(.uk-preserve-color) .uk-button-default.uk-active,.uk-section-primary:not(.uk-preserve-color) .uk-button-default:active,.uk-section-secondary:not(.uk-preserve-color) .uk-button-default.uk-active,.uk-section-secondary:not(.uk-preserve-color) .uk-button-default:active,.uk-tile-primary:not(.uk-preserve-color) .uk-button-default.uk-active,.uk-tile-primary:not(.uk-preserve-color) .uk-button-default:active,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default.uk-active,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:active{background-color:transparent;color:#fff;border-color:#fff}.uk-card-primary.uk-card-body .uk-button-primary,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-primary,.uk-card-secondary.uk-card-body .uk-button-primary,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-primary,.uk-light .uk-button-primary,.uk-offcanvas-bar .uk-button-primary,.uk-overlay-primary .uk-button-primary,.uk-section-primary:not(.uk-preserve-color) .uk-button-primary,.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary,.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary{background-color:#fff;color:#666}.uk-card-primary.uk-card-body .uk-button-primary:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-primary:hover,.uk-card-secondary.uk-card-body .uk-button-primary:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-primary:hover,.uk-light .uk-button-primary:hover,.uk-offcanvas-bar .uk-button-primary:hover,.uk-overlay-primary .uk-button-primary:hover,.uk-section-primary:not(.uk-preserve-color) .uk-button-primary:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary:hover{background-color:#f2f2f2;color:#666}.uk-card-primary.uk-card-body .uk-button-primary.uk-active,.uk-card-primary.uk-card-body .uk-button-primary:active,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-primary.uk-active,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-primary:active,.uk-card-secondary.uk-card-body .uk-button-primary.uk-active,.uk-card-secondary.uk-card-body .uk-button-primary:active,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-primary.uk-active,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-primary:active,.uk-light .uk-button-primary.uk-active,.uk-light .uk-button-primary:active,.uk-offcanvas-bar .uk-button-primary.uk-active,.uk-offcanvas-bar .uk-button-primary:active,.uk-overlay-primary .uk-button-primary.uk-active,.uk-overlay-primary .uk-button-primary:active,.uk-section-primary:not(.uk-preserve-color) .uk-button-primary.uk-active,.uk-section-primary:not(.uk-preserve-color) .uk-button-primary:active,.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary.uk-active,.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary:active,.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary.uk-active,.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary:active,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary.uk-active,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary:active{background-color:#e6e6e6;color:#666}.uk-card-primary.uk-card-body .uk-button-secondary,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-secondary,.uk-card-secondary.uk-card-body .uk-button-secondary,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-secondary,.uk-light .uk-button-secondary,.uk-offcanvas-bar .uk-button-secondary,.uk-overlay-primary .uk-button-secondary,.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary,.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary,.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary{background-color:#fff;color:#666}.uk-card-primary.uk-card-body .uk-button-secondary:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-secondary:hover,.uk-card-secondary.uk-card-body .uk-button-secondary:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-secondary:hover,.uk-light .uk-button-secondary:hover,.uk-offcanvas-bar .uk-button-secondary:hover,.uk-overlay-primary .uk-button-secondary:hover,.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary:hover{background-color:#f2f2f2;color:#666}.uk-card-primary.uk-card-body .uk-button-secondary.uk-active,.uk-card-primary.uk-card-body .uk-button-secondary:active,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-secondary.uk-active,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-secondary:active,.uk-card-secondary.uk-card-body .uk-button-secondary.uk-active,.uk-card-secondary.uk-card-body .uk-button-secondary:active,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-secondary.uk-active,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-secondary:active,.uk-light .uk-button-secondary.uk-active,.uk-light .uk-button-secondary:active,.uk-offcanvas-bar .uk-button-secondary.uk-active,.uk-offcanvas-bar .uk-button-secondary:active,.uk-overlay-primary .uk-button-secondary.uk-active,.uk-overlay-primary .uk-button-secondary:active,.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary.uk-active,.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary:active,.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary.uk-active,.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary:active,.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary.uk-active,.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary:active,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary.uk-active,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary:active{background-color:#e6e6e6;color:#666}.uk-card-primary.uk-card-body .uk-button-text,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-text,.uk-card-secondary.uk-card-body .uk-button-text,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-text,.uk-light .uk-button-text,.uk-offcanvas-bar .uk-button-text,.uk-overlay-primary .uk-button-text,.uk-section-primary:not(.uk-preserve-color) .uk-button-text,.uk-section-secondary:not(.uk-preserve-color) .uk-button-text,.uk-tile-primary:not(.uk-preserve-color) .uk-button-text,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-text{color:#fff}.uk-card-primary.uk-card-body .uk-button-text::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-text::before,.uk-card-secondary.uk-card-body .uk-button-text::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-text::before,.uk-light .uk-button-text::before,.uk-offcanvas-bar .uk-button-text::before,.uk-overlay-primary .uk-button-text::before,.uk-section-primary:not(.uk-preserve-color) .uk-button-text::before,.uk-section-secondary:not(.uk-preserve-color) .uk-button-text::before,.uk-tile-primary:not(.uk-preserve-color) .uk-button-text::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-text::before{border-bottom-color:#fff}.uk-card-primary.uk-card-body .uk-button-text:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-text:hover,.uk-card-secondary.uk-card-body .uk-button-text:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-text:hover,.uk-light .uk-button-text:hover,.uk-offcanvas-bar .uk-button-text:hover,.uk-overlay-primary .uk-button-text:hover,.uk-section-primary:not(.uk-preserve-color) .uk-button-text:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-button-text:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-button-text:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-text:hover{color:#fff}.uk-card-primary.uk-card-body .uk-button-text:disabled,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-text:disabled,.uk-card-secondary.uk-card-body .uk-button-text:disabled,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-text:disabled,.uk-light .uk-button-text:disabled,.uk-offcanvas-bar .uk-button-text:disabled,.uk-overlay-primary .uk-button-text:disabled,.uk-section-primary:not(.uk-preserve-color) .uk-button-text:disabled,.uk-section-secondary:not(.uk-preserve-color) .uk-button-text:disabled,.uk-tile-primary:not(.uk-preserve-color) .uk-button-text:disabled,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-text:disabled{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-button-link,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-link,.uk-card-secondary.uk-card-body .uk-button-link,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-link,.uk-light .uk-button-link,.uk-offcanvas-bar .uk-button-link,.uk-overlay-primary .uk-button-link,.uk-section-primary:not(.uk-preserve-color) .uk-button-link,.uk-section-secondary:not(.uk-preserve-color) .uk-button-link,.uk-tile-primary:not(.uk-preserve-color) .uk-button-link,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-link{color:#fff}.uk-card-primary.uk-card-body .uk-button-link:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-button-link:hover,.uk-card-secondary.uk-card-body .uk-button-link:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-button-link:hover,.uk-light .uk-button-link:hover,.uk-offcanvas-bar .uk-button-link:hover,.uk-overlay-primary .uk-button-link:hover,.uk-section-primary:not(.uk-preserve-color) .uk-button-link:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-button-link:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-button-link:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-button-link:hover{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body.uk-card-badge,.uk-card-primary>:not([class*=uk-card-media]).uk-card-badge,.uk-card-secondary.uk-card-body.uk-card-badge,.uk-card-secondary>:not([class*=uk-card-media]).uk-card-badge,.uk-light.uk-card-badge,.uk-offcanvas-bar.uk-card-badge,.uk-overlay-primary.uk-card-badge,.uk-section-primary:not(.uk-preserve-color).uk-card-badge,.uk-section-secondary:not(.uk-preserve-color).uk-card-badge,.uk-tile-primary:not(.uk-preserve-color).uk-card-badge,.uk-tile-secondary:not(.uk-preserve-color).uk-card-badge{background-color:#fff;color:#666}.uk-card-primary.uk-card-body .uk-close,.uk-card-primary>:not([class*=uk-card-media]) .uk-close,.uk-card-secondary.uk-card-body .uk-close,.uk-card-secondary>:not([class*=uk-card-media]) .uk-close,.uk-light .uk-close,.uk-offcanvas-bar .uk-close,.uk-overlay-primary .uk-close,.uk-section-primary:not(.uk-preserve-color) .uk-close,.uk-section-secondary:not(.uk-preserve-color) .uk-close,.uk-tile-primary:not(.uk-preserve-color) .uk-close,.uk-tile-secondary:not(.uk-preserve-color) .uk-close{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-close:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-close:hover,.uk-card-secondary.uk-card-body .uk-close:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-close:hover,.uk-light .uk-close:hover,.uk-offcanvas-bar .uk-close:hover,.uk-overlay-primary .uk-close:hover,.uk-section-primary:not(.uk-preserve-color) .uk-close:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-close:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-close:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-close:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-totop,.uk-card-primary>:not([class*=uk-card-media]) .uk-totop,.uk-card-secondary.uk-card-body .uk-totop,.uk-card-secondary>:not([class*=uk-card-media]) .uk-totop,.uk-light .uk-totop,.uk-offcanvas-bar .uk-totop,.uk-overlay-primary .uk-totop,.uk-section-primary:not(.uk-preserve-color) .uk-totop,.uk-section-secondary:not(.uk-preserve-color) .uk-totop,.uk-tile-primary:not(.uk-preserve-color) .uk-totop,.uk-tile-secondary:not(.uk-preserve-color) .uk-totop{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-totop:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-totop:hover,.uk-card-secondary.uk-card-body .uk-totop:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-totop:hover,.uk-light .uk-totop:hover,.uk-offcanvas-bar .uk-totop:hover,.uk-overlay-primary .uk-totop:hover,.uk-section-primary:not(.uk-preserve-color) .uk-totop:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-totop:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-totop:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-totop:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-totop:active,.uk-card-primary>:not([class*=uk-card-media]) .uk-totop:active,.uk-card-secondary.uk-card-body .uk-totop:active,.uk-card-secondary>:not([class*=uk-card-media]) .uk-totop:active,.uk-light .uk-totop:active,.uk-offcanvas-bar .uk-totop:active,.uk-overlay-primary .uk-totop:active,.uk-section-primary:not(.uk-preserve-color) .uk-totop:active,.uk-section-secondary:not(.uk-preserve-color) .uk-totop:active,.uk-tile-primary:not(.uk-preserve-color) .uk-totop:active,.uk-tile-secondary:not(.uk-preserve-color) .uk-totop:active{color:#fff}.uk-card-primary.uk-card-body .uk-marker,.uk-card-primary>:not([class*=uk-card-media]) .uk-marker,.uk-card-secondary.uk-card-body .uk-marker,.uk-card-secondary>:not([class*=uk-card-media]) .uk-marker,.uk-light .uk-marker,.uk-offcanvas-bar .uk-marker,.uk-overlay-primary .uk-marker,.uk-section-primary:not(.uk-preserve-color) .uk-marker,.uk-section-secondary:not(.uk-preserve-color) .uk-marker,.uk-tile-primary:not(.uk-preserve-color) .uk-marker,.uk-tile-secondary:not(.uk-preserve-color) .uk-marker{background:#f8f8f8;color:#666}.uk-card-primary.uk-card-body .uk-marker:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-marker:hover,.uk-card-secondary.uk-card-body .uk-marker:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-marker:hover,.uk-light .uk-marker:hover,.uk-offcanvas-bar .uk-marker:hover,.uk-overlay-primary .uk-marker:hover,.uk-section-primary:not(.uk-preserve-color) .uk-marker:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-marker:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-marker:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-marker:hover{color:#666}.uk-card-primary.uk-card-body .uk-badge,.uk-card-primary>:not([class*=uk-card-media]) .uk-badge,.uk-card-secondary.uk-card-body .uk-badge,.uk-card-secondary>:not([class*=uk-card-media]) .uk-badge,.uk-light .uk-badge,.uk-offcanvas-bar .uk-badge,.uk-overlay-primary .uk-badge,.uk-section-primary:not(.uk-preserve-color) .uk-badge,.uk-section-secondary:not(.uk-preserve-color) .uk-badge,.uk-tile-primary:not(.uk-preserve-color) .uk-badge,.uk-tile-secondary:not(.uk-preserve-color) .uk-badge{background-color:#fff;color:#666!important}.uk-card-primary.uk-card-body .uk-label,.uk-card-primary>:not([class*=uk-card-media]) .uk-label,.uk-card-secondary.uk-card-body .uk-label,.uk-card-secondary>:not([class*=uk-card-media]) .uk-label,.uk-light .uk-label,.uk-offcanvas-bar .uk-label,.uk-overlay-primary .uk-label,.uk-section-primary:not(.uk-preserve-color) .uk-label,.uk-section-secondary:not(.uk-preserve-color) .uk-label,.uk-tile-primary:not(.uk-preserve-color) .uk-label,.uk-tile-secondary:not(.uk-preserve-color) .uk-label{background-color:#fff;color:#666}.uk-card-primary.uk-card-body .uk-article-meta,.uk-card-primary>:not([class*=uk-card-media]) .uk-article-meta,.uk-card-secondary.uk-card-body .uk-article-meta,.uk-card-secondary>:not([class*=uk-card-media]) .uk-article-meta,.uk-light .uk-article-meta,.uk-offcanvas-bar .uk-article-meta,.uk-overlay-primary .uk-article-meta,.uk-section-primary:not(.uk-preserve-color) .uk-article-meta,.uk-section-secondary:not(.uk-preserve-color) .uk-article-meta,.uk-tile-primary:not(.uk-preserve-color) .uk-article-meta,.uk-tile-secondary:not(.uk-preserve-color) .uk-article-meta{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-search-input,.uk-card-primary>:not([class*=uk-card-media]) .uk-search-input,.uk-card-secondary.uk-card-body .uk-search-input,.uk-card-secondary>:not([class*=uk-card-media]) .uk-search-input,.uk-light .uk-search-input,.uk-offcanvas-bar .uk-search-input,.uk-overlay-primary .uk-search-input,.uk-section-primary:not(.uk-preserve-color) .uk-search-input,.uk-section-secondary:not(.uk-preserve-color) .uk-search-input,.uk-tile-primary:not(.uk-preserve-color) .uk-search-input,.uk-tile-secondary:not(.uk-preserve-color) .uk-search-input{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-search-input::placeholder,.uk-card-primary>:not([class*=uk-card-media]) .uk-search-input::placeholder,.uk-card-secondary.uk-card-body .uk-search-input::placeholder,.uk-card-secondary>:not([class*=uk-card-media]) .uk-search-input::placeholder,.uk-light .uk-search-input::placeholder,.uk-offcanvas-bar .uk-search-input::placeholder,.uk-overlay-primary .uk-search-input::placeholder,.uk-section-primary:not(.uk-preserve-color) .uk-search-input::placeholder,.uk-section-secondary:not(.uk-preserve-color) .uk-search-input::placeholder,.uk-tile-primary:not(.uk-preserve-color) .uk-search-input::placeholder,.uk-tile-secondary:not(.uk-preserve-color) .uk-search-input::placeholder{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-search .uk-search-icon,.uk-card-primary>:not([class*=uk-card-media]) .uk-search .uk-search-icon,.uk-card-secondary.uk-card-body .uk-search .uk-search-icon,.uk-card-secondary>:not([class*=uk-card-media]) .uk-search .uk-search-icon,.uk-light .uk-search .uk-search-icon,.uk-offcanvas-bar .uk-search .uk-search-icon,.uk-overlay-primary .uk-search .uk-search-icon,.uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,.uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon,.uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon,.uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-search .uk-search-icon:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-search .uk-search-icon:hover,.uk-card-secondary.uk-card-body .uk-search .uk-search-icon:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-search .uk-search-icon:hover,.uk-light .uk-search .uk-search-icon:hover,.uk-offcanvas-bar .uk-search .uk-search-icon:hover,.uk-overlay-primary .uk-search .uk-search-icon:hover,.uk-section-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-search .uk-search-icon:hover{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-search-default .uk-search-input,.uk-card-primary>:not([class*=uk-card-media]) .uk-search-default .uk-search-input,.uk-card-secondary.uk-card-body .uk-search-default .uk-search-input,.uk-card-secondary>:not([class*=uk-card-media]) .uk-search-default .uk-search-input,.uk-light .uk-search-default .uk-search-input,.uk-offcanvas-bar .uk-search-default .uk-search-input,.uk-overlay-primary .uk-search-default .uk-search-input,.uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,.uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input,.uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input,.uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input{background-color:transparent;border-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-search-default .uk-search-input:focus,.uk-card-primary>:not([class*=uk-card-media]) .uk-search-default .uk-search-input:focus,.uk-card-secondary.uk-card-body .uk-search-default .uk-search-input:focus,.uk-card-secondary>:not([class*=uk-card-media]) .uk-search-default .uk-search-input:focus,.uk-light .uk-search-default .uk-search-input:focus,.uk-offcanvas-bar .uk-search-default .uk-search-input:focus,.uk-overlay-primary .uk-search-default .uk-search-input:focus,.uk-section-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,.uk-section-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,.uk-tile-primary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus,.uk-tile-secondary:not(.uk-preserve-color) .uk-search-default .uk-search-input:focus{background-color:rgba(0,0,0,.05)}.uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input,.uk-card-primary>:not([class*=uk-card-media]) .uk-search-navbar .uk-search-input,.uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input,.uk-card-secondary>:not([class*=uk-card-media]) .uk-search-navbar .uk-search-input,.uk-light .uk-search-navbar .uk-search-input,.uk-offcanvas-bar .uk-search-navbar .uk-search-input,.uk-overlay-primary .uk-search-navbar .uk-search-input,.uk-section-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,.uk-section-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,.uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input,.uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input{background-color:transparent;border-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-search-navbar .uk-search-input:focus,.uk-card-primary>:not([class*=uk-card-media]) .uk-search-navbar .uk-search-input:focus,.uk-card-secondary.uk-card-body .uk-search-navbar .uk-search-input:focus,.uk-card-secondary>:not([class*=uk-card-media]) .uk-search-navbar .uk-search-input:focus,.uk-light .uk-search-navbar .uk-search-input:focus,.uk-offcanvas-bar .uk-search-navbar .uk-search-input:focus,.uk-overlay-primary .uk-search-navbar .uk-search-input:focus,.uk-section-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,.uk-section-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,.uk-tile-primary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus,.uk-tile-secondary:not(.uk-preserve-color) .uk-search-navbar .uk-search-input:focus{background-color:rgba(0,0,0,.05)}.uk-card-primary.uk-card-body .uk-search-medium .uk-search-input,.uk-card-primary>:not([class*=uk-card-media]) .uk-search-medium .uk-search-input,.uk-card-secondary.uk-card-body .uk-search-medium .uk-search-input,.uk-card-secondary>:not([class*=uk-card-media]) .uk-search-medium .uk-search-input,.uk-light .uk-search-medium .uk-search-input,.uk-offcanvas-bar .uk-search-medium .uk-search-input,.uk-overlay-primary .uk-search-medium .uk-search-input,.uk-section-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,.uk-section-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,.uk-tile-primary:not(.uk-preserve-color) .uk-search-medium .uk-search-input,.uk-tile-secondary:not(.uk-preserve-color) .uk-search-medium .uk-search-input{background-color:transparent}.uk-card-primary.uk-card-body .uk-search-large .uk-search-input,.uk-card-primary>:not([class*=uk-card-media]) .uk-search-large .uk-search-input,.uk-card-secondary.uk-card-body .uk-search-large .uk-search-input,.uk-card-secondary>:not([class*=uk-card-media]) .uk-search-large .uk-search-input,.uk-light .uk-search-large .uk-search-input,.uk-offcanvas-bar .uk-search-large .uk-search-input,.uk-overlay-primary .uk-search-large .uk-search-input,.uk-section-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,.uk-section-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input,.uk-tile-primary:not(.uk-preserve-color) .uk-search-large .uk-search-input,.uk-tile-secondary:not(.uk-preserve-color) .uk-search-large .uk-search-input{background-color:transparent}.uk-card-primary.uk-card-body .uk-search-toggle,.uk-card-primary>:not([class*=uk-card-media]) .uk-search-toggle,.uk-card-secondary.uk-card-body .uk-search-toggle,.uk-card-secondary>:not([class*=uk-card-media]) .uk-search-toggle,.uk-light .uk-search-toggle,.uk-offcanvas-bar .uk-search-toggle,.uk-overlay-primary .uk-search-toggle,.uk-section-primary:not(.uk-preserve-color) .uk-search-toggle,.uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle,.uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle,.uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-search-toggle:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-search-toggle:hover,.uk-card-secondary.uk-card-body .uk-search-toggle:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-search-toggle:hover,.uk-light .uk-search-toggle:hover,.uk-offcanvas-bar .uk-search-toggle:hover,.uk-overlay-primary .uk-search-toggle:hover,.uk-section-primary:not(.uk-preserve-color) .uk-search-toggle:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-search-toggle:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-search-toggle:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-search-toggle:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-accordion-title,.uk-card-primary>:not([class*=uk-card-media]) .uk-accordion-title,.uk-card-secondary.uk-card-body .uk-accordion-title,.uk-card-secondary>:not([class*=uk-card-media]) .uk-accordion-title,.uk-light .uk-accordion-title,.uk-offcanvas-bar .uk-accordion-title,.uk-overlay-primary .uk-accordion-title,.uk-section-primary:not(.uk-preserve-color) .uk-accordion-title,.uk-section-secondary:not(.uk-preserve-color) .uk-accordion-title,.uk-tile-primary:not(.uk-preserve-color) .uk-accordion-title,.uk-tile-secondary:not(.uk-preserve-color) .uk-accordion-title{color:#fff}.uk-card-primary.uk-card-body .uk-accordion-title:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-accordion-title:hover,.uk-card-secondary.uk-card-body .uk-accordion-title:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-accordion-title:hover,.uk-light .uk-accordion-title:hover,.uk-offcanvas-bar .uk-accordion-title:hover,.uk-overlay-primary .uk-accordion-title:hover,.uk-section-primary:not(.uk-preserve-color) .uk-accordion-title:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-accordion-title:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-accordion-title:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-accordion-title:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-thumbnav>*>::after,.uk-card-primary>:not([class*=uk-card-media]) .uk-thumbnav>*>::after,.uk-card-secondary.uk-card-body .uk-thumbnav>*>::after,.uk-card-secondary>:not([class*=uk-card-media]) .uk-thumbnav>*>::after,.uk-light .uk-thumbnav>*>::after,.uk-offcanvas-bar .uk-thumbnav>*>::after,.uk-overlay-primary .uk-thumbnav>*>::after,.uk-section-primary:not(.uk-preserve-color) .uk-thumbnav>*>::after,.uk-section-secondary:not(.uk-preserve-color) .uk-thumbnav>*>::after,.uk-tile-primary:not(.uk-preserve-color) .uk-thumbnav>*>::after,.uk-tile-secondary:not(.uk-preserve-color) .uk-thumbnav>*>::after{background-image:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.4))}.uk-card-primary.uk-card-body .uk-iconnav>*>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-iconnav>*>a,.uk-card-secondary.uk-card-body .uk-iconnav>*>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-iconnav>*>a,.uk-light .uk-iconnav>*>a,.uk-offcanvas-bar .uk-iconnav>*>a,.uk-overlay-primary .uk-iconnav>*>a,.uk-section-primary:not(.uk-preserve-color) .uk-iconnav>*>a,.uk-section-secondary:not(.uk-preserve-color) .uk-iconnav>*>a,.uk-tile-primary:not(.uk-preserve-color) .uk-iconnav>*>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav>*>a{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-iconnav>*>a:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-iconnav>*>a:hover,.uk-card-secondary.uk-card-body .uk-iconnav>*>a:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-iconnav>*>a:hover,.uk-light .uk-iconnav>*>a:hover,.uk-offcanvas-bar .uk-iconnav>*>a:hover,.uk-overlay-primary .uk-iconnav>*>a:hover,.uk-section-primary:not(.uk-preserve-color) .uk-iconnav>*>a:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-iconnav>*>a:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-iconnav>*>a:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav>*>a:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-iconnav>.uk-active>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-iconnav>.uk-active>a,.uk-card-secondary.uk-card-body .uk-iconnav>.uk-active>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-iconnav>.uk-active>a,.uk-light .uk-iconnav>.uk-active>a,.uk-offcanvas-bar .uk-iconnav>.uk-active>a,.uk-overlay-primary .uk-iconnav>.uk-active>a,.uk-section-primary:not(.uk-preserve-color) .uk-iconnav>.uk-active>a,.uk-section-secondary:not(.uk-preserve-color) .uk-iconnav>.uk-active>a,.uk-tile-primary:not(.uk-preserve-color) .uk-iconnav>.uk-active>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav>.uk-active>a{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-grid-divider>:not(.uk-first-column)::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-grid-divider>:not(.uk-first-column)::before,.uk-card-secondary.uk-card-body .uk-grid-divider>:not(.uk-first-column)::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-grid-divider>:not(.uk-first-column)::before,.uk-light .uk-grid-divider>:not(.uk-first-column)::before,.uk-offcanvas-bar .uk-grid-divider>:not(.uk-first-column)::before,.uk-overlay-primary .uk-grid-divider>:not(.uk-first-column)::before,.uk-section-primary:not(.uk-preserve-color) .uk-grid-divider>:not(.uk-first-column)::before,.uk-section-secondary:not(.uk-preserve-color) .uk-grid-divider>:not(.uk-first-column)::before,.uk-tile-primary:not(.uk-preserve-color) .uk-grid-divider>:not(.uk-first-column)::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-grid-divider>:not(.uk-first-column)::before{border-left-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-grid-divider.uk-grid-stack>.uk-grid-margin::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-grid-divider.uk-grid-stack>.uk-grid-margin::before,.uk-card-secondary.uk-card-body .uk-grid-divider.uk-grid-stack>.uk-grid-margin::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-grid-divider.uk-grid-stack>.uk-grid-margin::before,.uk-light .uk-grid-divider.uk-grid-stack>.uk-grid-margin::before,.uk-offcanvas-bar .uk-grid-divider.uk-grid-stack>.uk-grid-margin::before,.uk-overlay-primary .uk-grid-divider.uk-grid-stack>.uk-grid-margin::before,.uk-section-primary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack>.uk-grid-margin::before,.uk-section-secondary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack>.uk-grid-margin::before,.uk-tile-primary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack>.uk-grid-margin::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-grid-divider.uk-grid-stack>.uk-grid-margin::before{border-top-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-nav-default>li>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-default>li>a,.uk-card-secondary.uk-card-body .uk-nav-default>li>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-default>li>a,.uk-light .uk-nav-default>li>a,.uk-offcanvas-bar .uk-nav-default>li>a,.uk-overlay-primary .uk-nav-default>li>a,.uk-section-primary:not(.uk-preserve-color) .uk-nav-default>li>a,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default>li>a,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default>li>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default>li>a{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-nav-default>li>a:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-default>li>a:hover,.uk-card-secondary.uk-card-body .uk-nav-default>li>a:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-default>li>a:hover,.uk-light .uk-nav-default>li>a:hover,.uk-offcanvas-bar .uk-nav-default>li>a:hover,.uk-overlay-primary .uk-nav-default>li>a:hover,.uk-section-primary:not(.uk-preserve-color) .uk-nav-default>li>a:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default>li>a:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default>li>a:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default>li>a:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-nav-default>li.uk-active>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-default>li.uk-active>a,.uk-card-secondary.uk-card-body .uk-nav-default>li.uk-active>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-default>li.uk-active>a,.uk-light .uk-nav-default>li.uk-active>a,.uk-offcanvas-bar .uk-nav-default>li.uk-active>a,.uk-overlay-primary .uk-nav-default>li.uk-active>a,.uk-section-primary:not(.uk-preserve-color) .uk-nav-default>li.uk-active>a,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default>li.uk-active>a,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default>li.uk-active>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default>li.uk-active>a{color:#fff}.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-header,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-default .uk-nav-header,.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-header,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-default .uk-nav-header,.uk-light .uk-nav-default .uk-nav-header,.uk-offcanvas-bar .uk-nav-default .uk-nav-header,.uk-overlay-primary .uk-nav-default .uk-nav-header,.uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header{color:#fff}.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-divider,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-default .uk-nav-divider,.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-divider,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-default .uk-nav-divider,.uk-light .uk-nav-default .uk-nav-divider,.uk-offcanvas-bar .uk-nav-default .uk-nav-divider,.uk-overlay-primary .uk-nav-default .uk-nav-divider,.uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-divider,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-divider,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-divider,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-divider{border-top-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-sub a,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-default .uk-nav-sub a,.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-sub a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-default .uk-nav-sub a,.uk-light .uk-nav-default .uk-nav-sub a,.uk-offcanvas-bar .uk-nav-default .uk-nav-sub a,.uk-overlay-primary .uk-nav-default .uk-nav-sub a,.uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-sub a:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-default .uk-nav-sub a:hover,.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-sub a:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-default .uk-nav-sub a:hover,.uk-light .uk-nav-default .uk-nav-sub a:hover,.uk-offcanvas-bar .uk-nav-default .uk-nav-sub a:hover,.uk-overlay-primary .uk-nav-default .uk-nav-sub a:hover,.uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub a:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-sub li.uk-active>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-default .uk-nav-sub li.uk-active>a,.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-sub li.uk-active>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-default .uk-nav-sub li.uk-active>a,.uk-light .uk-nav-default .uk-nav-sub li.uk-active>a,.uk-offcanvas-bar .uk-nav-default .uk-nav-sub li.uk-active>a,.uk-overlay-primary .uk-nav-default .uk-nav-sub li.uk-active>a,.uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub li.uk-active>a,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub li.uk-active>a,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub li.uk-active>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-sub li.uk-active>a{color:#fff}.uk-card-primary.uk-card-body .uk-nav-primary>li>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-primary>li>a,.uk-card-secondary.uk-card-body .uk-nav-primary>li>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-primary>li>a,.uk-light .uk-nav-primary>li>a,.uk-offcanvas-bar .uk-nav-primary>li>a,.uk-overlay-primary .uk-nav-primary>li>a,.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary>li>a,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary>li>a,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary>li>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary>li>a{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-nav-primary>li>a:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-primary>li>a:hover,.uk-card-secondary.uk-card-body .uk-nav-primary>li>a:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-primary>li>a:hover,.uk-light .uk-nav-primary>li>a:hover,.uk-offcanvas-bar .uk-nav-primary>li>a:hover,.uk-overlay-primary .uk-nav-primary>li>a:hover,.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary>li>a:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary>li>a:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary>li>a:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary>li>a:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-nav-primary>li.uk-active>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-primary>li.uk-active>a,.uk-card-secondary.uk-card-body .uk-nav-primary>li.uk-active>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-primary>li.uk-active>a,.uk-light .uk-nav-primary>li.uk-active>a,.uk-offcanvas-bar .uk-nav-primary>li.uk-active>a,.uk-overlay-primary .uk-nav-primary>li.uk-active>a,.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary>li.uk-active>a,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary>li.uk-active>a,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary>li.uk-active>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary>li.uk-active>a{color:#fff}.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-header,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-primary .uk-nav-header,.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-header,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-primary .uk-nav-header,.uk-light .uk-nav-primary .uk-nav-header,.uk-offcanvas-bar .uk-nav-primary .uk-nav-header,.uk-overlay-primary .uk-nav-primary .uk-nav-header,.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header{color:#fff}.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-divider,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-primary .uk-nav-divider,.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-divider,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-primary .uk-nav-divider,.uk-light .uk-nav-primary .uk-nav-divider,.uk-offcanvas-bar .uk-nav-primary .uk-nav-divider,.uk-overlay-primary .uk-nav-primary .uk-nav-divider,.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-divider,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-divider,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-divider,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-divider{border-top-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-sub a,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-primary .uk-nav-sub a,.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-sub a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-primary .uk-nav-sub a,.uk-light .uk-nav-primary .uk-nav-sub a,.uk-offcanvas-bar .uk-nav-primary .uk-nav-sub a,.uk-overlay-primary .uk-nav-primary .uk-nav-sub a,.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-sub a:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-primary .uk-nav-sub a:hover,.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-sub a:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-primary .uk-nav-sub a:hover,.uk-light .uk-nav-primary .uk-nav-sub a:hover,.uk-offcanvas-bar .uk-nav-primary .uk-nav-sub a:hover,.uk-overlay-primary .uk-nav-primary .uk-nav-sub a:hover,.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub a:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-sub li.uk-active>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-primary .uk-nav-sub li.uk-active>a,.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-sub li.uk-active>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-primary .uk-nav-sub li.uk-active>a,.uk-light .uk-nav-primary .uk-nav-sub li.uk-active>a,.uk-offcanvas-bar .uk-nav-primary .uk-nav-sub li.uk-active>a,.uk-overlay-primary .uk-nav-primary .uk-nav-sub li.uk-active>a,.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub li.uk-active>a,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub li.uk-active>a,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub li.uk-active>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-sub li.uk-active>a{color:#fff}.uk-card-primary.uk-card-body .uk-nav-secondary>li>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-secondary>li>a,.uk-card-secondary.uk-card-body .uk-nav-secondary>li>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-secondary>li>a,.uk-light .uk-nav-secondary>li>a,.uk-offcanvas-bar .uk-nav-secondary>li>a,.uk-overlay-primary .uk-nav-secondary>li>a,.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary>li>a,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary>li>a,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary>li>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary>li>a{color:#fff}.uk-card-primary.uk-card-body .uk-nav-secondary>li>a:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-secondary>li>a:hover,.uk-card-secondary.uk-card-body .uk-nav-secondary>li>a:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-secondary>li>a:hover,.uk-light .uk-nav-secondary>li>a:hover,.uk-offcanvas-bar .uk-nav-secondary>li>a:hover,.uk-overlay-primary .uk-nav-secondary>li>a:hover,.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary>li>a:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary>li>a:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary>li>a:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary>li>a:hover{color:#fff;background-color:rgba(255,255,255,.1)}.uk-card-primary.uk-card-body .uk-nav-secondary>li.uk-active>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-secondary>li.uk-active>a,.uk-card-secondary.uk-card-body .uk-nav-secondary>li.uk-active>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-secondary>li.uk-active>a,.uk-light .uk-nav-secondary>li.uk-active>a,.uk-offcanvas-bar .uk-nav-secondary>li.uk-active>a,.uk-overlay-primary .uk-nav-secondary>li.uk-active>a,.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary>li.uk-active>a,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary>li.uk-active>a,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary>li.uk-active>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary>li.uk-active>a{color:#fff;background-color:rgba(255,255,255,.1)}.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-subtitle,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-secondary .uk-nav-subtitle,.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-subtitle,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-secondary .uk-nav-subtitle,.uk-light .uk-nav-secondary .uk-nav-subtitle,.uk-offcanvas-bar .uk-nav-secondary .uk-nav-subtitle,.uk-overlay-primary .uk-nav-secondary .uk-nav-subtitle,.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-subtitle{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-nav-secondary>li>a:hover .uk-nav-subtitle,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-secondary>li>a:hover .uk-nav-subtitle,.uk-card-secondary.uk-card-body .uk-nav-secondary>li>a:hover .uk-nav-subtitle,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-secondary>li>a:hover .uk-nav-subtitle,.uk-light .uk-nav-secondary>li>a:hover .uk-nav-subtitle,.uk-offcanvas-bar .uk-nav-secondary>li>a:hover .uk-nav-subtitle,.uk-overlay-primary .uk-nav-secondary>li>a:hover .uk-nav-subtitle,.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary>li>a:hover .uk-nav-subtitle,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary>li>a:hover .uk-nav-subtitle,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary>li>a:hover .uk-nav-subtitle,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary>li>a:hover .uk-nav-subtitle{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-nav-secondary>li.uk-active>a .uk-nav-subtitle,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-secondary>li.uk-active>a .uk-nav-subtitle,.uk-card-secondary.uk-card-body .uk-nav-secondary>li.uk-active>a .uk-nav-subtitle,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-secondary>li.uk-active>a .uk-nav-subtitle,.uk-light .uk-nav-secondary>li.uk-active>a .uk-nav-subtitle,.uk-offcanvas-bar .uk-nav-secondary>li.uk-active>a .uk-nav-subtitle,.uk-overlay-primary .uk-nav-secondary>li.uk-active>a .uk-nav-subtitle,.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary>li.uk-active>a .uk-nav-subtitle,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary>li.uk-active>a .uk-nav-subtitle,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary>li.uk-active>a .uk-nav-subtitle,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary>li.uk-active>a .uk-nav-subtitle{color:#fff}.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-header,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-secondary .uk-nav-header,.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-header,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-secondary .uk-nav-header,.uk-light .uk-nav-secondary .uk-nav-header,.uk-offcanvas-bar .uk-nav-secondary .uk-nav-header,.uk-overlay-primary .uk-nav-secondary .uk-nav-header,.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-header{color:#fff}.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-divider,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-secondary .uk-nav-divider,.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-divider,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-secondary .uk-nav-divider,.uk-light .uk-nav-secondary .uk-nav-divider,.uk-offcanvas-bar .uk-nav-secondary .uk-nav-divider,.uk-overlay-primary .uk-nav-secondary .uk-nav-divider,.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-divider{border-top-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub a,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-secondary .uk-nav-sub a,.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-secondary .uk-nav-sub a,.uk-light .uk-nav-secondary .uk-nav-sub a,.uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub a,.uk-overlay-primary .uk-nav-secondary .uk-nav-sub a,.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub a:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-secondary .uk-nav-sub a:hover,.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub a:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-secondary .uk-nav-sub a:hover,.uk-light .uk-nav-secondary .uk-nav-sub a:hover,.uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub a:hover,.uk-overlay-primary .uk-nav-secondary .uk-nav-sub a:hover,.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub a:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-nav-secondary .uk-nav-sub li.uk-active>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-nav-secondary .uk-nav-sub li.uk-active>a,.uk-card-secondary.uk-card-body .uk-nav-secondary .uk-nav-sub li.uk-active>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav-secondary .uk-nav-sub li.uk-active>a,.uk-light .uk-nav-secondary .uk-nav-sub li.uk-active>a,.uk-offcanvas-bar .uk-nav-secondary .uk-nav-sub li.uk-active>a,.uk-overlay-primary .uk-nav-secondary .uk-nav-sub li.uk-active>a,.uk-section-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active>a,.uk-section-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active>a,.uk-tile-primary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-secondary .uk-nav-sub li.uk-active>a{color:#fff}.uk-card-primary.uk-card-body .uk-nav.uk-nav-divider>:not(.uk-nav-divider)+:not(.uk-nav-header,.uk-nav-divider),.uk-card-primary>:not([class*=uk-card-media]) .uk-nav.uk-nav-divider>:not(.uk-nav-divider)+:not(.uk-nav-header,.uk-nav-divider),.uk-card-secondary.uk-card-body .uk-nav.uk-nav-divider>:not(.uk-nav-divider)+:not(.uk-nav-header,.uk-nav-divider),.uk-card-secondary>:not([class*=uk-card-media]) .uk-nav.uk-nav-divider>:not(.uk-nav-divider)+:not(.uk-nav-header,.uk-nav-divider),.uk-light .uk-nav.uk-nav-divider>:not(.uk-nav-divider)+:not(.uk-nav-header,.uk-nav-divider),.uk-offcanvas-bar .uk-nav.uk-nav-divider>:not(.uk-nav-divider)+:not(.uk-nav-header,.uk-nav-divider),.uk-overlay-primary .uk-nav.uk-nav-divider>:not(.uk-nav-divider)+:not(.uk-nav-header,.uk-nav-divider),.uk-section-primary:not(.uk-preserve-color) .uk-nav.uk-nav-divider>:not(.uk-nav-divider)+:not(.uk-nav-header,.uk-nav-divider),.uk-section-secondary:not(.uk-preserve-color) .uk-nav.uk-nav-divider>:not(.uk-nav-divider)+:not(.uk-nav-header,.uk-nav-divider),.uk-tile-primary:not(.uk-preserve-color) .uk-nav.uk-nav-divider>:not(.uk-nav-divider)+:not(.uk-nav-header,.uk-nav-divider),.uk-tile-secondary:not(.uk-preserve-color) .uk-nav.uk-nav-divider>:not(.uk-nav-divider)+:not(.uk-nav-header,.uk-nav-divider){border-top-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-navbar-nav>li>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-navbar-nav>li>a,.uk-card-secondary.uk-card-body .uk-navbar-nav>li>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-navbar-nav>li>a,.uk-light .uk-navbar-nav>li>a,.uk-offcanvas-bar .uk-navbar-nav>li>a,.uk-overlay-primary .uk-navbar-nav>li>a,.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li>a,.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li>a,.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav>li>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav>li>a{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-navbar-nav>li:hover>a,.uk-card-primary.uk-card-body .uk-navbar-nav>li>a[aria-expanded=true],.uk-card-primary>:not([class*=uk-card-media]) .uk-navbar-nav>li:hover>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-navbar-nav>li>a[aria-expanded=true],.uk-card-secondary.uk-card-body .uk-navbar-nav>li:hover>a,.uk-card-secondary.uk-card-body .uk-navbar-nav>li>a[aria-expanded=true],.uk-card-secondary>:not([class*=uk-card-media]) .uk-navbar-nav>li:hover>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-navbar-nav>li>a[aria-expanded=true],.uk-light .uk-navbar-nav>li:hover>a,.uk-light .uk-navbar-nav>li>a[aria-expanded=true],.uk-offcanvas-bar .uk-navbar-nav>li:hover>a,.uk-offcanvas-bar .uk-navbar-nav>li>a[aria-expanded=true],.uk-overlay-primary .uk-navbar-nav>li:hover>a,.uk-overlay-primary .uk-navbar-nav>li>a[aria-expanded=true],.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li:hover>a,.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li>a[aria-expanded=true],.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li:hover>a,.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li>a[aria-expanded=true],.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav>li:hover>a,.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav>li>a[aria-expanded=true],.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav>li:hover>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav>li>a[aria-expanded=true]{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-navbar-nav>li>a:active,.uk-card-primary>:not([class*=uk-card-media]) .uk-navbar-nav>li>a:active,.uk-card-secondary.uk-card-body .uk-navbar-nav>li>a:active,.uk-card-secondary>:not([class*=uk-card-media]) .uk-navbar-nav>li>a:active,.uk-light .uk-navbar-nav>li>a:active,.uk-offcanvas-bar .uk-navbar-nav>li>a:active,.uk-overlay-primary .uk-navbar-nav>li>a:active,.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li>a:active,.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li>a:active,.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav>li>a:active,.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav>li>a:active{color:#fff}.uk-card-primary.uk-card-body .uk-navbar-nav>li.uk-active>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-navbar-nav>li.uk-active>a,.uk-card-secondary.uk-card-body .uk-navbar-nav>li.uk-active>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-navbar-nav>li.uk-active>a,.uk-light .uk-navbar-nav>li.uk-active>a,.uk-offcanvas-bar .uk-navbar-nav>li.uk-active>a,.uk-overlay-primary .uk-navbar-nav>li.uk-active>a,.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav>li.uk-active>a,.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav>li.uk-active>a,.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav>li.uk-active>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav>li.uk-active>a{color:#fff}.uk-card-primary.uk-card-body .uk-navbar-item,.uk-card-primary>:not([class*=uk-card-media]) .uk-navbar-item,.uk-card-secondary.uk-card-body .uk-navbar-item,.uk-card-secondary>:not([class*=uk-card-media]) .uk-navbar-item,.uk-light .uk-navbar-item,.uk-offcanvas-bar .uk-navbar-item,.uk-overlay-primary .uk-navbar-item,.uk-section-primary:not(.uk-preserve-color) .uk-navbar-item,.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-item,.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-item,.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-item{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-navbar-toggle,.uk-card-primary>:not([class*=uk-card-media]) .uk-navbar-toggle,.uk-card-secondary.uk-card-body .uk-navbar-toggle,.uk-card-secondary>:not([class*=uk-card-media]) .uk-navbar-toggle,.uk-light .uk-navbar-toggle,.uk-offcanvas-bar .uk-navbar-toggle,.uk-overlay-primary .uk-navbar-toggle,.uk-section-primary:not(.uk-preserve-color) .uk-navbar-toggle,.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-toggle,.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle,.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-navbar-toggle:hover,.uk-card-primary.uk-card-body .uk-navbar-toggle[aria-expanded=true],.uk-card-primary>:not([class*=uk-card-media]) .uk-navbar-toggle:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-navbar-toggle[aria-expanded=true],.uk-card-secondary.uk-card-body .uk-navbar-toggle:hover,.uk-card-secondary.uk-card-body .uk-navbar-toggle[aria-expanded=true],.uk-card-secondary>:not([class*=uk-card-media]) .uk-navbar-toggle:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-navbar-toggle[aria-expanded=true],.uk-light .uk-navbar-toggle:hover,.uk-light .uk-navbar-toggle[aria-expanded=true],.uk-offcanvas-bar .uk-navbar-toggle:hover,.uk-offcanvas-bar .uk-navbar-toggle[aria-expanded=true],.uk-overlay-primary .uk-navbar-toggle:hover,.uk-overlay-primary .uk-navbar-toggle[aria-expanded=true],.uk-section-primary:not(.uk-preserve-color) .uk-navbar-toggle:hover,.uk-section-primary:not(.uk-preserve-color) .uk-navbar-toggle[aria-expanded=true],.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-toggle:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-toggle[aria-expanded=true],.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle[aria-expanded=true],.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle[aria-expanded=true]{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-subnav>*>:first-child,.uk-card-primary>:not([class*=uk-card-media]) .uk-subnav>*>:first-child,.uk-card-secondary.uk-card-body .uk-subnav>*>:first-child,.uk-card-secondary>:not([class*=uk-card-media]) .uk-subnav>*>:first-child,.uk-light .uk-subnav>*>:first-child,.uk-offcanvas-bar .uk-subnav>*>:first-child,.uk-overlay-primary .uk-subnav>*>:first-child,.uk-section-primary:not(.uk-preserve-color) .uk-subnav>*>:first-child,.uk-section-secondary:not(.uk-preserve-color) .uk-subnav>*>:first-child,.uk-tile-primary:not(.uk-preserve-color) .uk-subnav>*>:first-child,.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav>*>:first-child{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-subnav>*>a:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-subnav>*>a:hover,.uk-card-secondary.uk-card-body .uk-subnav>*>a:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-subnav>*>a:hover,.uk-light .uk-subnav>*>a:hover,.uk-offcanvas-bar .uk-subnav>*>a:hover,.uk-overlay-primary .uk-subnav>*>a:hover,.uk-section-primary:not(.uk-preserve-color) .uk-subnav>*>a:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-subnav>*>a:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-subnav>*>a:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav>*>a:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-subnav>.uk-active>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-subnav>.uk-active>a,.uk-card-secondary.uk-card-body .uk-subnav>.uk-active>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-subnav>.uk-active>a,.uk-light .uk-subnav>.uk-active>a,.uk-offcanvas-bar .uk-subnav>.uk-active>a,.uk-overlay-primary .uk-subnav>.uk-active>a,.uk-section-primary:not(.uk-preserve-color) .uk-subnav>.uk-active>a,.uk-section-secondary:not(.uk-preserve-color) .uk-subnav>.uk-active>a,.uk-tile-primary:not(.uk-preserve-color) .uk-subnav>.uk-active>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav>.uk-active>a{color:#fff}.uk-card-primary.uk-card-body .uk-subnav-divider>:nth-child(n+2):not(.uk-first-column)::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-subnav-divider>:nth-child(n+2):not(.uk-first-column)::before,.uk-card-secondary.uk-card-body .uk-subnav-divider>:nth-child(n+2):not(.uk-first-column)::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-subnav-divider>:nth-child(n+2):not(.uk-first-column)::before,.uk-light .uk-subnav-divider>:nth-child(n+2):not(.uk-first-column)::before,.uk-offcanvas-bar .uk-subnav-divider>:nth-child(n+2):not(.uk-first-column)::before,.uk-overlay-primary .uk-subnav-divider>:nth-child(n+2):not(.uk-first-column)::before,.uk-section-primary:not(.uk-preserve-color) .uk-subnav-divider>:nth-child(n+2):not(.uk-first-column)::before,.uk-section-secondary:not(.uk-preserve-color) .uk-subnav-divider>:nth-child(n+2):not(.uk-first-column)::before,.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-divider>:nth-child(n+2):not(.uk-first-column)::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-divider>:nth-child(n+2):not(.uk-first-column)::before{border-left-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-subnav-pill>*>:first-child,.uk-card-primary>:not([class*=uk-card-media]) .uk-subnav-pill>*>:first-child,.uk-card-secondary.uk-card-body .uk-subnav-pill>*>:first-child,.uk-card-secondary>:not([class*=uk-card-media]) .uk-subnav-pill>*>:first-child,.uk-light .uk-subnav-pill>*>:first-child,.uk-offcanvas-bar .uk-subnav-pill>*>:first-child,.uk-overlay-primary .uk-subnav-pill>*>:first-child,.uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill>*>:first-child,.uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill>*>:first-child,.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill>*>:first-child,.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill>*>:first-child{background-color:transparent;color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-subnav-pill>*>a:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-subnav-pill>*>a:hover,.uk-card-secondary.uk-card-body .uk-subnav-pill>*>a:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-subnav-pill>*>a:hover,.uk-light .uk-subnav-pill>*>a:hover,.uk-offcanvas-bar .uk-subnav-pill>*>a:hover,.uk-overlay-primary .uk-subnav-pill>*>a:hover,.uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill>*>a:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill>*>a:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill>*>a:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill>*>a:hover{background-color:rgba(255,255,255,.1);color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-subnav-pill>*>a:active,.uk-card-primary>:not([class*=uk-card-media]) .uk-subnav-pill>*>a:active,.uk-card-secondary.uk-card-body .uk-subnav-pill>*>a:active,.uk-card-secondary>:not([class*=uk-card-media]) .uk-subnav-pill>*>a:active,.uk-light .uk-subnav-pill>*>a:active,.uk-offcanvas-bar .uk-subnav-pill>*>a:active,.uk-overlay-primary .uk-subnav-pill>*>a:active,.uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill>*>a:active,.uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill>*>a:active,.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill>*>a:active,.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill>*>a:active{background-color:rgba(255,255,255,.1);color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-subnav-pill>.uk-active>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-subnav-pill>.uk-active>a,.uk-card-secondary.uk-card-body .uk-subnav-pill>.uk-active>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-subnav-pill>.uk-active>a,.uk-light .uk-subnav-pill>.uk-active>a,.uk-offcanvas-bar .uk-subnav-pill>.uk-active>a,.uk-overlay-primary .uk-subnav-pill>.uk-active>a,.uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill>.uk-active>a,.uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill>.uk-active>a,.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill>.uk-active>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill>.uk-active>a{background-color:#fff;color:#666}.uk-card-primary.uk-card-body .uk-subnav>.uk-disabled>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-subnav>.uk-disabled>a,.uk-card-secondary.uk-card-body .uk-subnav>.uk-disabled>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-subnav>.uk-disabled>a,.uk-light .uk-subnav>.uk-disabled>a,.uk-offcanvas-bar .uk-subnav>.uk-disabled>a,.uk-overlay-primary .uk-subnav>.uk-disabled>a,.uk-section-primary:not(.uk-preserve-color) .uk-subnav>.uk-disabled>a,.uk-section-secondary:not(.uk-preserve-color) .uk-subnav>.uk-disabled>a,.uk-tile-primary:not(.uk-preserve-color) .uk-subnav>.uk-disabled>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav>.uk-disabled>a{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-breadcrumb>*>*,.uk-card-primary>:not([class*=uk-card-media]) .uk-breadcrumb>*>*,.uk-card-secondary.uk-card-body .uk-breadcrumb>*>*,.uk-card-secondary>:not([class*=uk-card-media]) .uk-breadcrumb>*>*,.uk-light .uk-breadcrumb>*>*,.uk-offcanvas-bar .uk-breadcrumb>*>*,.uk-overlay-primary .uk-breadcrumb>*>*,.uk-section-primary:not(.uk-preserve-color) .uk-breadcrumb>*>*,.uk-section-secondary:not(.uk-preserve-color) .uk-breadcrumb>*>*,.uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb>*>*,.uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb>*>*{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-breadcrumb>*>:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-breadcrumb>*>:hover,.uk-card-secondary.uk-card-body .uk-breadcrumb>*>:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-breadcrumb>*>:hover,.uk-light .uk-breadcrumb>*>:hover,.uk-offcanvas-bar .uk-breadcrumb>*>:hover,.uk-overlay-primary .uk-breadcrumb>*>:hover,.uk-section-primary:not(.uk-preserve-color) .uk-breadcrumb>*>:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-breadcrumb>*>:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb>*>:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb>*>:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-breadcrumb>:last-child>*,.uk-card-primary>:not([class*=uk-card-media]) .uk-breadcrumb>:last-child>*,.uk-card-secondary.uk-card-body .uk-breadcrumb>:last-child>*,.uk-card-secondary>:not([class*=uk-card-media]) .uk-breadcrumb>:last-child>*,.uk-light .uk-breadcrumb>:last-child>*,.uk-offcanvas-bar .uk-breadcrumb>:last-child>*,.uk-overlay-primary .uk-breadcrumb>:last-child>*,.uk-section-primary:not(.uk-preserve-color) .uk-breadcrumb>:last-child>*,.uk-section-secondary:not(.uk-preserve-color) .uk-breadcrumb>:last-child>*,.uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb>:last-child>*,.uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb>:last-child>*{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before,.uk-card-secondary.uk-card-body .uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before,.uk-light .uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before,.uk-offcanvas-bar .uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before,.uk-overlay-primary .uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before,.uk-section-primary:not(.uk-preserve-color) .uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before,.uk-section-secondary:not(.uk-preserve-color) .uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before,.uk-tile-primary:not(.uk-preserve-color) .uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-pagination>*>*,.uk-card-primary>:not([class*=uk-card-media]) .uk-pagination>*>*,.uk-card-secondary.uk-card-body .uk-pagination>*>*,.uk-card-secondary>:not([class*=uk-card-media]) .uk-pagination>*>*,.uk-light .uk-pagination>*>*,.uk-offcanvas-bar .uk-pagination>*>*,.uk-overlay-primary .uk-pagination>*>*,.uk-section-primary:not(.uk-preserve-color) .uk-pagination>*>*,.uk-section-secondary:not(.uk-preserve-color) .uk-pagination>*>*,.uk-tile-primary:not(.uk-preserve-color) .uk-pagination>*>*,.uk-tile-secondary:not(.uk-preserve-color) .uk-pagination>*>*{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-pagination>*>:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-pagination>*>:hover,.uk-card-secondary.uk-card-body .uk-pagination>*>:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-pagination>*>:hover,.uk-light .uk-pagination>*>:hover,.uk-offcanvas-bar .uk-pagination>*>:hover,.uk-overlay-primary .uk-pagination>*>:hover,.uk-section-primary:not(.uk-preserve-color) .uk-pagination>*>:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-pagination>*>:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-pagination>*>:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-pagination>*>:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-pagination>.uk-active>*,.uk-card-primary>:not([class*=uk-card-media]) .uk-pagination>.uk-active>*,.uk-card-secondary.uk-card-body .uk-pagination>.uk-active>*,.uk-card-secondary>:not([class*=uk-card-media]) .uk-pagination>.uk-active>*,.uk-light .uk-pagination>.uk-active>*,.uk-offcanvas-bar .uk-pagination>.uk-active>*,.uk-overlay-primary .uk-pagination>.uk-active>*,.uk-section-primary:not(.uk-preserve-color) .uk-pagination>.uk-active>*,.uk-section-secondary:not(.uk-preserve-color) .uk-pagination>.uk-active>*,.uk-tile-primary:not(.uk-preserve-color) .uk-pagination>.uk-active>*,.uk-tile-secondary:not(.uk-preserve-color) .uk-pagination>.uk-active>*{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-pagination>.uk-disabled>*,.uk-card-primary>:not([class*=uk-card-media]) .uk-pagination>.uk-disabled>*,.uk-card-secondary.uk-card-body .uk-pagination>.uk-disabled>*,.uk-card-secondary>:not([class*=uk-card-media]) .uk-pagination>.uk-disabled>*,.uk-light .uk-pagination>.uk-disabled>*,.uk-offcanvas-bar .uk-pagination>.uk-disabled>*,.uk-overlay-primary .uk-pagination>.uk-disabled>*,.uk-section-primary:not(.uk-preserve-color) .uk-pagination>.uk-disabled>*,.uk-section-secondary:not(.uk-preserve-color) .uk-pagination>.uk-disabled>*,.uk-tile-primary:not(.uk-preserve-color) .uk-pagination>.uk-disabled>*,.uk-tile-secondary:not(.uk-preserve-color) .uk-pagination>.uk-disabled>*{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-tab::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-tab::before,.uk-card-secondary.uk-card-body .uk-tab::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-tab::before,.uk-light .uk-tab::before,.uk-offcanvas-bar .uk-tab::before,.uk-overlay-primary .uk-tab::before,.uk-section-primary:not(.uk-preserve-color) .uk-tab::before,.uk-section-secondary:not(.uk-preserve-color) .uk-tab::before,.uk-tile-primary:not(.uk-preserve-color) .uk-tab::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-tab::before{border-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-tab>*>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-tab>*>a,.uk-card-secondary.uk-card-body .uk-tab>*>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-tab>*>a,.uk-light .uk-tab>*>a,.uk-offcanvas-bar .uk-tab>*>a,.uk-overlay-primary .uk-tab>*>a,.uk-section-primary:not(.uk-preserve-color) .uk-tab>*>a,.uk-section-secondary:not(.uk-preserve-color) .uk-tab>*>a,.uk-tile-primary:not(.uk-preserve-color) .uk-tab>*>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-tab>*>a{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-tab>*>a:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-tab>*>a:hover,.uk-card-secondary.uk-card-body .uk-tab>*>a:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-tab>*>a:hover,.uk-light .uk-tab>*>a:hover,.uk-offcanvas-bar .uk-tab>*>a:hover,.uk-overlay-primary .uk-tab>*>a:hover,.uk-section-primary:not(.uk-preserve-color) .uk-tab>*>a:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-tab>*>a:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-tab>*>a:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-tab>*>a:hover{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-tab>.uk-active>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-tab>.uk-active>a,.uk-card-secondary.uk-card-body .uk-tab>.uk-active>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-tab>.uk-active>a,.uk-light .uk-tab>.uk-active>a,.uk-offcanvas-bar .uk-tab>.uk-active>a,.uk-overlay-primary .uk-tab>.uk-active>a,.uk-section-primary:not(.uk-preserve-color) .uk-tab>.uk-active>a,.uk-section-secondary:not(.uk-preserve-color) .uk-tab>.uk-active>a,.uk-tile-primary:not(.uk-preserve-color) .uk-tab>.uk-active>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-tab>.uk-active>a{color:#fff;border-color:#fff}.uk-card-primary.uk-card-body .uk-tab>.uk-disabled>a,.uk-card-primary>:not([class*=uk-card-media]) .uk-tab>.uk-disabled>a,.uk-card-secondary.uk-card-body .uk-tab>.uk-disabled>a,.uk-card-secondary>:not([class*=uk-card-media]) .uk-tab>.uk-disabled>a,.uk-light .uk-tab>.uk-disabled>a,.uk-offcanvas-bar .uk-tab>.uk-disabled>a,.uk-overlay-primary .uk-tab>.uk-disabled>a,.uk-section-primary:not(.uk-preserve-color) .uk-tab>.uk-disabled>a,.uk-section-secondary:not(.uk-preserve-color) .uk-tab>.uk-disabled>a,.uk-tile-primary:not(.uk-preserve-color) .uk-tab>.uk-disabled>a,.uk-tile-secondary:not(.uk-preserve-color) .uk-tab>.uk-disabled>a{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-slidenav,.uk-card-primary>:not([class*=uk-card-media]) .uk-slidenav,.uk-card-secondary.uk-card-body .uk-slidenav,.uk-card-secondary>:not([class*=uk-card-media]) .uk-slidenav,.uk-light .uk-slidenav,.uk-offcanvas-bar .uk-slidenav,.uk-overlay-primary .uk-slidenav,.uk-section-primary:not(.uk-preserve-color) .uk-slidenav,.uk-section-secondary:not(.uk-preserve-color) .uk-slidenav,.uk-tile-primary:not(.uk-preserve-color) .uk-slidenav,.uk-tile-secondary:not(.uk-preserve-color) .uk-slidenav{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-slidenav:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-slidenav:hover,.uk-card-secondary.uk-card-body .uk-slidenav:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-slidenav:hover,.uk-light .uk-slidenav:hover,.uk-offcanvas-bar .uk-slidenav:hover,.uk-overlay-primary .uk-slidenav:hover,.uk-section-primary:not(.uk-preserve-color) .uk-slidenav:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-slidenav:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-slidenav:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-slidenav:hover{color:rgba(255,255,255,.95)}.uk-card-primary.uk-card-body .uk-slidenav:active,.uk-card-primary>:not([class*=uk-card-media]) .uk-slidenav:active,.uk-card-secondary.uk-card-body .uk-slidenav:active,.uk-card-secondary>:not([class*=uk-card-media]) .uk-slidenav:active,.uk-light .uk-slidenav:active,.uk-offcanvas-bar .uk-slidenav:active,.uk-overlay-primary .uk-slidenav:active,.uk-section-primary:not(.uk-preserve-color) .uk-slidenav:active,.uk-section-secondary:not(.uk-preserve-color) .uk-slidenav:active,.uk-tile-primary:not(.uk-preserve-color) .uk-slidenav:active,.uk-tile-secondary:not(.uk-preserve-color) .uk-slidenav:active{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-dotnav>*>*,.uk-card-primary>:not([class*=uk-card-media]) .uk-dotnav>*>*,.uk-card-secondary.uk-card-body .uk-dotnav>*>*,.uk-card-secondary>:not([class*=uk-card-media]) .uk-dotnav>*>*,.uk-light .uk-dotnav>*>*,.uk-offcanvas-bar .uk-dotnav>*>*,.uk-overlay-primary .uk-dotnav>*>*,.uk-section-primary:not(.uk-preserve-color) .uk-dotnav>*>*,.uk-section-secondary:not(.uk-preserve-color) .uk-dotnav>*>*,.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav>*>*,.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav>*>*{background-color:transparent;border-color:rgba(255,255,255,.9)}.uk-card-primary.uk-card-body .uk-dotnav>*>:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-dotnav>*>:hover,.uk-card-secondary.uk-card-body .uk-dotnav>*>:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-dotnav>*>:hover,.uk-light .uk-dotnav>*>:hover,.uk-offcanvas-bar .uk-dotnav>*>:hover,.uk-overlay-primary .uk-dotnav>*>:hover,.uk-section-primary:not(.uk-preserve-color) .uk-dotnav>*>:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-dotnav>*>:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav>*>:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav>*>:hover{background-color:rgba(255,255,255,.9);border-color:transparent}.uk-card-primary.uk-card-body .uk-dotnav>*>:active,.uk-card-primary>:not([class*=uk-card-media]) .uk-dotnav>*>:active,.uk-card-secondary.uk-card-body .uk-dotnav>*>:active,.uk-card-secondary>:not([class*=uk-card-media]) .uk-dotnav>*>:active,.uk-light .uk-dotnav>*>:active,.uk-offcanvas-bar .uk-dotnav>*>:active,.uk-overlay-primary .uk-dotnav>*>:active,.uk-section-primary:not(.uk-preserve-color) .uk-dotnav>*>:active,.uk-section-secondary:not(.uk-preserve-color) .uk-dotnav>*>:active,.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav>*>:active,.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav>*>:active{background-color:rgba(255,255,255,.5);border-color:transparent}.uk-card-primary.uk-card-body .uk-dotnav>.uk-active>*,.uk-card-primary>:not([class*=uk-card-media]) .uk-dotnav>.uk-active>*,.uk-card-secondary.uk-card-body .uk-dotnav>.uk-active>*,.uk-card-secondary>:not([class*=uk-card-media]) .uk-dotnav>.uk-active>*,.uk-light .uk-dotnav>.uk-active>*,.uk-offcanvas-bar .uk-dotnav>.uk-active>*,.uk-overlay-primary .uk-dotnav>.uk-active>*,.uk-section-primary:not(.uk-preserve-color) .uk-dotnav>.uk-active>*,.uk-section-secondary:not(.uk-preserve-color) .uk-dotnav>.uk-active>*,.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav>.uk-active>*,.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav>.uk-active>*{background-color:rgba(255,255,255,.9);border-color:transparent}.uk-card-primary.uk-card-body .uk-text-lead,.uk-card-primary>:not([class*=uk-card-media]) .uk-text-lead,.uk-card-secondary.uk-card-body .uk-text-lead,.uk-card-secondary>:not([class*=uk-card-media]) .uk-text-lead,.uk-light .uk-text-lead,.uk-offcanvas-bar .uk-text-lead,.uk-overlay-primary .uk-text-lead,.uk-section-primary:not(.uk-preserve-color) .uk-text-lead,.uk-section-secondary:not(.uk-preserve-color) .uk-text-lead,.uk-tile-primary:not(.uk-preserve-color) .uk-text-lead,.uk-tile-secondary:not(.uk-preserve-color) .uk-text-lead{color:rgba(255,255,255,.7)}.uk-card-primary.uk-card-body .uk-text-meta,.uk-card-primary>:not([class*=uk-card-media]) .uk-text-meta,.uk-card-secondary.uk-card-body .uk-text-meta,.uk-card-secondary>:not([class*=uk-card-media]) .uk-text-meta,.uk-light .uk-text-meta,.uk-offcanvas-bar .uk-text-meta,.uk-overlay-primary .uk-text-meta,.uk-section-primary:not(.uk-preserve-color) .uk-text-meta,.uk-section-secondary:not(.uk-preserve-color) .uk-text-meta,.uk-tile-primary:not(.uk-preserve-color) .uk-text-meta,.uk-tile-secondary:not(.uk-preserve-color) .uk-text-meta{color:rgba(255,255,255,.5)}.uk-card-primary.uk-card-body .uk-text-muted,.uk-card-primary>:not([class*=uk-card-media]) .uk-text-muted,.uk-card-secondary.uk-card-body .uk-text-muted,.uk-card-secondary>:not([class*=uk-card-media]) .uk-text-muted,.uk-light .uk-text-muted,.uk-offcanvas-bar .uk-text-muted,.uk-overlay-primary .uk-text-muted,.uk-section-primary:not(.uk-preserve-color) .uk-text-muted,.uk-section-secondary:not(.uk-preserve-color) .uk-text-muted,.uk-tile-primary:not(.uk-preserve-color) .uk-text-muted,.uk-tile-secondary:not(.uk-preserve-color) .uk-text-muted{color:rgba(255,255,255,.5)!important}.uk-card-primary.uk-card-body .uk-text-emphasis,.uk-card-primary>:not([class*=uk-card-media]) .uk-text-emphasis,.uk-card-secondary.uk-card-body .uk-text-emphasis,.uk-card-secondary>:not([class*=uk-card-media]) .uk-text-emphasis,.uk-light .uk-text-emphasis,.uk-offcanvas-bar .uk-text-emphasis,.uk-overlay-primary .uk-text-emphasis,.uk-section-primary:not(.uk-preserve-color) .uk-text-emphasis,.uk-section-secondary:not(.uk-preserve-color) .uk-text-emphasis,.uk-tile-primary:not(.uk-preserve-color) .uk-text-emphasis,.uk-tile-secondary:not(.uk-preserve-color) .uk-text-emphasis{color:#fff!important}.uk-card-primary.uk-card-body .uk-text-primary,.uk-card-primary>:not([class*=uk-card-media]) .uk-text-primary,.uk-card-secondary.uk-card-body .uk-text-primary,.uk-card-secondary>:not([class*=uk-card-media]) .uk-text-primary,.uk-light .uk-text-primary,.uk-offcanvas-bar .uk-text-primary,.uk-overlay-primary .uk-text-primary,.uk-section-primary:not(.uk-preserve-color) .uk-text-primary,.uk-section-secondary:not(.uk-preserve-color) .uk-text-primary,.uk-tile-primary:not(.uk-preserve-color) .uk-text-primary,.uk-tile-secondary:not(.uk-preserve-color) .uk-text-primary{color:#fff!important}.uk-card-primary.uk-card-body .uk-text-secondary,.uk-card-primary>:not([class*=uk-card-media]) .uk-text-secondary,.uk-card-secondary.uk-card-body .uk-text-secondary,.uk-card-secondary>:not([class*=uk-card-media]) .uk-text-secondary,.uk-light .uk-text-secondary,.uk-offcanvas-bar .uk-text-secondary,.uk-overlay-primary .uk-text-secondary,.uk-section-primary:not(.uk-preserve-color) .uk-text-secondary,.uk-section-secondary:not(.uk-preserve-color) .uk-text-secondary,.uk-tile-primary:not(.uk-preserve-color) .uk-text-secondary,.uk-tile-secondary:not(.uk-preserve-color) .uk-text-secondary{color:#fff!important}.uk-card-primary.uk-card-body .uk-column-divider,.uk-card-primary>:not([class*=uk-card-media]) .uk-column-divider,.uk-card-secondary.uk-card-body .uk-column-divider,.uk-card-secondary>:not([class*=uk-card-media]) .uk-column-divider,.uk-light .uk-column-divider,.uk-offcanvas-bar .uk-column-divider,.uk-overlay-primary .uk-column-divider,.uk-section-primary:not(.uk-preserve-color) .uk-column-divider,.uk-section-secondary:not(.uk-preserve-color) .uk-column-divider,.uk-tile-primary:not(.uk-preserve-color) .uk-column-divider,.uk-tile-secondary:not(.uk-preserve-color) .uk-column-divider{column-rule-color:rgba(255,255,255,0.2)}.uk-card-primary.uk-card-body .uk-logo,.uk-card-primary>:not([class*=uk-card-media]) .uk-logo,.uk-card-secondary.uk-card-body .uk-logo,.uk-card-secondary>:not([class*=uk-card-media]) .uk-logo,.uk-light .uk-logo,.uk-offcanvas-bar .uk-logo,.uk-overlay-primary .uk-logo,.uk-section-primary:not(.uk-preserve-color) .uk-logo,.uk-section-secondary:not(.uk-preserve-color) .uk-logo,.uk-tile-primary:not(.uk-preserve-color) .uk-logo,.uk-tile-secondary:not(.uk-preserve-color) .uk-logo{color:#fff}.uk-card-primary.uk-card-body .uk-logo:hover,.uk-card-primary>:not([class*=uk-card-media]) .uk-logo:hover,.uk-card-secondary.uk-card-body .uk-logo:hover,.uk-card-secondary>:not([class*=uk-card-media]) .uk-logo:hover,.uk-light .uk-logo:hover,.uk-offcanvas-bar .uk-logo:hover,.uk-overlay-primary .uk-logo:hover,.uk-section-primary:not(.uk-preserve-color) .uk-logo:hover,.uk-section-secondary:not(.uk-preserve-color) .uk-logo:hover,.uk-tile-primary:not(.uk-preserve-color) .uk-logo:hover,.uk-tile-secondary:not(.uk-preserve-color) .uk-logo:hover{color:#fff}.uk-card-primary.uk-card-body .uk-logo:has(.uk-logo-inverse)>:not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),.uk-card-primary>:not([class*=uk-card-media]) .uk-logo:has(.uk-logo-inverse)>:not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),.uk-card-secondary.uk-card-body .uk-logo:has(.uk-logo-inverse)>:not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),.uk-card-secondary>:not([class*=uk-card-media]) .uk-logo:has(.uk-logo-inverse)>:not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),.uk-light .uk-logo:has(.uk-logo-inverse)>:not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),.uk-offcanvas-bar .uk-logo:has(.uk-logo-inverse)>:not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),.uk-overlay-primary .uk-logo:has(.uk-logo-inverse)>:not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),.uk-section-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse)>:not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),.uk-section-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse)>:not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),.uk-tile-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse)>:not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),.uk-tile-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse)>:not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse){display:none}.uk-card-primary.uk-card-body .uk-logo-inverse,.uk-card-primary>:not([class*=uk-card-media]) .uk-logo-inverse,.uk-card-secondary.uk-card-body .uk-logo-inverse,.uk-card-secondary>:not([class*=uk-card-media]) .uk-logo-inverse,.uk-light .uk-logo-inverse,.uk-offcanvas-bar .uk-logo-inverse,.uk-overlay-primary .uk-logo-inverse,.uk-section-primary:not(.uk-preserve-color) .uk-logo-inverse,.uk-section-secondary:not(.uk-preserve-color) .uk-logo-inverse,.uk-tile-primary:not(.uk-preserve-color) .uk-logo-inverse,.uk-tile-secondary:not(.uk-preserve-color) .uk-logo-inverse{display:block}.uk-card-primary.uk-card-body .uk-table-striped tbody tr:nth-of-type(2n):last-child,.uk-card-primary.uk-card-body .uk-table-striped>tr:nth-of-type(2n):last-child,.uk-card-primary>:not([class*=uk-card-media]) .uk-table-striped tbody tr:nth-of-type(2n):last-child,.uk-card-primary>:not([class*=uk-card-media]) .uk-table-striped>tr:nth-of-type(2n):last-child,.uk-card-secondary.uk-card-body .uk-table-striped tbody tr:nth-of-type(2n):last-child,.uk-card-secondary.uk-card-body .uk-table-striped>tr:nth-of-type(2n):last-child,.uk-card-secondary>:not([class*=uk-card-media]) .uk-table-striped tbody tr:nth-of-type(2n):last-child,.uk-card-secondary>:not([class*=uk-card-media]) .uk-table-striped>tr:nth-of-type(2n):last-child,.uk-light .uk-table-striped tbody tr:nth-of-type(2n):last-child,.uk-light .uk-table-striped>tr:nth-of-type(2n):last-child,.uk-offcanvas-bar .uk-table-striped tbody tr:nth-of-type(2n):last-child,.uk-offcanvas-bar .uk-table-striped>tr:nth-of-type(2n):last-child,.uk-overlay-primary .uk-table-striped tbody tr:nth-of-type(2n):last-child,.uk-overlay-primary .uk-table-striped>tr:nth-of-type(2n):last-child,.uk-section-primary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(2n):last-child,.uk-section-primary:not(.uk-preserve-color) .uk-table-striped>tr:nth-of-type(2n):last-child,.uk-section-secondary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(2n):last-child,.uk-section-secondary:not(.uk-preserve-color) .uk-table-striped>tr:nth-of-type(2n):last-child,.uk-tile-primary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(2n):last-child,.uk-tile-primary:not(.uk-preserve-color) .uk-table-striped>tr:nth-of-type(2n):last-child,.uk-tile-secondary:not(.uk-preserve-color) .uk-table-striped tbody tr:nth-of-type(2n):last-child,.uk-tile-secondary:not(.uk-preserve-color) .uk-table-striped>tr:nth-of-type(2n):last-child{border-bottom-color:rgba(255,255,255,.2)}.uk-card-primary.uk-card-body .uk-accordion-title::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-accordion-title::before,.uk-card-secondary.uk-card-body .uk-accordion-title::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-accordion-title::before,.uk-light .uk-accordion-title::before,.uk-offcanvas-bar .uk-accordion-title::before,.uk-overlay-primary .uk-accordion-title::before,.uk-section-primary:not(.uk-preserve-color) .uk-accordion-title::before,.uk-section-secondary:not(.uk-preserve-color) .uk-accordion-title::before,.uk-tile-primary:not(.uk-preserve-color) .uk-accordion-title::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-accordion-title::before{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E")}.uk-card-primary.uk-card-body .uk-open>.uk-accordion-title::before,.uk-card-primary>:not([class*=uk-card-media]) .uk-open>.uk-accordion-title::before,.uk-card-secondary.uk-card-body .uk-open>.uk-accordion-title::before,.uk-card-secondary>:not([class*=uk-card-media]) .uk-open>.uk-accordion-title::before,.uk-light .uk-open>.uk-accordion-title::before,.uk-offcanvas-bar .uk-open>.uk-accordion-title::before,.uk-overlay-primary .uk-open>.uk-accordion-title::before,.uk-section-primary:not(.uk-preserve-color) .uk-open>.uk-accordion-title::before,.uk-section-secondary:not(.uk-preserve-color) .uk-open>.uk-accordion-title::before,.uk-tile-primary:not(.uk-preserve-color) .uk-open>.uk-accordion-title::before,.uk-tile-secondary:not(.uk-preserve-color) .uk-open>.uk-accordion-title::before{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22rgba%28255,%20255,%20255,%200.7%29%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E")}*{--uk-inverse:initial}.uk-card-primary.uk-card-body,.uk-card-primary>:not([class*=uk-card-media]),.uk-card-secondary.uk-card-body,.uk-card-secondary>:not([class*=uk-card-media]),.uk-light,.uk-offcanvas-bar,.uk-overlay-primary,.uk-section-primary:not(.uk-preserve-color),.uk-section-secondary:not(.uk-preserve-color),.uk-tile-primary:not(.uk-preserve-color),.uk-tile-secondary:not(.uk-preserve-color){--uk-inverse:light}.uk-card-default.uk-card-body,.uk-card-default>:not([class*=uk-card-media]),.uk-dark,.uk-dropbar,.uk-dropdown,.uk-navbar-container:not(.uk-navbar-transparent),.uk-navbar-dropdown,.uk-overlay-default,.uk-section-default:not(.uk-preserve-color),.uk-section-muted:not(.uk-preserve-color),.uk-tile-default:not(.uk-preserve-color),.uk-tile-muted:not(.uk-preserve-color){--uk-inverse:dark}.uk-inverse-light{--uk-inverse:light!important}.uk-inverse-dark{--uk-inverse:dark!important}@media print{*,::after,::before{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}} \ No newline at end of file diff --git a/themes/op-dz/static/vendor/uikit/js/uikit-icons.min.js b/themes/op-dz/static/vendor/uikit/js/uikit-icons.min.js new file mode 100644 index 0000000..dc6b2fc --- /dev/null +++ b/themes/op-dz/static/vendor/uikit/js/uikit-icons.min.js @@ -0,0 +1 @@ +/*! UIkit 3.21.13 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */(function(t,e){typeof exports=="object"&&typeof module<"u"?module.exports=e():typeof define=="function"&&define.amd?define("uikiticons",e):(t=typeof globalThis<"u"?globalThis:t||self,t.UIkitIcons=e())})(this,function(){"use strict";function t(e){t.installed||e.icon.add({youtube:'',yootheme:'',yelp:'',xing:'',x:'',world:'',wordpress:'',whatsapp:'',warning:'',vimeo:'',"video-camera":'',users:'',user:'',upload:'',unlock:'',uikit:'',twitter:'',twitch:'',tv:'',tumblr:'',tripadvisor:'',"triangle-up":'',"triangle-right":'',"triangle-left":'',"triangle-down":'',trash:'',tiktok:'',thumbnails:'',threads:'',telegram:'',tag:'',tablet:'',"tablet-landscape":'',table:'',strikethrough:'',star:'',soundcloud:'',social:'',signal:'',"sign-out":'',"sign-in":'',shrink:'',settings:'',server:'',search:'',rss:'',reply:'',refresh:'',reddit:'',receiver:'',"quote-right":'',question:'',push:'',pull:'',print:'',plus:'',"plus-circle":'',play:'',"play-circle":'',pinterest:'',phone:'',"phone-landscape":'',pencil:'',"paint-bucket":'',nut:'',move:'',more:'',"more-vertical":'',minus:'',"minus-circle":'',microsoft:'',microphone:'',menu:'',mastodon:'',mail:'',lock:'',location:'',list:'',linkedin:'',link:'',"link-external":'',lifesaver:'',laptop:'',joomla:'',italic:'',instagram:'',info:'',image:'',home:'',history:'',heart:'',hashtag:'',happy:'',grid:'',google:'',gitter:'',github:'',"github-alt":'',"git-fork":'',"git-branch":'',future:'',foursquare:'',forward:'',folder:'',flickr:'',file:'',"file-text":'',"file-pdf":'',"file-edit":'',facebook:'',eye:'',"eye-slash":'',expand:'',etsy:'',dribbble:'',download:'',discord:'',desktop:'',database:'',crosshairs:'',"credit-card":'',copy:'',comments:'',commenting:'',comment:'',cog:'',code:'',"cloud-upload":'',"cloud-download":'',close:'',clock:'',"chevron-up":'',"chevron-right":'',"chevron-left":'',"chevron-down":'',"chevron-double-right":'',"chevron-double-left":'',check:'',cart:'',camera:'',calendar:'',bookmark:'',bolt:'',bold:'',bluesky:'',bell:'',behance:'',ban:'',bag:'',"arrow-up":'',"arrow-up-right":'',"arrow-right":'',"arrow-left":'',"arrow-down":'',apple:'',android:'',"android-robot":'',album:'',"500px":''})}return typeof window<"u"&&window.UIkit&&window.UIkit.use(t),t}); diff --git a/themes/op-dz/static/vendor/uikit/js/uikit.min.js b/themes/op-dz/static/vendor/uikit/js/uikit.min.js new file mode 100644 index 0000000..4a1a240 --- /dev/null +++ b/themes/op-dz/static/vendor/uikit/js/uikit.min.js @@ -0,0 +1 @@ +/*! UIkit 3.21.13 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */(function(be,xe){typeof exports=="object"&&typeof module<"u"?module.exports=xe():typeof define=="function"&&define.amd?define("uikit",xe):(be=typeof globalThis<"u"?globalThis:be||self,be.UIkit=xe())})(this,function(){"use strict";const{hasOwnProperty:be,toString:xe}=Object.prototype;function pt(t,e){return be.call(t,e)}const sr=/\B([A-Z])/g,Ot=ct(t=>t.replace(sr,"-$1").toLowerCase()),nr=/-(\w)/g,$e=ct(t=>(t.charAt(0).toLowerCase()+t.slice(1)).replace(nr,(e,i)=>i.toUpperCase())),Dt=ct(t=>t.charAt(0).toUpperCase()+t.slice(1));function gt(t,e){var i;return(i=t==null?void 0:t.startsWith)==null?void 0:i.call(t,e)}function Qt(t,e){var i;return(i=t==null?void 0:t.endsWith)==null?void 0:i.call(t,e)}function v(t,e){var i;return(i=t==null?void 0:t.includes)==null?void 0:i.call(t,e)}function bt(t,e){var i;return(i=t==null?void 0:t.findIndex)==null?void 0:i.call(t,e)}const{isArray:G,from:Zt}=Array,{assign:dt}=Object;function tt(t){return typeof t=="function"}function kt(t){return t!==null&&typeof t=="object"}function te(t){return xe.call(t)==="[object Object]"}function Ze(t){return kt(t)&&t===t.window}function ye(t){return Li(t)===9}function ke(t){return Li(t)>=1}function Se(t){return Li(t)===1}function Li(t){return!Ze(t)&&kt(t)&&t.nodeType}function ee(t){return typeof t=="boolean"}function z(t){return typeof t=="string"}function Ie(t){return typeof t=="number"}function mt(t){return Ie(t)||z(t)&&!isNaN(t-parseFloat(t))}function ti(t){return!(G(t)?t.length:kt(t)&&Object.keys(t).length)}function X(t){return t===void 0}function Wi(t){return ee(t)?t:t==="true"||t==="1"||t===""?!0:t==="false"||t==="0"?!1:t}function xt(t){const e=Number(t);return isNaN(e)?!1:e}function k(t){return parseFloat(t)||0}function W(t){return t&&E(t)[0]}function E(t){return ke(t)?[t]:Array.from(t||[]).filter(ke)}function Mt(t){if(Ze(t))return t;t=W(t);const e=ye(t)?t:t==null?void 0:t.ownerDocument;return(e==null?void 0:e.defaultView)||window}function Te(t,e){return t===e||kt(t)&&kt(e)&&Object.keys(t).length===Object.keys(e).length&&ie(t,(i,s)=>i===e[s])}function ji(t,e,i){return t.replace(new RegExp(`${e}|${i}`,"g"),s=>s===e?i:e)}function Bt(t){return t[t.length-1]}function ie(t,e){for(const i in t)if(e(t[i],i)===!1)return!1;return!0}function js(t,e){return t.slice().sort(({[e]:i=0},{[e]:s=0})=>i>s?1:s>i?-1:0)}function Nt(t,e){return t.reduce((i,s)=>i+k(tt(e)?e(s):s[e]),0)}function Rs(t,e){const i=new Set;return t.filter(({[e]:s})=>i.has(s)?!1:i.add(s))}function Ri(t,e){return e.reduce((i,s)=>({...i,[s]:t[s]}),{})}function Q(t,e=0,i=1){return Math.min(Math.max(xt(t)||0,e),i)}function A(){}function ei(...t){return[["bottom","top"],["right","left"]].every(([e,i])=>Math.min(...t.map(({[e]:s})=>s))-Math.max(...t.map(({[i]:s})=>s))>0)}function ii(t,e){return t.x<=e.right&&t.x>=e.left&&t.y<=e.bottom&&t.y>=e.top}function qi(t,e,i){const s=e==="width"?"height":"width";return{[s]:t[e]?Math.round(i*t[s]/t[e]):t[s],[e]:i}}function qs(t,e){t={...t};for(const i in t)t=t[i]>e[i]?qi(t,i,e[i]):t;return t}function or(t,e){t=qs(t,e);for(const i in t)t=t[i]e[i]||(e[i]=t(i,...s))}function S(t,...e){for(const i of E(t)){const s=zt(e).filter(n=>!x(i,n));s.length&&i.classList.add(...s)}}function _(t,...e){for(const i of E(t)){const s=zt(e).filter(n=>x(i,n));s.length&&i.classList.remove(...s)}}function si(t,e,i){i=zt(i),e=zt(e).filter(s=>!v(i,s)),_(t,e),S(t,i)}function x(t,e){return[e]=zt(e),E(t).some(i=>i.classList.contains(e))}function j(t,e,i){const s=zt(e);X(i)||(i=!!i);for(const n of E(t))for(const o of s)n.classList.toggle(o,i)}function zt(t){return t?G(t)?t.map(zt).flat():String(t).split(" ").filter(Boolean):[]}function g(t,e,i){var s;if(kt(e)){for(const n in e)g(t,n,e[n]);return}if(X(i))return(s=W(t))==null?void 0:s.getAttribute(e);for(const n of E(t))tt(i)&&(i=i.call(n,g(n,e))),i===null?Ee(n,e):n.setAttribute(e,i)}function St(t,e){return E(t).some(i=>i.hasAttribute(e))}function Ee(t,e){E(t).forEach(i=>i.removeAttribute(e))}function J(t,e){for(const i of[e,`data-${e}`])if(St(t,i))return g(t,i)}const Ft=typeof window<"u",U=Ft&&document.dir==="rtl",se=Ft&&"ontouchstart"in window,ne=Ft&&window.PointerEvent,ht=ne?"pointerdown":se?"touchstart":"mousedown",ni=ne?"pointermove":se?"touchmove":"mousemove",It=ne?"pointerup":se?"touchend":"mouseup",Ht=ne?"pointerenter":se?"":"mouseenter",oe=ne?"pointerleave":se?"":"mouseleave",oi=ne?"pointercancel":"touchcancel",rr={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function Vi(t){return E(t).some(e=>rr[e.tagName.toLowerCase()])}const ar=Ft&&Element.prototype.checkVisibility||function(){return this.offsetWidth||this.offsetHeight||this.getClientRects().length};function R(t){return E(t).some(e=>ar.call(e))}const Ce="input,select,textarea,button";function ri(t){return E(t).some(e=>C(e,Ce))}const Pe=`${Ce},a[href],[tabindex]`;function ai(t){return C(t,Pe)}function D(t){var e;return(e=W(t))==null?void 0:e.parentElement}function _e(t,e){return E(t).filter(i=>C(i,e))}function C(t,e){return E(t).some(i=>i.matches(e))}function Ae(t,e){const i=[];for(;t=D(t);)(!e||C(t,e))&&i.push(t);return i}function M(t,e){t=W(t);const i=t?Zt(t.children):[];return e?_e(i,e):i}function $t(t,e){return e?E(t).indexOf(W(e)):M(D(t)).indexOf(t)}function re(t){return t=W(t),t&&["origin","pathname","search"].every(e=>t[e]===location[e])}function Yi(t){if(re(t)){const{hash:e,ownerDocument:i}=W(t),s=decodeURIComponent(e).slice(1);return i.getElementById(s)||i.getElementsByName(s)[0]}}function Z(t,e){return Gi(t,Us(t,e))}function Oe(t,e){return De(t,Us(t,e))}function Gi(t,e){return W(Gs(t,W(e),"querySelector"))}function De(t,e){return E(Gs(t,W(e),"querySelectorAll"))}function Us(t,e=document){return ye(e)||Vs(t).isContextSelector?e:e.ownerDocument}const lr=/([!>+~-])(?=\s+[!>+~-]|\s*$)/g,cr=/(\([^)]*\)|[^,])+/g,Vs=ct(t=>{let e=!1;if(!t||!z(t))return{};const i=[];for(let s of t.match(cr))s=s.trim().replace(lr,"$1 *"),e||(e=["!","+","~","-",">"].includes(s[0])),i.push(s);return{selector:i.join(","),selectors:i,isContextSelector:e}}),hr=/(\([^)]*\)|\S)*/,Ys=ct(t=>{t=t.slice(1).trim();const[e]=t.match(hr);return[e,t.slice(e.length+1)]});function Gs(t,e=document,i){const s=Vs(t);if(!s.isContextSelector)return s.selector?Xi(e,i,s.selector):t;t="";const n=s.selectors.length===1;for(let o of s.selectors){let r,a=e;if(o[0]==="!"&&([r,o]=Ys(o),a=e.parentElement.closest(r),!o&&n)||a&&o[0]==="-"&&([r,o]=Ys(o),a=a.previousElementSibling,a=C(a,r)?a:null,!o&&n))return a;if(a){if(n)return o[0]==="~"||o[0]==="+"?(o=`:scope > :nth-child(${$t(a)+1}) ${o}`,a=a.parentElement):o[0]===">"&&(o=`:scope ${o}`),Xi(a,i,o);t+=`${t?",":""}${ur(a)} ${o}`}}return ye(e)||(e=e.ownerDocument),Xi(e,i,t)}function Xi(t,e,i){try{return t[e](i)}catch{return null}}function ur(t){const e=[];for(;t.parentNode;){const i=g(t,"id");if(i){e.unshift(`#${Ji(i)}`);break}else{let{tagName:s}=t;s!=="HTML"&&(s+=`:nth-child(${$t(t)+1})`),e.unshift(s),t=t.parentNode}}return e.join(" > ")}function Ji(t){return z(t)?CSS.escape(t):""}function $(...t){let[e,i,s,n,o=!1]=Ki(t);n.length>1&&(n=fr(n)),o!=null&&o.self&&(n=pr(n)),s&&(n=dr(s,n));for(const r of i)for(const a of e)a.addEventListener(r,n,o);return()=>Tt(e,i,n,o)}function Tt(...t){let[e,i,,s,n=!1]=Ki(t);for(const o of i)for(const r of e)r.removeEventListener(o,s,n)}function F(...t){const[e,i,s,n,o=!1,r]=Ki(t),a=$(e,i,s,l=>{const h=!r||r(l);h&&(a(),n(l,h))},o);return a}function w(t,e,i){return Qi(t).every(s=>s.dispatchEvent(ae(e,!0,!0,i)))}function ae(t,e=!0,i=!1,s){return z(t)&&(t=new CustomEvent(t,{bubbles:e,cancelable:i,detail:s})),t}function Ki(t){return t[0]=Qi(t[0]),z(t[1])&&(t[1]=t[1].split(" ")),tt(t[2])&&t.splice(2,0,!1),t}function dr(t,e){return i=>{const s=t[0]===">"?De(t,i.currentTarget).reverse().find(n=>n.contains(i.target)):i.target.closest(t);s&&(i.current=s,e.call(this,i),delete i.current)}}function fr(t){return e=>G(e.detail)?t(e,...e.detail):t(e)}function pr(t){return function(e){if(e.target===e.currentTarget||e.target===e.current)return t.call(null,e)}}function Xs(t){return t&&"addEventListener"in t}function gr(t){return Xs(t)?t:W(t)}function Qi(t){return G(t)?t.map(gr).filter(Boolean):z(t)?De(t):Xs(t)?[t]:E(t)}function ft(t){return t.pointerType==="touch"||!!t.touches}function yt(t){var e,i;const{clientX:s,clientY:n}=((e=t.touches)==null?void 0:e[0])||((i=t.changedTouches)==null?void 0:i[0])||t;return{x:s,y:n}}const mr={"animation-iteration-count":!0,"column-count":!0,"fill-opacity":!0,"flex-grow":!0,"flex-shrink":!0,"font-weight":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"stroke-dasharray":!0,"stroke-dashoffset":!0,widows:!0,"z-index":!0,zoom:!0};function c(t,e,i,s){const n=E(t);for(const o of n)if(z(e)){if(e=li(e),X(i))return getComputedStyle(o).getPropertyValue(e);o.style.setProperty(e,mt(i)&&!mr[e]?`${i}px`:i||Ie(i)?i:"",s)}else if(G(e)){const r={};for(const a of e)r[a]=c(o,a);return r}else if(kt(e))for(const r in e)c(o,r,e[r],i);return n[0]}const li=ct(t=>{if(gt(t,"--"))return t;t=Ot(t);const{style:e}=document.documentElement;if(t in e)return t;for(const i of["webkit","moz"]){const s=`-${i}-${t}`;if(s in e)return s}}),Zi="uk-transition",ts="transitionend",es="transitioncanceled";function vr(t,e,i=400,s="linear"){return i=Math.round(i),Promise.all(E(t).map(n=>new Promise((o,r)=>{for(const l in e)c(n,l);const a=setTimeout(()=>w(n,ts),i);F(n,[ts,es],({type:l})=>{clearTimeout(a),_(n,Zi),c(n,{transitionProperty:"",transitionDuration:"",transitionTimingFunction:""}),l===es?r():o(n)},{self:!0}),S(n,Zi),c(n,{transitionProperty:Object.keys(e).map(li).join(","),transitionDuration:`${i}ms`,transitionTimingFunction:s,...e})})))}const B={start:vr,async stop(t){w(t,ts),await Promise.resolve()},async cancel(t){w(t,es),await Promise.resolve()},inProgress(t){return x(t,Zi)}},Me="uk-animation",Js="animationend",ci="animationcanceled";function Ks(t,e,i=200,s,n){return Promise.all(E(t).map(o=>new Promise((r,a)=>{x(o,Me)&&w(o,ci);const l=[e,Me,`${Me}-${n?"leave":"enter"}`,s&&`uk-transform-origin-${s}`,n&&`${Me}-reverse`],h=setTimeout(()=>w(o,Js),i);F(o,[Js,ci],({type:u})=>{clearTimeout(h),u===ci?a():r(o),c(o,"animationDuration",""),_(o,l)},{self:!0}),c(o,"animationDuration",`${i}ms`),S(o,l)})))}const Et={in:Ks,out(t,e,i,s){return Ks(t,e,i,s,!0)},inProgress(t){return x(t,Me)},cancel(t){w(t,ci)}};function wr(t){if(document.readyState!=="loading"){t();return}F(document,"DOMContentLoaded",t)}function H(t,...e){return e.some(i=>{var s;return((s=t==null?void 0:t.tagName)==null?void 0:s.toLowerCase())===i.toLowerCase()})}function Qs(t){return t=y(t),t.innerHTML="",t}function Ct(t,e){return X(e)?y(t).innerHTML:q(Qs(t),e)}const br=di("prepend"),q=di("append"),hi=di("before"),ui=di("after");function di(t){return function(e,i){var s;const n=E(z(i)?Lt(i):i);return(s=y(e))==null||s[t](...n),Zs(n)}}function ot(t){E(t).forEach(e=>e.remove())}function fi(t,e){for(e=W(hi(t,e));e.firstElementChild;)e=e.firstElementChild;return q(e,t),e}function is(t,e){return E(E(t).map(i=>i.hasChildNodes()?fi(Zt(i.childNodes),e):q(i,e)))}function Be(t){E(t).map(D).filter((e,i,s)=>s.indexOf(e)===i).forEach(e=>e.replaceWith(...e.childNodes))}const xr=/^<(\w+)\s*\/?>(?:<\/\1>)?$/;function Lt(t){const e=xr.exec(t);if(e)return document.createElement(e[1]);const i=document.createElement("template");return i.innerHTML=t.trim(),Zs(i.content.childNodes)}function Zs(t){return t.length>1?t:t[0]}function Pt(t,e){if(Se(t))for(e(t),t=t.firstElementChild;t;)Pt(t,e),t=t.nextElementSibling}function y(t,e){return tn(t)?W(Lt(t)):Gi(t,e)}function N(t,e){return tn(t)?E(Lt(t)):De(t,e)}function tn(t){return z(t)&>(t.trim(),"<")}const Wt={width:["left","right"],height:["top","bottom"]};function m(t){const e=Se(t)?W(t).getBoundingClientRect():{height:et(t),width:pi(t),top:0,left:0};return{height:e.height,width:e.width,top:e.top,left:e.left,bottom:e.top+e.height,right:e.left+e.width}}function T(t,e){e&&c(t,{left:0,top:0});const i=m(t);if(t){const{scrollY:s,scrollX:n}=Mt(t),o={height:s,width:n};for(const r in Wt)for(const a of Wt[r])i[a]+=o[r]}if(!e)return i;for(const s of["left","top"])c(t,s,e[s]-i[s])}function ss(t){let{top:e,left:i}=T(t);const{ownerDocument:{body:s,documentElement:n},offsetParent:o}=W(t);let r=o||n;for(;r&&(r===s||r===n)&&c(r,"position")==="static";)r=r.parentNode;if(Se(r)){const a=T(r);e-=a.top+k(c(r,"borderTopWidth")),i-=a.left+k(c(r,"borderLeftWidth"))}return{top:e-k(c(t,"marginTop")),left:i-k(c(t,"marginLeft"))}}function Ne(t){t=W(t);const e=[t.offsetTop,t.offsetLeft];for(;t=t.offsetParent;)if(e[0]+=t.offsetTop+k(c(t,"borderTopWidth")),e[1]+=t.offsetLeft+k(c(t,"borderLeftWidth")),c(t,"position")==="fixed"){const i=Mt(t);return e[0]+=i.scrollY,e[1]+=i.scrollX,e}return e}const et=en("height"),pi=en("width");function en(t){const e=Dt(t);return(i,s)=>{if(X(s)){if(Ze(i))return i[`inner${e}`];if(ye(i)){const n=i.documentElement;return Math.max(n[`offset${e}`],n[`scroll${e}`])}return i=W(i),s=c(i,t),s=s==="auto"?i[`offset${e}`]:k(s)||0,s-le(i,t)}else return c(i,t,!s&&s!==0?"":+s+le(i,t)+"px")}}function le(t,e,i="border-box"){return c(t,"boxSizing")===i?Nt(Wt[e],s=>k(c(t,`padding-${s}`))+k(c(t,`border-${s}-width`))):0}function gi(t){for(const e in Wt)for(const i in Wt[e])if(Wt[e][i]===t)return Wt[e][1-i];return t}function Y(t,e="width",i=window,s=!1){return z(t)?Nt(yr(t),n=>{const o=Sr(n);return o?Ir(o==="vh"?Tr():o==="vw"?pi(Mt(i)):s?i[`offset${Dt(e)}`]:m(i)[e],n):n}):k(t)}const $r=/-?\d+(?:\.\d+)?(?:v[wh]|%|px)?/g,yr=ct(t=>t.toString().replace(/\s/g,"").match($r)||[]),kr=/(?:v[hw]|%)$/,Sr=ct(t=>(t.match(kr)||[])[0]);function Ir(t,e){return t*k(e)/100}let ze,ce;function Tr(){return ze||(ce||(ce=y("
      "),c(ce,{height:"100vh",position:"fixed"}),$(window,"resize",()=>ze=null)),q(document.body,ce),ze=ce.clientHeight,ot(ce),ze)}const _t={read:Er,write:Cr,clear:Pr,flush:sn},mi=[],vi=[];function Er(t){return mi.push(t),os(),t}function Cr(t){return vi.push(t),os(),t}function Pr(t){on(mi,t),on(vi,t)}let ns=!1;function sn(){nn(mi),nn(vi.splice(0)),ns=!1,(mi.length||vi.length)&&os()}function os(){ns||(ns=!0,queueMicrotask(sn))}function nn(t){let e;for(;e=t.shift();)try{e()}catch(i){console.error(i)}}function on(t,e){const i=t.indexOf(e);return~i&&t.splice(i,1)}class rn{init(){this.positions=[];let e;this.unbind=$(document,"mousemove",i=>e=yt(i)),this.interval=setInterval(()=>{e&&(this.positions.push(e),this.positions.length>5&&this.positions.shift())},50)}cancel(){var e;(e=this.unbind)==null||e.call(this),clearInterval(this.interval)}movesTo(e){if(!this.positions||this.positions.length<2)return!1;const i=m(e),{left:s,right:n,top:o,bottom:r}=i,[a]=this.positions,l=Bt(this.positions),h=[a,l];return ii(l,i)?!1:[[{x:s,y:o},{x:n,y:r}],[{x:s,y:r},{x:n,y:o}]].some(d=>{const f=_r(h,d);return f&&ii(f,i)})}}function _r([{x:t,y:e},{x:i,y:s}],[{x:n,y:o},{x:r,y:a}]){const l=(a-o)*(i-t)-(r-n)*(s-e);if(l===0)return!1;const h=((r-n)*(e-o)-(a-o)*(t-n))/l;return h<0?!1:{x:t+h*(i-t),y:e+h*(s-e)}}function an(t,e,i={},{intersecting:s=!0}={}){const n=new IntersectionObserver(s?(o,r)=>{o.some(a=>a.isIntersecting)&&e(o,r)}:e,i);for(const o of E(t))n.observe(o);return n}const Ar=Ft&&window.ResizeObserver;function Fe(t,e,i={box:"border-box"}){if(Ar)return ln(ResizeObserver,t,e,i);const s=[$(window,"load resize",e),$(document,"loadedmetadata load",e,!0)];return{disconnect:()=>s.map(n=>n())}}function rs(t){return{disconnect:$([window,window.visualViewport],"resize",t)}}function as(t,e,i){return ln(MutationObserver,t,e,i)}function ln(t,e,i,s){const n=new t(i);for(const o of E(e))n.observe(o,s);return n}function ls(t){xi(t)&&cs(t,{func:"playVideo",method:"play"}),bi(t)&&t.play().catch(A)}function wi(t){xi(t)&&cs(t,{func:"pauseVideo",method:"pause"}),bi(t)&&t.pause()}function cn(t){xi(t)&&cs(t,{func:"mute",method:"setVolume",value:0}),bi(t)&&(t.muted=!0)}function hn(t){return bi(t)||xi(t)}function bi(t){return H(t,"video")}function xi(t){return H(t,"iframe")&&(un(t)||dn(t))}function un(t){return!!t.src.match(/\/\/.*?youtube(-nocookie)?\.[a-z]+\/(watch\?v=[^&\s]+|embed)|youtu\.be\/.*/)}function dn(t){return!!t.src.match(/vimeo\.com\/video\/.*/)}async function cs(t,e){await Dr(t),fn(t,e)}function fn(t,e){t.contentWindow.postMessage(JSON.stringify({event:"command",...e}),"*")}const hs="_ukPlayer";let Or=0;function Dr(t){if(t[hs])return t[hs];const e=un(t),i=dn(t),s=++Or;let n;return t[hs]=new Promise(o=>{e&&F(t,"load",()=>{const r=()=>fn(t,{event:"listening",id:s});n=setInterval(r,100),r()}),F(window,"message",o,!1,({data:r})=>{try{return r=JSON.parse(r),e&&(r==null?void 0:r.id)===s&&r.event==="onReady"||i&&Number(r==null?void 0:r.player_id)===s}catch{}}),t.src=`${t.src}${v(t.src,"?")?"&":"?"}${e?"enablejsapi=1":`api=1&player_id=${s}`}`}).then(()=>clearInterval(n))}function Mr(t,e=0,i=0){return R(t)?ei(...Rt(t).map(s=>{const{top:n,left:o,bottom:r,right:a}=rt(s);return{top:n-e,left:o-i,bottom:r+e,right:a+i}}).concat(T(t))):!1}function pn(t,{offset:e=0}={}){const i=R(t)?jt(t,!1,["hidden"]):[];return i.reduce((r,a,l)=>{const{scrollTop:h,scrollHeight:u,offsetHeight:d}=a,f=rt(a),p=u-f.height,{height:b,top:I}=i[l-1]?rt(i[l-1]):T(t);let P=Math.ceil(I-f.top-e+h);return e>0&&dp?(e-=P-p,P=p):P<0&&(e-=P,P=0),()=>s(a,P-h,t,p).then(r)},()=>Promise.resolve())();function s(r,a,l,h){return new Promise(u=>{const d=r.scrollTop,f=n(Math.abs(a)),p=Date.now(),b=fs(r)===r,I=T(l).top+(b?0:d);let P=0,vt=15;(function ve(){const we=o(Q((Date.now()-p)/f));let wt=0;i[0]===r&&d+ac(r,"position")==="fixed");return~o&&(n=n.slice(o)),[s].concat(n.filter(r=>c(r,"overflow").split(" ").some(a=>v(["auto","scroll",...i],a))&&(!e||r.scrollHeight>rt(r).height))).reverse()}function At(...t){return jt(...t)[0]}function Rt(t){return jt(t,!1,["hidden","clip"])}function rt(t){const e=Mt(t),i=fs(t),s=!ke(t)||t.contains(i);if(s&&e.visualViewport){let{height:l,width:h,scale:u,pageTop:d,pageLeft:f}=e.visualViewport;return l=Math.round(l*u),h=Math.round(h*u),{height:l,width:h,top:d,left:f,bottom:d+l,right:f+h}}let n=T(s?e:t);if(c(t,"display")==="inline")return n;const{body:o,documentElement:r}=e.document,a=s?i===r||i.clientHeight!a.contains(r)&&!ds(a,"static")))=f[u])continue;p=zr(t,e,i,l)[u]-s[u];const I=Nr(t,e[l],o,l);if(!yi(ps(s,p,l),I,l)){if(yi(s,I,l))continue;if(i.recursion)return!1;const P=Fr(t,e,i);if(P&&yi(P,I,1-l))return P;continue}}else if(r[l]==="shift"){const b=T(e[l]),{offset:I}=i;p=Q(Q(s[u],f[u],f[d]-s[h]),b[u]-s[h]+I[l],b[d]-I[l])-s[u]}a=ps(a,p,l)}return a}function wn(t,e,i){let{attach:s,offset:n}={attach:{element:["left","top"],target:["left","top"],...i.attach},offset:[0,0],...i},o=T(t);for(const[r,[a,,l,h]]of Object.entries(at)){const u=s.target[r]===s.element[r]?rt(e[r]):T(e[r]);o=ps(o,u[l]-o[l]+bn(s.target[r],h,u[a])-bn(s.element[r],h,o[a])+ +n[r],r)}return o}function ps(t,e,i){const[,s,n,o]=at[i],r={...t};return r[n]=t[s]=t[n]+e,r[o]+=e,r}function bn(t,e,i){return t==="center"?i/2:t===e?i:0}function Br(t,e,i,s,n){let o=$n(...xn(t,e).map(rt));return i&&(o[at[n][2]]+=i,o[at[n][3]]-=i),s&&(o=$n(o,T(G(s)?s[n]:s))),o}function Nr(t,e,i,s){const[n,o,r,a]=at[s],[l]=xn(t,e),h=rt(l);return["auto","scroll"].includes(c(l,`overflow-${o}`))&&(h[r]-=l[`scroll${Dt(r)}`],h[a]=h[r]+l[`scroll${Dt(n)}`]),h[r]+=i,h[a]-=i,h}function xn(t,e){return Rt(e).filter(i=>i.contains(t))}function $n(...t){let e={};for(const i of t)for(const[,,s,n]of at)e[s]=Math.max(e[s]||0,i[s]),e[n]=Math.min(...[e[n],i[n]].filter(Boolean));return e}function yi(t,e,i){const[,,s,n]=at[i];return t[s]>=e[s]&&t[n]<=e[n]}function zr(t,e,{offset:i,attach:s},n){return wn(t,e,{attach:{element:yn(s.element,n),target:yn(s.target,n)},offset:Hr(i,n)})}function Fr(t,e,i){return vn(t,e,{...i,attach:{element:i.attach.element.map(kn).reverse(),target:i.attach.target.map(kn).reverse()},offset:i.offset.reverse(),placement:i.placement.reverse(),recursion:!0})}function yn(t,e){const i=[...t],s=at[e].indexOf(t[e]);return~s&&(i[e]=at[e][1-s%2+2]),i}function kn(t){for(let e=0;edocument,handler(){document.hidden?this.stop():this.start()}},methods:{start(){this.stop(),this.update(),this.timer||(w(this.$el,"countdownstart"),this.timer=setInterval(this.update,1e3))},stop(){this.timer&&(clearInterval(this.timer),w(this.$el,"countdownstop"),this.timer=null)},update(){const t=Rr(this.date);t.total||(this.stop(),this.end||(w(this.$el,"countdownend"),this.end=!0));for(const e of Wr){const i=y(this.clsWrapper.replace("%unit%",e),this.$el);if(!i)continue;let s=Math.trunc(t[e]).toString().padStart(2,"0");i.textContent!==s&&(s=s.split(""),s.length!==i.children.length&&Ct(i,s.map(()=>"").join("")),s.forEach((n,o)=>i.children[o].textContent=n))}}}};function Rr(t){const e=Math.max(0,t-Date.now())/1e3;return{total:e,seconds:e%60,minutes:e/60%60,hours:e/60/60%24,days:e/60/60/24}}const V={};V.events=V.watch=V.observe=V.created=V.beforeConnect=V.connected=V.beforeDisconnect=V.disconnected=V.destroy=gs,V.args=function(t,e){return e!==!1&&gs(e||t)},V.update=function(t,e){return js(gs(t,tt(e)?{read:e}:e),"order")},V.props=function(t,e){if(G(e)){const i={};for(const s of e)i[s]=String;e=i}return V.methods(t,e)},V.computed=V.methods=function(t,e){return e?t?{...t,...e}:e:t},V.i18n=V.data=function(t,e,i){return i?Sn(t,e,i):e?t?function(s){return Sn(t,e,s)}:e:t};function Sn(t,e,i){return V.computed(tt(t)?t.call(i,i):t,tt(e)?e.call(i,i):e)}function gs(t,e){return t=t&&!G(t)?[t]:t,e?t?t.concat(e):G(e)?e:[e]:t}function qr(t,e){return X(e)?t:e}function He(t,e,i){const s={};if(tt(e)&&(e=e.options),e.extends&&(t=He(t,e.extends,i)),e.mixins)for(const o of e.mixins)t=He(t,o,i);for(const o in t)n(o);for(const o in e)pt(t,o)||n(o);function n(o){s[o]=(V[o]||qr)(t[o],e[o],i)}return s}function he(t,e=[]){try{return t?gt(t,"{")?JSON.parse(t):e.length&&!v(t,":")?{[e[0]]:t}:t.split(";").reduce((i,s)=>{const[n,o]=s.split(/:(.*)/);return n&&!X(o)&&(i[n.trim()]=o.trim()),i},{}):{}}catch{return{}}}function ms(t,e){return t===Boolean?Wi(e):t===Number?xt(e):t==="list"?Vr(e):t===Object&&z(e)?he(e):t?t(e):e}const Ur=/,(?![^(]*\))/;function Vr(t){return G(t)?t:z(t)?t.split(Ur).map(e=>mt(e)?xt(e):Wi(e.trim())):[t]}function Yr(t){t._data={},t._updates=[...t.$options.update||[]],t._disconnect.push(()=>t._updates=t._data=null)}function Gr(t,e){t._updates.unshift(e)}function Le(t,e="update"){t._connected&&t._updates.length&&(t._queued||(t._queued=new Set,_t.read(()=>{t._connected&&Xr(t,t._queued),t._queued=null})),t._queued.add(e.type||e))}function Xr(t,e){for(const{read:i,write:s,events:n=[]}of t._updates){if(!e.has("update")&&!n.some(r=>e.has(r)))continue;let o;i&&(o=i.call(t,t._data,e),o&&te(o)&&dt(t._data,o)),s&&o!==!1&&_t.write(()=>{t._connected&&s.call(t,t._data,e)})}}function ut(t){return je(Fe,t,"resize")}function ue(t){return je(an,t)}function ki(t){return je(as,t)}function Si(t={}){return ue({handler:function(e,i){const{targets:s=this.$el,preload:n=5}=t;for(const o of E(tt(s)?s(this):s))N('[loading="lazy"]',o).slice(0,n-1).forEach(r=>Ee(r,"loading"));for(const o of e.filter(({isIntersecting:r})=>r).map(({target:r})=>r))i.unobserve(o)},...t})}function vs(t){return je((e,i)=>rs(i),t,"resize")}function We(t){return je((e,i)=>({disconnect:$(Kr(e),"scroll",i,{passive:!0})}),t,"scroll")}function In(t){return{observe(e,i){return{observe:A,unobserve:A,disconnect:$(e,ht,i,{passive:!0})}},handler(e){if(!ft(e))return;const i=yt(e),s="tagName"in e.target?e.target:D(e.target);F(document,`${It} ${oi} scroll`,n=>{const{x:o,y:r}=yt(n);(n.type!=="scroll"&&s&&o&&Math.abs(i.x-o)>100||r&&Math.abs(i.y-r)>100)&&setTimeout(()=>{w(s,"swipe"),w(s,`swipe${Jr(i.x,i.y,o,r)}`)})})},...t}}function je(t,e,i){return{observe:t,handler(){Le(this,i)},...e}}function Jr(t,e,i,s){return Math.abs(t-i)>=Math.abs(e-s)?t-i>0?"Left":"Right":e-s>0?"Up":"Down"}function Kr(t){return E(t).map(e=>{const{ownerDocument:i}=e,s=At(e,!0);return s===i.scrollingElement?i:s})}var Tn={props:{margin:String,firstColumn:Boolean},data:{margin:"uk-margin-small-top",firstColumn:"uk-first-column"},observe:[ki({options:{childList:!0}}),ki({options:{attributes:!0,attributeFilter:["style"]},target:({$el:t})=>[t,...M(t)]}),ut({target:({$el:t})=>[t,...M(t)]})],update:{read(){return{rows:ws(M(this.$el))}},write({rows:t}){for(const e of t)for(const i of e)j(i,this.margin,t[0]!==e),j(i,this.firstColumn,e[U?e.length-1:0]===i)},events:["resize"]}};function ws(t){const e=[[]],i=t.some((s,n)=>n&&t[n-1].offsetParent!==s.offsetParent);for(const s of t){if(!R(s))continue;const n=bs(s,i);for(let o=e.length-1;o>=0;o--){const r=e[o];if(!r[0]){r.push(s);break}const a=bs(r[0],i);if(n.top>=a.bottom-1&&n.top!==a.top){e.push([s]);break}if(n.bottom-1>a.top||n.top===a.top){let l=r.length-1;for(;l>=0;l--){const h=bs(r[l],i);if(n.left>=h.left)break}r.splice(l+1,0,s);break}if(o===0){e.unshift([s]);break}}}return e}function bs(t,e=!1){let{offsetTop:i,offsetLeft:s,offsetHeight:n,offsetWidth:o}=t;return e&&([i,s]=Ne(t)),{top:i,left:s,bottom:i+n,right:s+o}}async function Qr(t,e,i){await xs();let s=M(e);const n=s.map(p=>En(p,!0)),o={...c(e,["height","padding"]),display:"block"},r=s.concat(e);await Promise.all(r.map(B.cancel)),c(r,"transitionProperty","none"),await t(),s=s.concat(M(e).filter(p=>!v(s,p))),await Promise.resolve(),c(r,"transitionProperty","");const a=g(e,"style"),l=c(e,["height","padding"]),[h,u]=Zr(e,s,n),d=s.map(p=>({style:g(p,"style")}));s.forEach((p,b)=>u[b]&&c(p,u[b])),c(e,o),w(e,"scroll"),await xs();const f=s.map((p,b)=>D(p)===e&&B.start(p,h[b],i,"ease")).concat(B.start(e,l,i,"ease"));try{await Promise.all(f),s.forEach((p,b)=>{g(p,d[b]),D(p)===e&&c(p,"display",h[b].opacity===0?"none":"")}),g(e,"style",a)}catch{g(s,"style",""),ta(e,o)}}function En(t,e){const i=c(t,"zIndex");return R(t)?{display:"",opacity:e?c(t,"opacity"):"0",pointerEvents:"none",position:"absolute",zIndex:i==="auto"?$t(t):i,...Cn(t)}:!1}function Zr(t,e,i){const s=e.map((o,r)=>D(o)&&r in i?i[r]?R(o)?Cn(o):{opacity:0}:{opacity:R(o)?1:0}:!1),n=s.map((o,r)=>{const a=D(e[r])===t&&(i[r]||En(e[r]));if(!a)return!1;if(!o)delete a.opacity;else if(!("opacity"in o)){const{opacity:l}=a;l%1?o.opacity=1:delete a.opacity}return a});return[s,n]}function ta(t,e){for(const i in e)c(t,i,"")}function Cn(t){const{height:e,width:i}=m(t);return{height:e,width:i,transform:"",...ss(t),...c(t,["marginTop","marginLeft"])}}function xs(){return new Promise(t=>requestAnimationFrame(t))}const $s="uk-transition-leave",ys="uk-transition-enter";function Pn(t,e,i,s=0){const n=Ii(e,!0),o={opacity:1},r={opacity:0},a=u=>()=>n===Ii(e)?u():Promise.reject(),l=a(async()=>{S(e,$s),await Promise.all(An(e).map((u,d)=>new Promise(f=>setTimeout(()=>B.start(u,r,i/2,"ease").then(f),d*s)))),_(e,$s)}),h=a(async()=>{const u=et(e);S(e,ys),t(),c(M(e),{opacity:0}),await xs();const d=M(e),f=et(e);c(e,"alignContent","flex-start"),et(e,u);const p=An(e);c(d,r);const b=p.map(async(I,P)=>{await ea(P*s),await B.start(I,o,i/2,"ease")});u!==f&&b.push(B.start(e,{height:f},i/2+p.length*s,"ease")),await Promise.all(b).then(()=>{_(e,ys),n===Ii(e)&&(c(e,{height:"",alignContent:""}),c(d,{opacity:""}),delete e.dataset.transition)})});return x(e,$s)?_n(e).then(h):x(e,ys)?_n(e).then(l).then(h):l().then(h)}function Ii(t,e){return e&&(t.dataset.transition=1+Ii(t)),xt(t.dataset.transition)||0}function _n(t){return Promise.all(M(t).filter(B.inProgress).map(e=>new Promise(i=>F(e,"transitionend transitioncanceled",i))))}function An(t){return ws(M(t)).flat().filter(R)}function ea(t){return new Promise(e=>setTimeout(e,t))}var On={props:{duration:Number,animation:Boolean},data:{duration:150,animation:"slide"},methods:{animate(t,e=this.$el){const i=this.animation;return(i==="fade"?Pn:i==="delayed-fade"?(...n)=>Pn(...n,40):i?Qr:()=>(t(),Promise.resolve()))(t,e,this.duration).catch(A)}}};const O={TAB:9,ESC:27,SPACE:32,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40};var ia={mixins:[On],args:"target",props:{target:String,selActive:Boolean},data:{target:"",selActive:!1,attrItem:"uk-filter-control",cls:"uk-active",duration:250},computed:{children:({target:t},e)=>N(`${t} > *`,e),toggles:({attrItem:t},e)=>N(`[${t}],[data-${t}]`,e)},watch:{toggles(t){this.updateState();const e=N(this.selActive,this.$el);for(const i of t){this.selActive!==!1&&j(i,this.cls,v(e,i));const s=aa(i);H(s,"a")&&g(s,"role","button")}},children(t,e){e&&this.updateState()}},events:{name:"click keydown",delegate:({attrItem:t})=>`[${t}],[data-${t}]`,handler(t){t.type==="keydown"&&t.keyCode!==O.SPACE||t.target.closest("a,button")&&(t.preventDefault(),this.apply(t.current))}},methods:{apply(t){const e=this.getState(),i=Mn(t,this.attrItem,this.getState());sa(e,i)||this.setState(i)},getState(){return this.toggles.filter(t=>x(t,this.cls)).reduce((t,e)=>Mn(e,this.attrItem,t),{filter:{"":""},sort:[]})},async setState(t,e=!0){t={filter:{"":""},sort:[],...t},w(this.$el,"beforeFilter",[this,t]);for(const i of this.toggles)j(i,this.cls,oa(i,this.attrItem,t));await Promise.all(N(this.target,this.$el).map(i=>{const s=()=>na(t,i,M(i));return e?this.animate(s,i):s()})),w(this.$el,"afterFilter",[this])},updateState(){_t.write(()=>this.setState(this.getState(),!1))}}};function Dn(t,e){return he(J(t,e),["filter"])}function sa(t,e){return["filter","sort"].every(i=>Te(t[i],e[i]))}function na(t,e,i){for(const o of i)c(o,"display",Object.values(t.filter).every(r=>!r||C(o,r))?"":"none");const[s,n]=t.sort;if(s){const o=ra(i,s,n);Te(o,i)||q(e,o)}}function Mn(t,e,i){const{filter:s,group:n,sort:o,order:r="asc"}=Dn(t,e);return(s||X(o))&&(n?s?(delete i.filter[""],i.filter[n]=s):(delete i.filter[n],(ti(i.filter)||""in i.filter)&&(i.filter={"":s||""})):i.filter={"":s||""}),X(o)||(i.sort=[o,r]),i}function oa(t,e,{filter:i={"":""},sort:[s,n]}){const{filter:o="",group:r="",sort:a,order:l="asc"}=Dn(t,e);return X(a)?r in i&&o===i[r]||!o&&r&&!(r in i)&&!i[""]:s===a&&n===l}function ra(t,e,i){return[...t].sort((s,n)=>J(s,e).localeCompare(J(n,e),void 0,{numeric:!0})*(i==="asc"||-1))}function aa(t){return y("a,button",t)||t}let ks;function Bn(t){const e=$(t,"touchstart",s=>{if(s.targetTouches.length!==1||C(s.target,'input[type="range"'))return;let n=yt(s).y;const o=$(t,"touchmove",r=>{const a=yt(r).y;a!==n&&(n=a,jt(r.target).some(l=>{if(!t.contains(l))return!1;let{scrollHeight:h,clientHeight:u}=l;return u{ks=!1,e(),c(i,{overflowY:"",touchAction:"",paddingRight:""})}}var Re={props:{container:Boolean},data:{container:!0},computed:{container({container:t}){return t===!0&&this.$container||t&&y(t)}}},qt={props:{cls:Boolean,animation:"list",duration:Number,velocity:Number,origin:String,transition:String},data:{cls:!1,animation:[!1],duration:200,velocity:.2,origin:!1,transition:"ease",clsEnter:"uk-togglable-enter",clsLeave:"uk-togglable-leave"},computed:{hasAnimation:({animation:t})=>!!t[0],hasTransition:({animation:t})=>["slide","reveal"].some(e=>gt(t[0],e))},methods:{async toggleElement(t,e,i){try{return await Promise.all(E(t).map(s=>{const n=ee(e)?e:!this.isToggled(s);if(!w(s,`before${n?"show":"hide"}`,[this]))return Promise.reject();const o=(tt(i)?i:i===!1||!this.hasAnimation?la:this.hasTransition?ca:ha)(s,n,this),r=n?this.clsEnter:this.clsLeave;S(s,r),w(s,n?"show":"hide",[this]);const a=()=>{_(s,r),w(s,n?"shown":"hidden",[this])};return o?o.then(a,()=>(_(s,r),Promise.reject())):a()})),!0}catch{return!1}},isToggled(t=this.$el){return t=W(t),x(t,this.clsEnter)?!0:x(t,this.clsLeave)?!1:this.cls?x(t,this.cls.split(" ")[0]):R(t)},_toggle(t,e){if(!t)return;e=!!e;let i;this.cls?(i=v(this.cls," ")||e!==x(t,this.cls),i&&j(t,this.cls,v(this.cls," ")?void 0:e)):(i=e===t.hidden,i&&(t.hidden=!e)),i&&w(t,"toggled",[e,this]),N("[autofocus]",t).some(s=>R(s)?s.focus()||!0:s.blur())}}};function la(t,e,{_toggle:i}){return Et.cancel(t),B.cancel(t),i(t,e)}async function ca(t,e,{animation:i,duration:s,velocity:n,transition:o,_toggle:r}){var a;const[l="reveal",h="top"]=((a=i[0])==null?void 0:a.split("-"))||[],u=[["left","right"],["top","bottom"]],d=u[v(u[0],h)?0:1],f=d[1]===h,b=["width","height"][u.indexOf(d)],I=`margin-${d[0]}`,P=`margin-${h}`;let vt=m(t)[b];const ve=B.inProgress(t);await B.cancel(t),e&&r(t,!0);const we=Object.fromEntries(["padding","border","width","height","minWidth","minHeight","overflowY","overflowX",I,P].map(ir=>[ir,t.style[ir]])),wt=m(t),Ws=k(c(t,I)),Zo=k(c(t,P)),Kt=wt[b]+Zo;!ve&&!e&&(vt+=Zo);const[Hi]=is(t,"
      ");c(Hi,{boxSizing:"border-box",height:wt.height,width:wt.width,...c(t,["overflow","padding","borderTop","borderRight","borderBottom","borderLeft","borderImage",P])}),c(t,{padding:0,border:0,minWidth:0,minHeight:0,[P]:0,width:wt.width,height:wt.height,overflow:"hidden",[b]:vt});const tr=vt/Kt;s=(n*Kt+s)*(e?1-tr:tr);const er={[b]:e?Kt:0};f&&(c(t,I,Kt-vt+Ws),er[I]=e?Ws:Kt+Ws),!f^l==="reveal"&&(c(Hi,I,-Kt+vt),B.start(Hi,{[I]:e?0:-Kt},s,o));try{await B.start(t,er,s,o)}finally{c(t,we),Be(Hi.firstChild),e||r(t,!1)}}function ha(t,e,i){const{animation:s,duration:n,_toggle:o}=i;return e?(o(t,!0),Et.in(t,s[0],n,i.origin)):Et.out(t,s[1]||s[0],n,i.origin).then(()=>o(t,!1))}const st=[];var Ss={mixins:[it,Re,qt],props:{selPanel:String,selClose:String,escClose:Boolean,bgClose:Boolean,stack:Boolean,role:String},data:{cls:"uk-open",escClose:!0,bgClose:!0,overlay:!0,stack:!1,role:"dialog"},computed:{panel:({selPanel:t},e)=>y(t,e),transitionElement(){return this.panel},bgClose({bgClose:t}){return t&&this.panel}},connected(){g(this.panel||this.$el,"role",this.role),this.overlay&&g(this.panel||this.$el,"aria-modal",!0)},beforeDisconnect(){v(st,this)&&this.toggleElement(this.$el,!1,!1)},events:[{name:"click",delegate:({selClose:t})=>`${t},a[href*="#"]`,handler(t){const{current:e,defaultPrevented:i}=t,{hash:s}=e;!i&&s&&re(e)&&!this.$el.contains(y(s))?this.hide():C(e,this.selClose)&&(t.preventDefault(),this.hide())}},{name:"toggle",self:!0,handler(t){t.defaultPrevented||(t.preventDefault(),this.isToggled()===v(st,this)&&this.toggle())}},{name:"beforeshow",self:!0,handler(t){if(v(st,this))return!1;!this.stack&&st.length?(Promise.all(st.map(e=>e.hide())).then(this.show),t.preventDefault()):st.push(this)}},{name:"show",self:!0,handler(){this.stack&&c(this.$el,"zIndex",k(c(this.$el,"zIndex"))+st.length);const t=[this.overlay&&da(this),this.overlay&&Bn(this.$el),this.bgClose&&fa(this),this.escClose&&pa(this)];F(this.$el,"hidden",()=>t.forEach(e=>e&&e()),{self:!0}),S(document.documentElement,this.clsPage)}},{name:"shown",self:!0,handler(){ai(this.$el)||g(this.$el,"tabindex","-1"),C(this.$el,":focus-within")||this.$el.focus()}},{name:"hidden",self:!0,handler(){v(st,this)&&st.splice(st.indexOf(this),1),c(this.$el,"zIndex",""),st.some(t=>t.clsPage===this.clsPage)||_(document.documentElement,this.clsPage)}}],methods:{toggle(){return this.isToggled()?this.hide():this.show()},show(){return this.container&&D(this.$el)!==this.container?(q(this.container,this.$el),new Promise(t=>requestAnimationFrame(()=>this.show().then(t)))):this.toggleElement(this.$el,!0,Nn)},hide(){return this.toggleElement(this.$el,!1,Nn)}}};function Nn(t,e,{transitionElement:i,_toggle:s}){return new Promise((n,o)=>F(t,"show hide",()=>{var r;(r=t._reject)==null||r.call(t),t._reject=o,s(t,e);const a=F(i,"transitionstart",()=>{F(i,"transitionend transitioncancel",n,{self:!0}),clearTimeout(l)},{self:!0}),l=setTimeout(()=>{a(),n()},ua(c(i,"transitionDuration")))})).then(()=>delete t._reject)}function ua(t){return t?Qt(t,"ms")?k(t):k(t)*1e3:0}function da(t){return $(document,"focusin",e=>{Bt(st)===t&&!t.$el.contains(e.target)&&t.$el.focus()})}function fa(t){return $(document,ht,({target:e})=>{Bt(st)!==t||t.overlay&&!t.$el.contains(e)||t.panel.contains(e)||F(document,`${It} ${oi} scroll`,({defaultPrevented:i,type:s,target:n})=>{!i&&s===It&&e===n&&t.hide()},!0)})}function pa(t){return $(document,"keydown",e=>{e.keyCode===27&&Bt(st)===t&&t.hide()})}var Is={slide:{show(t){return[{transform:L(t*-100)},{transform:L()}]},percent(t){return qe(t)},translate(t,e){return[{transform:L(e*-100*t)},{transform:L(e*100*(1-t))}]}}};function qe(t){return Math.abs(new DOMMatrix(c(t,"transform")).m41/t.offsetWidth)}function L(t=0,e="%"){return t+=t?e:"",`translate3d(${t}, 0, 0)`}function de(t){return`scale3d(${t}, ${t}, 1)`}function ga(t,e,i,{animation:s,easing:n}){const{percent:o,translate:r,show:a=A}=s,l=a(i),{promise:h,resolve:u}=zn();return{dir:i,show(d,f=0,p){const b=p?"linear":n;return d-=Math.round(d*Q(f,-1,1)),this.translate(f),Ut(e,"itemin",{percent:f,duration:d,timing:b,dir:i}),Ut(t,"itemout",{percent:1-f,duration:d,timing:b,dir:i}),Promise.all([B.start(e,l[1],d,b),B.start(t,l[0],d,b)]).then(()=>{this.reset(),u()},A),h},cancel(){return B.cancel([e,t])},reset(){for(const d in l[0])c([e,t],d,"")},async forward(d,f=this.percent()){return await this.cancel(),this.show(d,f,!0)},translate(d){this.reset();const f=r(d,i);c(e,f[1]),c(t,f[0]),Ut(e,"itemtranslatein",{percent:d,dir:i}),Ut(t,"itemtranslateout",{percent:1-d,dir:i})},percent(){return o(t||e,e,i)},getDistance(){return t==null?void 0:t.offsetWidth}}}function Ut(t,e,i){w(t,ae(e,!1,!1,i))}function zn(){let t;return{promise:new Promise(e=>t=e),resolve:t}}var Ti={props:{i18n:Object},data:{i18n:null},methods:{t(t,...e){var i,s,n;let o=0;return((n=((i=this.i18n)==null?void 0:i[t])||((s=this.$options.i18n)==null?void 0:s[t]))==null?void 0:n.replace(/%s/g,()=>e[o++]||""))||""}}},ma={props:{autoplay:Boolean,autoplayInterval:Number,pauseOnHover:Boolean},data:{autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},connected(){g(this.list,"aria-live",this.autoplay?"off":"polite"),this.autoplay&&this.startAutoplay()},disconnected(){this.stopAutoplay()},update(){g(this.slides,"tabindex","-1")},events:[{name:"visibilitychange",el:()=>document,filter:({autoplay:t})=>t,handler(){document.hidden?this.stopAutoplay():this.startAutoplay()}}],methods:{startAutoplay(){this.stopAutoplay(),this.interval=setInterval(()=>{this.stack.length||this.draggable&&C(this.$el,":focus-within")&&!C(this.$el,":focus")||this.pauseOnHover&&C(this.$el,":hover")||this.show("next")},this.autoplayInterval)},stopAutoplay(){clearInterval(this.interval)}}};const Ue={passive:!1,capture:!0},Fn={passive:!0,capture:!0},va="touchstart mousedown",Ts="touchmove mousemove",Hn="touchend touchcancel mouseup click input scroll",Ln=t=>t.preventDefault();var wa={props:{draggable:Boolean},data:{draggable:!0,threshold:10},created(){for(const t of["start","move","end"]){const e=this[t];this[t]=i=>{const s=yt(i).x*(U?-1:1);this.prevPos=s===this.pos?this.prevPos:this.pos,this.pos=s,e(i)}}},events:[{name:va,passive:!0,delegate:({selList:t})=>`${t} > *`,handler(t){!this.draggable||this.parallax||!ft(t)&&ba(t.target)||t.target.closest(Ce)||t.button>0||this.length<2||this.start(t)}},{name:"dragstart",handler(t){t.preventDefault()}},{name:Ts,el:({list:t})=>t,handler:A,...Ue}],methods:{start(){this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index,$(document,Ts,this.move,Ue),$(document,Hn,this.end,Fn),c(this.list,"userSelect","none")},move(t){const e=this.pos-this.drag;if(e===0||this.prevPos===this.pos||!this.dragging&&Math.abs(e)r;)this.drag-=r*this.dir,s=o,n-=r,o=this.getIndex(s+this.dir),r=Wn.call(this,s,o);this.percent=n/r;const a=i[s],l=i[o],h=this.index!==o,u=s===o;let d;for(const f of[this.index,this.prevIndex])v([o,s],f)||(w(i[f],"itemhidden",[this]),u&&(d=!0,this.prevIndex=s));(this.index===s&&this.prevIndex!==s||d)&&w(i[this.index],"itemshown",[this]),h&&(this.prevIndex=s,this.index=o,u||(w(a,"beforeitemhide",[this]),w(a,"itemhide",[this])),w(l,"beforeitemshow",[this]),w(l,"itemshow",[this])),this._transitioner=this._translate(Math.abs(this.percent),a,!u&&l)},end(){if(Tt(document,Ts,this.move,Ue),Tt(document,Hn,this.end,Fn),this.dragging)if(this.dragging=null,this.index===this.prevIndex)this.percent=1-this.percent,this.dir*=-1,this._show(!1,this.index,!0),this._transitioner=null;else{const t=(U?this.dir*(U?1:-1):this.dir)<0==this.prevPos>this.pos;this.index=t?this.index:this.prevIndex,t&&(this.percent=1-this.percent),this.show(this.dir>0&&!t||this.dir<0&&t?"next":"previous",!0)}setTimeout(()=>Tt(this.list,"click",Ln,Ue)),c(this.list,{userSelect:""}),this.drag=this.percent=null}}};function Wn(t,e){return this._getTransitioner(t,t!==e&&e).getDistance()||this.slides[t].offsetWidth}function ba(t){return c(t,"userSelect")!=="none"&&Zt(t.childNodes).some(e=>e.nodeType===3&&e.textContent.trim())}function xa(t){t._watches=[];for(const e of t.$options.watch||[])for(const[i,s]of Object.entries(e))jn(t,s,i);t._initial=!0}function jn(t,e,i){t._watches.push({name:i,...te(e)?e:{handler:e}})}function $a(t,e){for(const{name:i,handler:s,immediate:n=!0}of t._watches)(t._initial&&n||pt(e,i)&&!Te(e[i],t[i]))&&s.call(t,t[i],e[i]);t._initial=!1}function ya(t){const{computed:e}=t.$options;if(t._computed={},e)for(const i in e)qn(t,i,e[i])}const Rn={subtree:!0,childList:!0};function qn(t,e,i){t._hasComputed=!0,Object.defineProperty(t,e,{enumerable:!0,get(){const{_computed:s,$props:n,$el:o}=t;if(!pt(s,e)&&(s[e]=(i.get||i).call(t,n,o),i.observe&&t._computedObserver)){const r=i.observe.call(t,n);t._computedObserver.observe(["~","+","-"].includes(r[0])?o.parentElement:o.getRootNode(),Rn)}return s[e]},set(s){const{_computed:n}=t;n[e]=i.set?i.set.call(t,s):s,X(n[e])&&delete n[e]}})}function ka(t){t._hasComputed&&(Gr(t,{read:()=>$a(t,Un(t)),events:["resize","computed"]}),t._computedObserver=as(t.$el,()=>Le(t,"computed"),Rn),t._disconnect.push(()=>{t._computedObserver.disconnect(),t._computedObserver=null,Un(t)}))}function Un(t){const e={...t._computed};return t._computed={},e}function Sa(t){for(const e of t.$options.events||[])if(pt(e,"handler"))Vn(t,e);else for(const i in e)Vn(t,e[i],i)}function Vn(t,e,i){let{name:s,el:n,handler:o,capture:r,passive:a,delegate:l,filter:h,self:u}=te(e)?e:{name:i,handler:e};n=tt(n)?n.call(t,t):n||t.$el,!(!n||G(n)&&!n.length||h&&!h.call(t,t))&&t._disconnect.push($(n,s,l?z(l)?l:l.call(t,t):null,z(o)?t[o]:o.bind(t),{passive:a,capture:r,self:u}))}function Ia(t){for(const e of t.$options.observe||[])Ta(t,e)}function Ta(t,e){let{observe:i,target:s=t.$el,handler:n,options:o,filter:r,args:a}=e;if(r&&!r.call(t,t))return;const l=`_observe${t._disconnect.length}`;tt(s)&&!pt(t,l)&&qn(t,l,()=>{const d=s.call(t,t);return G(d)?E(d):d}),n=z(n)?t[n]:n.bind(t),tt(o)&&(o=o.call(t,t));const h=pt(t,l)?t[l]:s,u=i(h,n,o,a);tt(s)&&G(t[l])&&jn(t,{handler:Ea(u,o),immediate:!1},l),t._disconnect.push(()=>u.disconnect())}function Ea(t,e){return(i,s)=>{for(const n of s)v(i,n)||(t.unobserve?t.unobserve(n):t.observe&&t.disconnect());for(const n of i)(!v(s,n)||!t.unobserve)&&t.observe(n,e)}}function Ca(t){const{$options:e,$props:i}=t,s=Yn(e);dt(i,s);const{computed:n,methods:o}=e;for(let r in i)r in s&&(!n||!pt(n,r))&&(!o||!pt(o,r))&&(t[r]=i[r])}function Yn(t){const e={},{args:i=[],props:s={},el:n,id:o}=t;if(!s)return e;for(const a in s){const l=Ot(a);let h=J(n,l);X(h)||(h=s[a]===Boolean&&h===""?!0:ms(s[a],h),!(l==="target"&>(h,"_"))&&(e[a]=h))}const r=he(J(n,o),i);for(const a in r){const l=$e(a);X(s[l])||(e[l]=ms(s[l],r[a]))}return e}const Pa=ct((t,e)=>{const i=Object.keys(e),s=i.concat(t).map(n=>[Ot(n),`data-${Ot(n)}`]).flat();return{attributes:i,filter:s}});function _a(t){const{$options:e,$props:i}=t,{id:s,props:n,el:o}=e;if(!n)return;const{attributes:r,filter:a}=Pa(s,n),l=new MutationObserver(h=>{const u=Yn(e);h.some(({attributeName:d})=>{const f=d.replace("data-","");return(f===s?r:[$e(f),$e(d)]).some(p=>!X(u[p])&&u[p]!==i[p])})&&t.$reset()});l.observe(o,{attributes:!0,attributeFilter:a}),t._disconnect.push(()=>l.disconnect())}function fe(t,e){var i;(i=t.$options[e])==null||i.forEach(s=>s.call(t))}function Es(t){t._connected||(Ca(t),fe(t,"beforeConnect"),t._connected=!0,t._disconnect=[],Sa(t),Yr(t),xa(t),Ia(t),_a(t),ka(t),fe(t,"connected"),Le(t))}function Cs(t){t._connected&&(fe(t,"beforeDisconnect"),t._disconnect.forEach(e=>e()),t._disconnect=null,fe(t,"disconnected"),t._connected=!1)}let Aa=0;function Gn(t,e={}){e.data=Ma(e,t.constructor.options),t.$options=He(t.constructor.options,e,t),t.$props={},t._uid=Aa++,Oa(t),Da(t),ya(t),fe(t,"created"),e.el&&t.$mount(e.el)}function Oa(t){const{data:e={}}=t.$options;for(const i in e)t.$props[i]=t[i]=e[i]}function Da(t){const{methods:e}=t.$options;if(e)for(const i in e)t[i]=e[i].bind(t)}function Ma({data:t={}},{args:e=[],props:i={}}){G(t)&&(t=t.slice(0,e.length).reduce((s,n,o)=>(te(n)?dt(s,n):s[e[o]]=n,s),{}));for(const s in t)X(t[s])?delete t[s]:i[s]&&(t[s]=ms(i[s],t[s]));return t}const lt=function(t){Gn(this,t)};lt.util=Lr,lt.options={},lt.version="3.21.13";const Ba="uk-",Vt="__uikit__",pe={};function Xn(t,e){var i,s;const n=Ba+Ot(t);if(!e)return pe[n].options||(pe[n]=lt.extend(pe[n])),pe[n];t=$e(t),lt[t]=(r,a)=>Ve(t,r,a);const o=(i=e.options)!=null?i:{...e};return o.id=n,o.name=t,(s=o.install)==null||s.call(o,lt,o,t),lt._initialized&&!o.functional&&requestAnimationFrame(()=>Ve(t,`[${n}],[data-${n}]`)),pe[n]=o}function Ve(t,e,i,...s){const n=Xn(t);return n.options.functional?new n({data:te(e)?e:[e,i,...s]}):e?N(e).map(o)[0]:o();function o(r){const a=Ei(r,t);if(a)if(i)a.$destroy();else return a;return new n({el:r,data:i})}}function Ye(t){return(t==null?void 0:t[Vt])||{}}function Ei(t,e){return Ye(t)[e]}function Na(t,e){t[Vt]||(t[Vt]={}),t[Vt][e.$options.name]=e}function za(t,e){var i;(i=t[Vt])==null||delete i[e.$options.name],ti(t[Vt])&&delete t[Vt]}function Fa(t){t.component=Xn,t.getComponents=Ye,t.getComponent=Ei,t.update=Jn,t.use=function(i){if(!i.installed)return i.call(null,this),i.installed=!0,this},t.mixin=function(i,s){s=(z(s)?this.component(s):s)||this,s.options=He(s.options,i)},t.extend=function(i){i||(i={});const s=this,n=function(r){Gn(this,r)};return n.prototype=Object.create(s.prototype),n.prototype.constructor=n,n.options=He(s.options,i),n.super=s,n.extend=s.extend,n};let e;Object.defineProperty(t,"container",{get(){return e||document.body},set(i){e=y(i)}})}function Jn(t,e){t=t?W(t):document.body;for(const i of Ae(t).reverse())Kn(i,e);Pt(t,i=>Kn(i,e))}function Kn(t,e){const i=Ye(t);for(const s in i)Le(i[s],e)}function Ha(t){t.prototype.$mount=function(e){const i=this;Na(e,i),i.$options.el=e,document.contains(e)&&Es(i)},t.prototype.$destroy=function(e=!1){const i=this,{el:s}=i.$options;s&&Cs(i),fe(i,"destroy"),za(s,i),e&&ot(i.$el)},t.prototype.$create=Ve,t.prototype.$emit=function(e){Le(this,e)},t.prototype.$update=function(e=this.$el,i){Jn(e,i)},t.prototype.$reset=function(){Cs(this),Es(this)},t.prototype.$getComponent=Ei,Object.defineProperties(t.prototype,{$el:{get(){return this.$options.el}},$container:Object.getOwnPropertyDescriptor(t,"container")})}let La=1;function Yt(t,e=null){return(e==null?void 0:e.id)||`${t.$options.id}-${La++}`}var Wa={i18n:{next:"Next slide",previous:"Previous slide",slideX:"Slide %s",slideLabel:"%s of %s",role:"String"},data:{selNav:!1,role:"region"},computed:{nav:({selNav:t},e)=>y(t,e),navChildren(){return M(this.nav)},selNavItem:({attrItem:t})=>`[${t}],[data-${t}]`,navItems(t,e){return N(this.selNavItem,e)}},watch:{nav(t,e){g(t,"role","tablist"),this.padNavitems(),e&&this.$emit()},list(t){H(t,"ul")&&g(t,"role","presentation")},navChildren(t){g(t,"role","presentation"),this.padNavitems(),this.updateNav()},navItems(t){for(const e of t){const i=J(e,this.attrItem),s=y("a,button",e)||e;let n,o=null;if(mt(i)){const r=xt(i),a=this.slides[r];a&&(a.id||(a.id=Yt(this,a)),o=a.id),n=this.t("slideX",k(i)+1),g(s,"role","tab")}else this.list&&(this.list.id||(this.list.id=Yt(this,this.list)),o=this.list.id),n=this.t(i);g(s,{"aria-controls":o,"aria-label":g(s,"aria-label")||n})}},slides(t){t.forEach((e,i)=>g(e,{role:this.nav?"tabpanel":"group","aria-label":this.t("slideLabel",i+1,this.length),"aria-roledescription":this.nav?null:"slide"})),this.padNavitems()}},connected(){g(this.$el,{role:this.role,"aria-roledescription":"carousel"})},update:[{write(){this.navItems.concat(this.nav).forEach(t=>t&&(t.hidden=!this.maxIndex)),this.updateNav()},events:["resize"]}],events:[{name:"click keydown",delegate:({selNavItem:t})=>t,filter:({parallax:t})=>!t,handler(t){t.target.closest("a,button")&&(t.type==="click"||t.keyCode===O.SPACE)&&(t.preventDefault(),this.show(J(t.current,this.attrItem)))}},{name:"itemshow",handler:"updateNav"},{name:"keydown",delegate:({selNavItem:t})=>t,filter:({parallax:t})=>!t,handler(t){const{current:e,keyCode:i}=t,s=J(e,this.attrItem);if(!mt(s))return;let n=i===O.HOME?0:i===O.END?"last":i===O.LEFT?"previous":i===O.RIGHT?"next":-1;~n&&(t.preventDefault(),this.show(n))}}],methods:{updateNav(){const t=this.getValidIndex();for(const e of this.navItems){const i=J(e,this.attrItem),s=y("a,button",e)||e;if(mt(i)){const o=xt(i)===t;j(e,this.clsActive,o),j(s,"uk-disabled",this.parallax),g(s,{"aria-selected":o,tabindex:o&&!this.parallax?null:-1}),o&&s&&C(D(e),":focus-within")&&s.focus()}else j(e,"uk-invisible",this.finite&&(i==="previous"&&t===0||i==="next"&&t>=this.maxIndex))}},padNavitems(){if(!this.nav)return;const t=[];for(let e=0;es.matches(`[${i}]`))||y(`
    • `)}Te(t,this.navChildren)||Ct(this.nav,t)}}};const ja="cubic-bezier(0.25, 0.46, 0.45, 0.94)",Ra="cubic-bezier(0.165, 0.84, 0.44, 1)";var Qn={mixins:[ma,wa,Wa,Ti],props:{clsActivated:String,easing:String,index:Number,finite:Boolean,velocity:Number},data:()=>({easing:"ease",finite:!1,velocity:1,index:0,prevIndex:-1,stack:[],percent:0,clsActive:"uk-active",clsActivated:"",clsEnter:"uk-slide-enter",clsLeave:"uk-slide-leave",clsSlideActive:"uk-slide-active",Transitioner:!1,transitionOptions:{}}),connected(){this.prevIndex=-1,this.index=this.getValidIndex(this.$props.index),this.stack=[]},disconnected(){_(this.slides,this.clsActive)},computed:{duration:({velocity:t},e)=>Zn(e.offsetWidth/t),list:({selList:t},e)=>y(t,e),maxIndex(){return this.length-1},slides(){return M(this.list)},length(){return this.slides.length}},watch:{slides(t,e){e&&this.$emit()}},events:{itemshow({target:t}){S(t,this.clsEnter,this.clsSlideActive)},itemshown({target:t}){_(t,this.clsEnter)},itemhide({target:t}){S(t,this.clsLeave)},itemhidden({target:t}){_(t,this.clsLeave,this.clsSlideActive)}},methods:{show(t,e=!1){var i;if(this.dragging||!this.length||this.parallax)return;const{stack:s}=this,n=e?0:s.length,o=()=>{s.splice(n,1),s.length&&this.show(s.shift(),!0)};if(s[e?"unshift":"push"](t),!e&&s.length>1){s.length===2&&((i=this._transitioner)==null||i.forward(Math.min(this.duration,200)));return}const r=this.getIndex(this.index),a=x(this.slides,this.clsActive)&&this.slides[r],l=this.getIndex(t,this.index),h=this.slides[l];if(a===h){o();return}if(this.dir=qa(t,r),this.prevIndex=r,this.index=l,a&&!w(a,"beforeitemhide",[this])||!w(h,"beforeitemshow",[this,a])){this.index=this.prevIndex,o();return}const u=this._show(a,h,e).then(()=>{a&&w(a,"itemhidden",[this]),w(h,"itemshown",[this]),s.shift(),this._transitioner=null,s.length&&requestAnimationFrame(()=>s.length&&this.show(s.shift(),!0))});return a&&w(a,"itemhide",[this]),w(h,"itemshow",[this]),u},getIndex(t=this.index,e=this.index){return Q(nt(t,this.slides,e,this.finite),0,Math.max(0,this.maxIndex))},getValidIndex(t=this.index,e=this.prevIndex){return this.getIndex(t,e)},async _show(t,e,i){if(this._transitioner=this._getTransitioner(t,e,this.dir,{easing:i?e.offsetWidth<600?ja:Ra:this.easing,...this.transitionOptions}),!i&&!t){this._translate(1);return}const{length:s}=this.stack;return this._transitioner[s>1?"forward":"show"](s>1?Math.min(this.duration,75+75/(s-1)):this.duration,this.percent)},_translate(t,e=this.prevIndex,i=this.index){const s=this._getTransitioner(e===i?!1:e,i);return s.translate(t),s},_getTransitioner(t=this.prevIndex,e=this.index,i=this.dir||1,s=this.transitionOptions){return new this.Transitioner(Ie(t)?this.slides[t]:t,Ie(e)?this.slides[e]:e,i*(U?-1:1),s)}}};function qa(t,e){return t==="next"?1:t==="previous"||t({preload:1,videoAutoplay:!1,delayControls:3e3,items:[],cls:"uk-open",clsPage:"uk-lightbox-page",selList:".uk-lightbox-items",attrItem:"uk-lightbox-item",selClose:".uk-close-large",selCaption:".uk-lightbox-caption",pauseOnHover:!1,velocity:2,Animations:eo,template:'
      '}),created(){const t=y(this.template),e=y(this.selList,t);this.items.forEach(()=>q(e,"
      "));const i=y("[uk-close]",t),s=this.t("close");i&&s&&(i.dataset.i18n=JSON.stringify({label:s})),this.$mount(q(this.container,t))},events:[{name:`${ni} ${ht} keydown`,handler:"showControls"},{name:"click",self:!0,delegate:({selList:t})=>`${t} > *`,handler(t){t.defaultPrevented||this.hide()}},{name:"shown",self:!0,handler:"showControls"},{name:"hide",self:!0,handler(){this.hideControls(),_(this.slides,this.clsActive),B.stop(this.slides)}},{name:"hidden",self:!0,handler(){this.$destroy(!0)}},{name:"keyup",el:()=>document,handler({keyCode:t}){if(!this.isToggled(this.$el)||!this.draggable)return;let e=-1;t===O.LEFT?e="previous":t===O.RIGHT?e="next":t===O.HOME?e=0:t===O.END&&(e="last"),~e&&this.show(e)}},{name:"beforeitemshow",handler(t){this.isToggled()||(this.draggable=!1,t.preventDefault(),this.toggleElement(this.$el,!0,!1),this.animation=eo.scale,_(t.target,this.clsActive),this.stack.splice(1,0,this.index))}},{name:"itemshow",handler(){Ct(y(this.selCaption,this.$el),this.getItem().caption||"");for(let t=-this.preload;t<=this.preload;t++)this.loadItem(this.index+t)}},{name:"itemshown",handler(){this.draggable=this.$props.draggable}},{name:"itemload",async handler(t,e){const{source:i,type:s,alt:n="",poster:o,attrs:r={}}=e;if(this.setItem(e,""),!i)return;let a;const l={allowfullscreen:"",style:"max-width: 100%; box-sizing: border-box;","uk-responsive":"","uk-video":`${this.videoAutoplay}`};if(s==="image"||i.match(/\.(avif|jpe?g|jfif|a?png|gif|svg|webp)($|\?)/i)){const h=Ge("img",{src:i,alt:n,...r});$(h,"load",()=>this.setItem(e,h)),$(h,"error",()=>this.setError(e))}else if(s==="video"||i.match(/\.(mp4|webm|ogv)($|\?)/i)){const h=Ge("video",{src:i,poster:o,controls:"",playsinline:"","uk-video":`${this.videoAutoplay}`,...r});$(h,"loadedmetadata",()=>this.setItem(e,h)),$(h,"error",()=>this.setError(e))}else if(s==="iframe"||i.match(/\.(html|php)($|\?)/i))this.setItem(e,Ge("iframe",{src:i,allowfullscreen:"",class:"uk-lightbox-iframe",...r}));else if(a=i.match(/\/\/(?:.*?youtube(-nocookie)?\..*?(?:[?&]v=|\/shorts\/)|youtu\.be\/)([\w-]{11})[&?]?(.*)?/))this.setItem(e,Ge("iframe",{src:`https://www.youtube${a[1]||""}.com/embed/${a[2]}${a[3]?`?${a[3]}`:""}`,width:1920,height:1080,...l,...r}));else if(a=i.match(/\/\/.*?vimeo\.[a-z]+\/(\d+)[&?]?(.*)?/))try{const{height:h,width:u}=await(await fetch(`https://vimeo.com/api/oembed.json?maxwidth=1920&url=${encodeURI(i)}`,{credentials:"omit"})).json();this.setItem(e,Ge("iframe",{src:`https://player.vimeo.com/video/${a[1]}${a[2]?`?${a[2]}`:""}`,width:u,height:h,...l,...r}))}catch{this.setError(e)}}}],methods:{loadItem(t=this.index){const e=this.getItem(t);this.getSlide(e).childElementCount||w(this.$el,"itemload",[e])},getItem(t=this.index){return this.items[nt(t,this.slides)]},setItem(t,e){w(this.$el,"itemloaded",[this,Ct(this.getSlide(t),e)])},getSlide(t){return this.slides[this.items.indexOf(t)]},setError(t){this.setItem(t,'')},showControls(){clearTimeout(this.controlsTimer),this.controlsTimer=setTimeout(this.hideControls,this.delayControls),S(this.$el,"uk-active","uk-transition-active")},hideControls(){_(this.$el,"uk-active","uk-transition-active")}}};function Ge(t,e){const i=Lt(`<${t}>`);return g(i,e),i}var Ua={install:Va,props:{toggle:String},data:{toggle:"a"},computed:{toggles:({toggle:t},e)=>N(t,e)},watch:{toggles(t){this.hide();for(const e of t)H(e,"a")&&g(e,"role","button")}},disconnected(){this.hide()},events:{name:"click",delegate:({toggle:t})=>`${t}:not(.uk-disabled)`,handler(t){t.defaultPrevented||(t.preventDefault(),this.show(t.current))}},methods:{show(t){const e=Rs(this.toggles.map(so),"source");if(Se(t)){const{source:i}=so(t);t=bt(e,({source:s})=>i===s)}return this.panel=this.panel||this.$create("lightboxPanel",{...this.$props,items:e}),$(this.panel.$el,"hidden",()=>this.panel=null),this.panel.show(t)},hide(){var t;return(t=this.panel)==null?void 0:t.hide()}}};function Va(t,e){t.lightboxPanel||t.component("lightboxPanel",io),dt(e.props,t.component("lightboxPanel").options.props)}function so(t){const e={};for(const i of["href","caption","type","poster","alt","attrs"])e[i==="href"?"source":i]=J(t,i);return e.attrs=he(e.attrs),e}var Ya={mixins:[Re],functional:!0,args:["message","status"],data:{message:"",status:"",timeout:5e3,group:"",pos:"top-center",clsContainer:"uk-notification",clsClose:"uk-notification-close",clsMsg:"uk-notification-message"},install:Ga,computed:{marginProp:({pos:t})=>`margin-${t.match(/[a-z]+(?=-)/)[0]}`,startProps(){return{opacity:0,[this.marginProp]:-this.$el.offsetHeight}}},created(){const t=`${this.clsContainer}-${this.pos}`,e=`data-${this.clsContainer}-container`,i=y(`.${t}[${e}]`,this.container)||q(this.container,`
      `);this.$mount(q(i,``))},async connected(){const t=k(c(this.$el,this.marginProp));await B.start(c(this.$el,this.startProps),{opacity:1,[this.marginProp]:t}),this.timeout&&(this.timer=setTimeout(this.close,this.timeout))},events:{click(t){t.target.closest('a[href="#"],a[href=""]')&&t.preventDefault(),this.close()},[Ht](){this.timer&&clearTimeout(this.timer)},[oe](){this.timeout&&(this.timer=setTimeout(this.close,this.timeout))}},methods:{async close(t){const e=i=>{const s=D(i);w(i,"close",[this]),ot(i),s!=null&&s.hasChildNodes()||ot(s)};this.timer&&clearTimeout(this.timer),t||await B.start(this.$el,this.startProps),e(this.$el)}}};function Ga(t){t.notification.closeAll=function(e,i){Pt(document.body,s=>{const n=t.getComponent(s,"notification");n&&(!e||e===n.group)&&n.close(i)})}}var Ci={props:{media:Boolean},data:{media:!1},connected(){const t=Xa(this.media,this.$el);if(this.matchMedia=!0,t){this.mediaObj=window.matchMedia(t);const e=()=>{this.matchMedia=this.mediaObj.matches,w(this.$el,ae("mediachange",!1,!0,[this.mediaObj]))};this.offMediaObj=$(this.mediaObj,"change",()=>{e(),this.$emit("resize")}),e()}},disconnected(){var t;(t=this.offMediaObj)==null||t.call(this)}};function Xa(t,e){if(z(t)){if(gt(t,"@"))t=k(c(e,`--uk-breakpoint-${t.slice(1)}`));else if(isNaN(t))return t}return t&&mt(t)?`(min-width: ${t}px)`:""}function no(t){return R(t)?Math.ceil(Math.max(0,...N("[stroke]",t).map(e=>{var i;return((i=e.getTotalLength)==null?void 0:i.call(e))||0}))):0}const Pi={x:_i,y:_i,rotate:_i,scale:_i,color:Ps,backgroundColor:Ps,borderColor:Ps,blur:Gt,hue:Gt,fopacity:Gt,grayscale:Gt,invert:Gt,saturate:Gt,sepia:Gt,opacity:Ka,stroke:Qa,bgx:ao,bgy:ao},{keys:oo}=Object;var ro={mixins:[Ci],props:fo(oo(Pi),"list"),data:fo(oo(Pi),void 0),computed:{props(t,e){const i={};for(const n in t)n in Pi&&!X(t[n])&&(i[n]=t[n].slice());const s={};for(const n in i)s[n]=Pi[n](n,e,i[n],i);return s}},events:{load(){this.$emit()}},methods:{reset(){for(const t in this.getCss(0))c(this.$el,t,"")},getCss(t){const e={};for(const i in this.props)this.props[i](e,Q(t));return e.willChange=Object.keys(e).map(li).join(","),e}}};function _i(t,e,i){let s=Oi(i)||{x:"px",y:"px",rotate:"deg"}[t]||"",n;return t==="x"||t==="y"?(t=`translate${Dt(t)}`,n=o=>k(k(o).toFixed(s==="px"?0:6))):t==="scale"&&(s="",n=o=>{var r;return Oi([o])?Y(o,"width",e,!0)/e[`offset${(r=o.endsWith)!=null&&r.call(o,"vh")?"Height":"Width"}`]:k(o)}),i.length===1&&i.unshift(t==="scale"?1:0),i=ge(i,n),(o,r)=>{o.transform=`${o.transform||""} ${t}(${Xe(i,r)}${s})`}}function Ps(t,e,i){return i.length===1&&i.unshift(Je(e,t,"")),i=ge(i,s=>Ja(e,s)),(s,n)=>{const[o,r,a]=uo(i,n),l=o.map((h,u)=>(h+=a*(r[u]-h),u===3?k(h):parseInt(h,10))).join(",");s[t]=`rgba(${l})`}}function Ja(t,e){return Je(t,"color",e).split(/[(),]/g).slice(1,-1).concat(1).slice(0,4).map(k)}function Gt(t,e,i){i.length===1&&i.unshift(0);const s=Oi(i)||{blur:"px",hue:"deg"}[t]||"%";return t={fopacity:"opacity",hue:"hue-rotate"}[t]||t,i=ge(i),(n,o)=>{const r=Xe(i,o);n.filter=`${n.filter||""} ${t}(${r+s})`}}function Ka(t,e,i){return i.length===1&&i.unshift(Je(e,t,"")),i=ge(i),(s,n)=>{s[t]=Xe(i,n)}}function Qa(t,e,i){i.length===1&&i.unshift(0);const s=Oi(i),n=no(e);return i=ge(i.reverse(),o=>(o=k(o),s==="%"?o*n/100:o)),i.some(([o])=>o)?(c(e,"strokeDasharray",n),(o,r)=>{o.strokeDashoffset=Xe(i,r)}):A}function ao(t,e,i,s){i.length===1&&i.unshift(0);const n=t==="bgy"?"height":"width";s[t]=ge(i,a=>Y(a,n,e));const o=["bgx","bgy"].filter(a=>a in s);if(o.length===2&&t==="bgx")return A;if(Je(e,"backgroundSize","")==="cover")return Za(t,e,i,s);const r={};for(const a of o)r[a]=lo(e,a);return co(o,r,s)}function Za(t,e,i,s){const n=tl(e);if(!n.width)return A;const o={width:e.offsetWidth,height:e.offsetHeight},r=["bgx","bgy"].filter(u=>u in s),a={};for(const u of r){const d=s[u].map(([P])=>P),f=Math.min(...d),p=Math.max(...d),b=d.indexOf(f){h(u,d),u.backgroundSize=`${l.width}px ${l.height}px`,u.backgroundRepeat="no-repeat"}}function lo(t,e){return Je(t,`background-position-${e.slice(-1)}`,"")}function co(t,e,i){return function(s,n){for(const o of t){const r=Xe(i[o],n);s[`background-position-${o.slice(-1)}`]=`calc(${e[o]} + ${r}px)`}}}const ho={},Ai={};function tl(t){const e=c(t,"backgroundImage").replace(/^none|url\(["']?(.+?)["']?\)$/,"$1");if(Ai[e])return Ai[e];const i=new Image;return e&&(i.src=e,!i.naturalWidth&&!ho[e])?(F(i,"error load",()=>{Ai[e]=_s(i),w(t,ae("load",!1))}),ho[e]=!0,_s(i)):Ai[e]=_s(i)}function _s(t){return{width:t.naturalWidth,height:t.naturalHeight}}function ge(t,e=k){const i=[],{length:s}=t;let n=0;for(let o=0;o0;u--)i[o-u][1]=l+h*(n-u+1);n=0}}return i}function uo(t,e){const i=bt(t.slice(1),([,s])=>e<=s)+1;return[t[i-1][0],t[i][0],(e-t[i-1][1])/(t[i][1]-t[i-1][1])]}function Xe(t,e){const[i,s,n]=uo(t,e);return i+Math.abs(i-s)*n*(i(i[s]=e,i),{})}function po(t,e){return e>=0?Math.pow(t,e+1):1-Math.pow(1-t,1-e)}var il={mixins:[ro],props:{target:String,viewport:Number,easing:Number,start:String,end:String},data:{target:!1,viewport:1,easing:1,start:0,end:0},computed:{target:({target:t},e)=>go(t&&Z(t,e)||e),start({start:t}){return Y(t,"height",this.target,!0)},end({end:t,viewport:e}){return Y(t||(e=(1-e)*100)&&`${e}vh+${e}%`,"height",this.target,!0)}},observe:[vs(),We({target:({target:t})=>t}),ut({target:({$el:t,target:e})=>[t,e,At(e,!0)]})],update:{read({percent:t},e){if(e.has("scroll")||(t=!1),!R(this.$el))return!1;if(!this.matchMedia)return;const i=t;return t=po($i(this.target,this.start,this.end),this.easing),{percent:t,style:i===t?!1:this.getCss(t)}},write({style:t}){if(!this.matchMedia){this.reset();return}t&&c(this.$el,t)},events:["scroll","resize"]}};function go(t){return t?"offsetTop"in t?t:go(D(t)):document.documentElement}var mo={props:{parallax:Boolean,parallaxTarget:Boolean,parallaxStart:String,parallaxEnd:String,parallaxEasing:Number},data:{parallax:!1,parallaxTarget:!1,parallaxStart:0,parallaxEnd:0,parallaxEasing:0},observe:[ut({target:({$el:t,parallaxTarget:e})=>[t,e],filter:({parallax:t})=>t}),We({filter:({parallax:t})=>t})],computed:{parallaxTarget({parallaxTarget:t},e){return t&&Z(t,e)||this.list}},update:{read(){if(!this.parallax)return!1;const t=this.parallaxTarget;if(!t)return!1;const e=Y(this.parallaxStart,"height",t,!0),i=Y(this.parallaxEnd,"height",t,!0),s=po($i(t,e,i),this.parallaxEasing);return{parallax:this.getIndexAt(s)}},write({parallax:t}){const[e,i]=t,s=this.getValidIndex(e+Math.ceil(i)),n=this.slides[e],o=this.slides[s],{triggerShow:r,triggerShown:a,triggerHide:l,triggerHidden:h}=sl(this);if(~this.prevIndex)for(const d of new Set([this.index,this.prevIndex]))v([s,e],d)||(l(this.slides[d]),h(this.slides[d]));const u=this.prevIndex!==e||this.index!==s;this.dir=1,this.prevIndex=e,this.index=s,n!==o&&l(n),r(o),u&&a(n),this._translate(n===o?1:i,n,o)},events:["scroll","resize"]},methods:{getIndexAt(t){const e=t*(this.length-1);return[Math.floor(e),e%1]}}};function sl(t){const{clsSlideActive:e,clsEnter:i,clsLeave:s}=t;return{triggerShow:n,triggerShown:o,triggerHide:r,triggerHidden:a};function n(l){x(l,s)&&(r(l),a(l)),x(l,e)||(w(l,"beforeitemshow",[t]),w(l,"itemshow",[t]))}function o(l){x(l,i)&&w(l,"itemshown",[t])}function r(l){x(l,e)||n(l),x(l,i)&&o(l),x(l,s)||(w(l,"beforeitemhide",[t]),w(l,"itemhide",[t]))}function a(l){x(l,s)&&w(l,"itemhidden",[t])}}var vo={update:{write(){if(this.stack.length||this.dragging||this.parallax)return;const t=this.getValidIndex();!~this.prevIndex||this.index!==t?this.show(t):this._translate(1)},events:["resize"]}},wo={observe:Si({target:({slides:t})=>t,targets:t=>t.getAdjacentSlides()}),methods:{getAdjacentSlides(){return[1,-1].map(t=>this.slides[this.getIndex(this.index+t)])}}};function nl(t,e,i,{center:s,easing:n,list:o}){const r=t?Ke(t,o,s):Ke(e,o,s)+m(e).width*i,a=e?Ke(e,o,s):r+m(t).width*i*(U?-1:1),{promise:l,resolve:h}=zn();return{dir:i,show(u,d=0,f){const p=f?"linear":n;return u-=Math.round(u*Q(d,-1,1)),c(o,"transitionProperty","none"),this.translate(d),c(o,"transitionProperty",""),d=t?d:Q(d,0,1),Ut(this.getItemIn(),"itemin",{percent:d,duration:u,timing:p,dir:i}),t&&Ut(this.getItemIn(!0),"itemout",{percent:1-d,duration:u,timing:p,dir:i}),B.start(o,{transform:L(-a*(U?-1:1),"px")},u,p).then(h,A),l},cancel(){return B.cancel(o)},reset(){c(o,"transform","")},async forward(u,d=this.percent()){return await this.cancel(),this.show(u,d,!0)},translate(u){if(u===this.percent())return;const d=this.getDistance()*i*(U?-1:1);c(o,"transform",L(Q(-a+(d-d*u),-me(o),m(o).width)*(U?-1:1),"px"));const f=this.getActives(),p=this.getItemIn(),b=this.getItemIn(!0);u=t?Q(u,-1,1):0;for(const I of M(o)){const P=v(f,I),vt=I===p,ve=I===b,we=vt||!ve&&(P||i*(U?-1:1)===-1^Di(I,o)>Di(t||e));Ut(I,`itemtranslate${we?"in":"out"}`,{dir:i,percent:ve?1-u:vt?u:P?1:0})}},percent(){return Math.abs((new DOMMatrix(c(o,"transform")).m41*(U?-1:1)+r)/(a-r))},getDistance(){return Math.abs(a-r)},getItemIn(u=!1){let d=this.getActives(),f=xo(o,Ke(e||t,o,s));if(u){const p=d;d=f,f=p}return f[bt(f,p=>!v(d,p))]},getActives(){return xo(o,Ke(t||e,o,s))}}}function Ke(t,e,i){const s=Di(t,e);return i?s-ol(t,e):Math.min(s,bo(e))}function bo(t){return Math.max(0,me(t)-m(t).width)}function me(t,e){return Nt(M(t).slice(0,e),i=>m(i).width)}function ol(t,e){return m(e).width/2-m(t).width/2}function Di(t,e){return t&&(ss(t).left+(U?m(t).width-m(e).width:0))*(U?-1:1)||0}function xo(t,e){e-=1;const i=m(t).width,s=e+i+2;return M(t).filter(n=>{const o=Di(n,t),r=o+Math.min(m(n).width,i);return o>=e&&r<=s})}var rl={mixins:[it,Qn,vo,mo,wo],props:{center:Boolean,sets:Boolean,active:String},data:{center:!1,sets:!1,attrItem:"uk-slider-item",selList:".uk-slider-items",selNav:".uk-slider-nav",clsContainer:"uk-slider-container",active:"all",Transitioner:nl},computed:{finite({finite:t}){return t||al(this.list,this.center)},maxIndex(){if(!this.finite||this.center&&!this.sets)return this.length-1;if(this.center)return Bt(this.sets);let t=0;const e=bo(this.list),i=bt(this.slides,s=>{if(t>=e-.005)return!0;t+=m(s).width});return~i?i:this.length-1},sets({sets:t}){if(!t||this.parallax)return;let e=0;const i=[],s=m(this.list).width;for(let n=0;ns&&(e=0),this.center?es/2&&(i.push(n),e=s/2-o/2):e===0&&i.push(Math.min(n,this.maxIndex)),e+=o}if(i.length)return i},transitionOptions(){return{center:this.center,list:this.list}},slides(){return M(this.list).filter(R)}},connected(){j(this.$el,this.clsContainer,!y(`.${this.clsContainer}`,this.$el))},observe:ut({target:({slides:t,$el:e})=>[e,...t]}),update:{write(){for(const t of this.navItems){const e=xt(J(t,this.attrItem));e!==!1&&(t.hidden=!this.maxIndex||e>this.maxIndex||this.sets&&!v(this.sets,e))}this.reorder(),this.parallax||this._translate(1),this.updateActiveClasses()},events:["resize"]},events:{beforeitemshow(t){!this.dragging&&this.sets&&this.stack.length<2&&!v(this.sets,this.index)&&(this.index=this.getValidIndex());const e=Math.abs(this.index-this.prevIndex+(this.dir>0&&this.indexthis.prevIndex?(this.maxIndex+1)*this.dir:0));if(!this.dragging&&e>1){for(let n=0;n0?"next":"previous");t.preventDefault();return}const i=this.dir<0||!this.slides[this.prevIndex]?this.index:this.prevIndex,s=me(this.list)/this.length;this.duration=Zn(s/this.velocity)*(m(this.slides[i]).width/s),this.reorder()},itemshow(){~this.prevIndex&&S(this._getTransitioner().getItemIn(),this.clsActive),this.updateActiveClasses(this.prevIndex)},itemshown(){this.updateActiveClasses()}},methods:{reorder(){if(this.finite){c(this.slides,"order","");return}const t=this.dir>0&&this.slides[this.prevIndex]?this.prevIndex:this.index;if(this.slides.forEach((n,o)=>c(n,"order",this.dir>0&&o=this.index?-1:"")),!this.center||!this.length)return;const e=this.slides[t];let i=m(this.list).width/2-m(e).width/2,s=0;for(;i>0;){const n=this.getIndex(--s+t,t),o=this.slides[n];c(o,"order",n>t?-2:-1),i-=m(o).width}},updateActiveClasses(t=this.index){let e=this._getTransitioner(t).getActives();this.active!=="all"&&(e=[this.slides[this.getValidIndex(t)]]);const i=[this.clsActive,!this.sets||v(this.sets,k(this.index))?this.clsActivated:""];for(const s of this.slides){const n=v(e,s);j(s,i,n),g(s,"aria-hidden",!n);for(const o of N(Pe,s))pt(o,"_tabindex")||(o._tabindex=g(o,"tabindex")),g(o,"tabindex",n?o._tabindex:-1)}},getValidIndex(t=this.index,e=this.prevIndex){if(t=this.getIndex(t,e),!this.sets)return t;let i;do{if(v(this.sets,t))return t;i=t,t=this.getIndex(t+this.dir,e)}while(t!==i);return t},getAdjacentSlides(){const{width:t}=m(this.list),e=-t,i=t*2,s=m(this.slides[this.index]).width,n=this.center?t/2-s/2:0,o=new Set;for(const r of[-1,1]){let a=n+(r>0?s:0),l=0;do{const h=this.slides[this.getIndex(this.index+r+l++*r)];a+=m(h).width*r,o.add(h)}while(this.length>l&&a>e&&a=0&&eNt(s.filter(u=>!l.has(u)),u=>m(u).width))return!0}return!1}function ll(t){return Math.max(0,...M(t).map(e=>m(e).width))}var $o={mixins:[ro],beforeConnect(){this.item=this.$el.closest(`.${this.$options.id.replace("parallax","items")} > *`)},disconnected(){this.item=null},events:[{name:"itemin itemout",self:!0,el:({item:t})=>t,handler({type:t,detail:{percent:e,duration:i,timing:s,dir:n}}){_t.read(()=>{if(!this.matchMedia)return;const o=this.getCss(ko(t,n,e)),r=this.getCss(yo(t)?.5:n>0?1:0);_t.write(()=>{c(this.$el,o),B.start(this.$el,r,i,s).catch(A)})})}},{name:"transitioncanceled transitionend",self:!0,el:({item:t})=>t,handler(){B.cancel(this.$el)}},{name:"itemtranslatein itemtranslateout",self:!0,el:({item:t})=>t,handler({type:t,detail:{percent:e,dir:i}}){_t.read(()=>{if(!this.matchMedia){this.reset();return}const s=this.getCss(ko(t,i,e));_t.write(()=>c(this.$el,s))})}}]};function yo(t){return Qt(t,"in")}function ko(t,e,i){return i/=2,yo(t)^e<0?i:1-i}var cl={...Is,fade:{show(){return[{opacity:0,zIndex:0},{zIndex:-1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,zIndex:0},{zIndex:-1}]}},scale:{show(){return[{opacity:0,transform:de(1+.5),zIndex:0},{zIndex:-1}]},percent(t){return 1-c(t,"opacity")},translate(t){return[{opacity:1-t,transform:de(1+.5*t),zIndex:0},{zIndex:-1}]}},pull:{show(t){return t<0?[{transform:L(30),zIndex:-1},{transform:L(),zIndex:0}]:[{transform:L(-100),zIndex:0},{transform:L(),zIndex:-1}]},percent(t,e,i){return i<0?1-qe(e):qe(t)},translate(t,e){return e<0?[{transform:L(30*t),zIndex:-1},{transform:L(-100*(1-t)),zIndex:0}]:[{transform:L(-t*100),zIndex:0},{transform:L(30*(1-t)),zIndex:-1}]}},push:{show(t){return t<0?[{transform:L(100),zIndex:0},{transform:L(),zIndex:-1}]:[{transform:L(-30),zIndex:-1},{transform:L(),zIndex:0}]},percent(t,e,i){return i>0?1-qe(e):qe(t)},translate(t,e){return e<0?[{transform:L(t*100),zIndex:0},{transform:L(-30*(1-t)),zIndex:-1}]:[{transform:L(-30*t),zIndex:-1},{transform:L(100*(1-t)),zIndex:0}]}}},hl={mixins:[it,to,vo,mo,wo],props:{ratio:String,minHeight:String,maxHeight:String},data:{ratio:"16:9",minHeight:void 0,maxHeight:void 0,selList:".uk-slideshow-items",attrItem:"uk-slideshow-item",selNav:".uk-slideshow-nav",Animations:cl},watch:{list(t){c(t,{aspectRatio:this.ratio?this.ratio.replace(":","/"):void 0,minHeight:this.minHeight,maxHeight:this.maxHeight,minWidth:"100%",maxWidth:"100%"})}},methods:{getAdjacentSlides(){return[1,-1].map(t=>this.slides[this.getIndex(this.index+t)])}}},ul={mixins:[it,On],props:{group:String,threshold:Number,clsItem:String,clsPlaceholder:String,clsDrag:String,clsDragState:String,clsBase:String,clsNoDrag:String,clsEmpty:String,clsCustom:String,handle:String},data:{group:!1,threshold:5,clsItem:"uk-sortable-item",clsPlaceholder:"uk-sortable-placeholder",clsDrag:"uk-sortable-drag",clsDragState:"uk-drag",clsBase:"uk-sortable",clsNoDrag:"uk-sortable-nodrag",clsEmpty:"uk-sortable-empty",clsCustom:"",handle:!1,pos:{}},events:{name:ht,passive:!1,handler:"init"},computed:{target:(t,e)=>(e.tBodies||[e])[0],items(){return M(this.target)},isEmpty(){return!this.items.length},handles({handle:t},e){return t?N(t,e):this.items}},watch:{isEmpty(t){j(this.target,this.clsEmpty,t)},handles(t,e){c(e,{touchAction:"",userSelect:""}),c(t,{touchAction:"none",userSelect:"none"})}},update:{write(t){if(!this.drag||!D(this.placeholder))return;const{pos:{x:e,y:i},origin:{offsetTop:s,offsetLeft:n},placeholder:o}=this;c(this.drag,{top:i-s,left:e-n});const r=this.getSortable(document.elementFromPoint(e,i));if(!r)return;const{items:a}=r;if(a.some(B.inProgress))return;const l=gl(a,{x:e,y:i});if(a.length&&(!l||l===o))return;const h=this.getSortable(o),u=ml(r.target,l,o,e,i,r===h&&t.moved!==l);u!==!1&&(u&&o===u||(r!==h?(h.remove(o),t.moved=l):delete t.moved,r.insert(o,u),this.touched.add(r)))},events:["move"]},methods:{init(t){const{target:e,button:i,defaultPrevented:s}=t,[n]=this.items.filter(o=>o.contains(e));!n||s||i>0||ri(e)||e.closest(`.${this.clsNoDrag}`)||this.handle&&!e.closest(this.handle)||(t.preventDefault(),this.pos=yt(t),this.touched=new Set([this]),this.placeholder=n,this.origin={target:e,index:$t(n),...this.pos},$(document,ni,this.move),$(document,It,this.end),this.threshold||this.start(t))},start(t){this.drag=pl(this.$container,this.placeholder);const{left:e,top:i}=m(this.placeholder);dt(this.origin,{offsetLeft:this.pos.x-e,offsetTop:this.pos.y-i}),S(this.drag,this.clsDrag,this.clsCustom),S(this.placeholder,this.clsPlaceholder),S(this.items,this.clsItem),S(document.documentElement,this.clsDragState),w(this.$el,"start",[this,this.placeholder]),dl(this.pos),this.move(t)},move:wl(function(t){dt(this.pos,yt(t)),!this.drag&&(Math.abs(this.pos.x-this.origin.x)>this.threshold||Math.abs(this.pos.y-this.origin.y)>this.threshold)&&this.start(t),this.$emit("move")}),end(){if(Tt(document,ni,this.move),Tt(document,It,this.end),!this.drag)return;fl();const t=this.getSortable(this.placeholder);this===t?this.origin.index!==$t(this.placeholder)&&w(this.$el,"moved",[this,this.placeholder]):(w(t.$el,"added",[t,this.placeholder]),w(this.$el,"removed",[this,this.placeholder])),w(this.$el,"stop",[this,this.placeholder]),ot(this.drag),this.drag=null;for(const{clsPlaceholder:e,clsItem:i}of this.touched)for(const s of this.touched)_(s.items,e,i);this.touched=null,_(document.documentElement,this.clsDragState)},insert(t,e){S(this.items,this.clsItem),e&&e.previousElementSibling!==t?this.animate(()=>hi(e,t)):!e&&this.target.lastElementChild!==t&&this.animate(()=>q(this.target,t))},remove(t){this.target.contains(t)&&this.animate(()=>ot(t))},getSortable(t){do{const e=this.$getComponent(t,"sortable");if(e&&(e===this||this.group!==!1&&e.group===this.group))return e}while(t=D(t))}}};let So;function dl(t){let e=Date.now();So=setInterval(()=>{let{x:i,y:s}=t;s+=document.scrollingElement.scrollTop;const n=(Date.now()-e)*.3;e=Date.now(),jt(document.elementFromPoint(i,t.y)).reverse().some(o=>{let{scrollTop:r,scrollHeight:a}=o;const{top:l,bottom:h,height:u}=rt(o);if(ls)r-=n;else if(h>s&&h-350&&r"),q(i,e.cloneNode(!0).children);for(const s of e.getAttributeNames())g(i,s,e.getAttribute(s))}else i=e.cloneNode(!0);return q(t,i),c(i,"margin","0","important"),c(i,{boxSizing:"border-box",width:e.offsetWidth,height:e.offsetHeight,padding:c(e,"padding")}),et(i.firstElementChild,et(e.firstElementChild)),i}function gl(t,e){return t[bt(t,i=>ii(e,m(i)))]}function ml(t,e,i,s,n,o){if(!M(t).length)return;const r=m(e);if(!o)return vl(t,i)||nr[f]-p?!1:e}function vl(t,e){const i=M(t).length===1;i&&q(t,e);const s=M(t),n=s.some((o,r)=>{const a=m(o);return s.slice(r+1).some(l=>{const h=m(l);return!Io([a.left,a.right],[h.left,h.right])})});return i&&ot(e),n}function Io(t,e){return t[1]>e[0]&&e[1]>t[0]}function wl(t){let e;return function(...i){e||(e=!0,t.call(this,...i),requestAnimationFrame(()=>e=!1))}}var To={props:{pos:String,offset:Boolean,flip:Boolean,shift:Boolean,inset:Boolean},data:{pos:`bottom-${U?"right":"left"}`,offset:!1,flip:!0,shift:!0,inset:!1},connected(){this.pos=this.$props.pos.split("-").concat("center").slice(0,2),[this.dir,this.align]=this.pos,this.axis=v(["top","bottom"],this.dir)?"y":"x"},methods:{positionAt(t,e,i){let s=[this.getPositionOffset(t),this.getShiftOffset(t)];const n=[this.flip&&"flip",this.shift&&"shift"],o={element:[this.inset?this.dir:gi(this.dir),this.align],target:[this.dir,this.align]};if(this.axis==="y"){for(const l in o)o[l].reverse();s.reverse(),n.reverse()}const r=Eo(t),a=m(t);c(t,{top:-a.height,left:-a.width}),mn(t,e,{attach:o,offset:s,boundary:i,placement:n,viewportOffset:this.getViewportOffset(t)}),r()},getPositionOffset(t=this.$el){return Y(this.offset===!1?c(t,"--uk-position-offset"):this.offset,this.axis==="x"?"width":"height",t)*(v(["left","top"],this.dir)?-1:1)*(this.inset?-1:1)},getShiftOffset(t=this.$el){return this.align==="center"?0:Y(c(t,"--uk-position-shift-offset"),this.axis==="y"?"width":"height",t)*(v(["left","top"],this.align)?1:-1)},getViewportOffset(t){return Y(c(t,"--uk-position-viewport-offset"))}}};function Eo(t){const e=At(t),{scrollTop:i}=e;return()=>{i!==e.scrollTop&&(e.scrollTop=i)}}var bl={mixins:[Re,qt,To],data:{pos:"top",animation:["uk-animation-scale-up"],duration:100,cls:"uk-active"},connected(){xl(this.$el)},disconnected(){this.hide()},methods:{show(){if(this.isToggled(this.tooltip||null))return;const{delay:t=0,title:e}=yl(this.$options);if(!e)return;const i=g(this.$el,"title"),s=$(this.$el,["blur",oe],o=>!ft(o)&&this.hide());this.reset=()=>{g(this.$el,{title:i,"aria-describedby":null}),s()};const n=Yt(this);g(this.$el,{title:null,"aria-describedby":n}),clearTimeout(this.showTimer),this.showTimer=setTimeout(()=>this._show(e,n),t)},async hide(){var t;C(this.$el,"input:focus")||(clearTimeout(this.showTimer),this.isToggled(this.tooltip||null)&&await this.toggleElement(this.tooltip,!1,!1),(t=this.reset)==null||t.call(this),ot(this.tooltip),this.tooltip=null)},async _show(t,e){this.tooltip=q(this.container,``),$(this.tooltip,"toggled",(i,s)=>{if(!s)return;const n=()=>this.positionAt(this.tooltip,this.$el);n();const[o,r]=$l(this.tooltip,this.$el,this.pos);this.origin=this.axis==="y"?`${gi(o)}-${r}`:`${r}-${gi(o)}`;const a=[F(document,`keydown ${ht}`,this.hide,!1,l=>l.type===ht&&!this.$el.contains(l.target)||l.type==="keydown"&&l.keyCode===O.ESC),$([document,...Rt(this.$el)],"scroll",n,{passive:!0})];F(this.tooltip,"hide",()=>a.forEach(l=>l()),{self:!0})}),await this.toggleElement(this.tooltip,!0)||this.hide()}},events:{[`focus ${Ht} ${ht}`](t){(!ft(t)||t.type===ht)&&this.show()}}};function xl(t){ai(t)||g(t,"tabindex","0")}function $l(t,e,[i,s]){const n=T(t),o=T(e),r=[["left","right"],["top","bottom"]];for(const l of r){if(n[l[0]]>=o[l[1]]){i=l[1];break}if(n[l[1]]<=o[l[0]]){i=l[0];break}}return s=(v(r[0],i)?r[1]:r[0]).find(l=>n[l]===o[l])||"center",[i,s]}function yl(t){const{el:e,id:i,data:s}=t;return["delay","title"].reduce((n,o)=>({[o]:J(e,o),...n}),{...he(J(e,i),["title"]),...s})}var kl={mixins:[Ti],i18n:{invalidMime:"Invalid File Type: %s",invalidName:"Invalid File Name: %s",invalidSize:"Invalid File Size: %s Kilobytes Max"},props:{allow:String,clsDragover:String,concurrent:Number,maxSize:Number,method:String,mime:String,multiple:Boolean,name:String,params:Object,type:String,url:String},data:{allow:!1,clsDragover:"uk-dragover",concurrent:1,maxSize:0,method:"POST",mime:!1,multiple:!1,name:"files[]",params:{},type:"",url:"",abort:A,beforeAll:A,beforeSend:A,complete:A,completeAll:A,error:A,fail:A,load:A,loadEnd:A,loadStart:A,progress:A},events:{change(t){C(t.target,'input[type="file"]')&&(t.preventDefault(),t.target.files&&this.upload(t.target.files),t.target.value="")},drop(t){Mi(t);const e=t.dataTransfer;e!=null&&e.files&&(_(this.$el,this.clsDragover),this.upload(e.files))},dragenter(t){Mi(t)},dragover(t){Mi(t),S(this.$el,this.clsDragover)},dragleave(t){Mi(t),_(this.$el,this.clsDragover)}},methods:{async upload(t){if(t=Zt(t),!t.length)return;w(this.$el,"upload",[t]);for(const s of t){if(this.maxSize&&this.maxSize*1e3{const n=new FormData;s.forEach(o=>n.append(this.name,o));for(const o in this.params)n.append(o,this.params[o]);try{const o=await Il(this.url,{data:n,method:this.method,responseType:this.type,beforeSend:r=>{const{xhr:a}=r;$(a.upload,"progress",this.progress);for(const l of["loadStart","load","loadEnd","abort"])$(a,l.toLowerCase(),this[l]);return this.beforeSend(r)}});this.complete(o),e.length?await i(e.shift()):this.completeAll(o)}catch(o){this.error(o)}};await i(e.shift())}}};function Co(t,e){return e.match(new RegExp(`^${t.replace(/\//g,"\\/").replace(/\*\*/g,"(\\/[^\\/]+)*").replace(/\*/g,"[^\\/]+").replace(/((?!\\))\?/g,"$1.")}$`,"i"))}function Sl(t,e){const i=[];for(let s=0;s{const{xhr:n}=e;for(const o in e)if(o in n)try{n[o]=e[o]}catch{}n.open(e.method.toUpperCase(),t);for(const o in e.headers)n.setRequestHeader(o,e.headers[o]);$(n,"load",()=>{n.status===0||n.status>=200&&n.status<300||n.status===304?i(n):s(dt(Error(n.statusText),{xhr:n,status:n.status}))}),$(n,"error",()=>s(dt(Error("Network Error"),{xhr:n}))),$(n,"timeout",()=>s(dt(Error("Network Timeout"),{xhr:n}))),n.send(e.data)})}var El=Object.freeze({__proto__:null,Countdown:jr,Filter:ia,Lightbox:Ua,LightboxPanel:io,Notification:Ya,Parallax:il,Slider:rl,SliderParallax:$o,Slideshow:hl,SlideshowParallax:$o,Sortable:ul,Tooltip:bl,Upload:kl});function Cl(t){Ft&&window.MutationObserver&&(document.body?requestAnimationFrame(()=>Po(t)):new MutationObserver((e,i)=>{document.body&&(Po(t),i.disconnect())}).observe(document.documentElement,{childList:!0}))}function Po(t){w(document,"uikit:init",t),document.body&&Pt(document.body,_o),new MutationObserver(e=>e.forEach(Pl)).observe(document,{subtree:!0,childList:!0}),new MutationObserver(e=>e.forEach(_l)).observe(document,{subtree:!0,attributes:!0}),t._initialized=!0}function Pl({addedNodes:t,removedNodes:e}){for(const i of t)Pt(i,_o);for(const i of e)Pt(i,Al)}function _l({target:t,attributeName:e}){var i;const s=Ao(e);s&&(St(t,e)?Ve(s,t):(i=Ei(t,s))==null||i.$destroy())}function _o(t){const e=Ye(t);for(const i in e)Es(e[i]);for(const i of t.getAttributeNames()){const s=Ao(i);s&&Ve(s,t)}}function Al(t){const e=Ye(t);for(const i in e)Cs(e[i])}function Ao(t){gt(t,"data-")&&(t=t.slice(5));const e=pe[t];return e&&(e.options||e).name}Fa(lt),Ha(lt);var Oo={mixins:[it,qt],props:{animation:Boolean,targets:String,active:null,collapsible:Boolean,multiple:Boolean,toggle:String,content:String,offset:Number},data:{targets:"> *",active:!1,animation:!0,collapsible:!0,multiple:!1,clsOpen:"uk-open",toggle:"> .uk-accordion-title",content:"> .uk-accordion-content",offset:0},computed:{items:({targets:t},e)=>N(t,e),toggles({toggle:t}){return this.items.map(e=>y(t,e))},contents({content:t}){return this.items.map(e=>{var i;return((i=e._wrapper)==null?void 0:i.firstElementChild)||y(t,e)})}},watch:{items(t,e){if(e||x(t,this.clsOpen))return;const i=this.active!==!1&&t[Number(this.active)]||!this.collapsible&&t[0];i&&this.toggle(i,!1)},toggles(){this.$emit()},contents(t){for(const e of t){const i=x(this.items.find(s=>s.contains(e)),this.clsOpen);Bi(e,!i)}this.$emit()}},observe:Si(),events:[{name:"click keydown",delegate:({targets:t,$props:e})=>`${t} ${e.toggle}`,async handler(t){var e;t.type==="keydown"&&t.keyCode!==O.SPACE||(t.preventDefault(),(e=this._off)==null||e.call(this),this._off=Dl(t.target),await this.toggle($t(this.toggles,t.current)),this._off())}},{name:"shown hidden",self:!0,delegate:({targets:t})=>t,handler(){this.$emit()}}],update(){const t=_e(this.items,`.${this.clsOpen}`);for(const e in this.items){const i=this.toggles[e],s=this.contents[e];if(!i||!s)continue;i.id=Yt(this,i),s.id=Yt(this,s);const n=v(t,this.items[e]);g(i,{role:H(i,"a")?"button":null,"aria-controls":s.id,"aria-expanded":n,"aria-disabled":!this.collapsible&&t.length<2&&n}),g(s,{role:"region","aria-labelledby":i.id}),H(s,"ul")&&g(M(s),"role","presentation")}},methods:{toggle(t,e){t=this.items[nt(t,this.items)];let i=[t];const s=_e(this.items,`.${this.clsOpen}`);if(!this.multiple&&!v(s,i[0])&&(i=i.concat(s)),!(!this.collapsible&&s.length<2&&v(s,t)))return Promise.all(i.map(n=>this.toggleElement(n,!v(s,n),(o,r)=>{if(j(o,this.clsOpen,r),e===!1||!this.animation){Bi(y(this.content,o),!r);return}return Ol(o,r,this)})))}}};function Bi(t,e){t&&(t.hidden=e)}async function Ol(t,e,{content:i,duration:s,velocity:n,transition:o}){var r;i=((r=t._wrapper)==null?void 0:r.firstElementChild)||y(i,t),t._wrapper||(t._wrapper=fi(i,"
      "));const a=t._wrapper;c(a,"overflow","hidden");const l=k(c(a,"height"));await B.cancel(a),Bi(i,!1);const h=Nt(["marginTop","marginBottom"],d=>c(i,d))+m(i).height,u=l/h;s=(n*h+s)*(e?1-u:u),c(a,"height",l),await B.start(a,{height:e?h:0},s,o),Be(i),delete t._wrapper,e||Bi(i,!0)}function Dl(t){const e=At(t,!0);let i;return function s(){i=requestAnimationFrame(()=>{const{top:n}=m(t);n<0&&(e.scrollTop+=n),s()})}(),()=>requestAnimationFrame(()=>cancelAnimationFrame(i))}var Ml={mixins:[it,qt],args:"animation",props:{animation:Boolean,close:String},data:{animation:!0,selClose:".uk-alert-close",duration:150},events:{name:"click",delegate:({selClose:t})=>t,handler(t){t.preventDefault(),this.close()}},methods:{async close(){await this.toggleElement(this.$el,!1,Bl),this.$destroy(!0)}}};function Bl(t,e,{duration:i,transition:s,velocity:n}){const o=k(c(t,"height"));return c(t,"height",o),B.start(t,{height:0,marginTop:0,marginBottom:0,paddingTop:0,paddingBottom:0,borderTop:0,borderBottom:0,opacity:0},n*o+i,s)}var Do={args:"autoplay",props:{automute:Boolean,autoplay:Boolean},data:{automute:!1,autoplay:!0},beforeConnect(){this.autoplay==="inview"&&!St(this.$el,"preload")&&(this.$el.preload="none"),H(this.$el,"iframe")&&!St(this.$el,"allow")&&(this.$el.allow="autoplay"),this.autoplay==="hover"&&(H(this.$el,"video")?this.$el.tabindex=0:this.autoplay=!0),this.automute&&cn(this.$el)},events:[{name:`${Ht} focusin`,filter:({autoplay:t})=>v(t,"hover"),handler(t){!ft(t)||!Nl(this.$el)?ls(this.$el):wi(this.$el)}},{name:`${oe} focusout`,filter:({autoplay:t})=>v(t,"hover"),handler(t){ft(t)||wi(this.$el)}}],observe:[ue({filter:({$el:t,autoplay:e})=>e!=="hover"&&hn(t),handler([{isIntersecting:t}]){document.fullscreenElement||(t?this.autoplay&&ls(this.$el):wi(this.$el))},args:{intersecting:!1},options:({$el:t,autoplay:e})=>({root:e==="inview"?null:D(t)})})]};function Nl(t){return!t.paused&&!t.ended}var zl={mixins:[Do],props:{width:Number,height:Number},data:{automute:!0},created(){this.useObjectFit=H(this.$el,"img","video")},observe:ut({target:({$el:t})=>Mo(t)||D(t),filter:({useObjectFit:t})=>!t}),update:{read(){if(this.useObjectFit)return!1;const{ratio:t,cover:e}=Ui,{$el:i,width:s,height:n}=this;let o={width:s,height:n};if(!s||!n){const h={width:i.naturalWidth||i.videoWidth||i.clientWidth,height:i.naturalHeight||i.videoHeight||i.clientHeight};s?o=t(h,"width",s):n?o=t(h,"height",n):o=h}const{offsetHeight:r,offsetWidth:a}=Mo(i)||D(i),l=e(o,{width:a,height:r});return!l.width||!l.height?!1:l},write({height:t,width:e}){c(this.$el,{height:t,width:e})},events:["resize"]}};function Mo(t){for(;t=D(t);)if(c(t,"position")!=="static")return t}let K;var Bo={mixins:[Re,To,qt],args:"pos",props:{mode:"list",toggle:Boolean,boundary:Boolean,boundaryX:Boolean,boundaryY:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,stretch:Boolean,delayShow:Number,delayHide:Number,autoUpdate:Boolean,clsDrop:String,animateOut:Boolean,bgScroll:Boolean,closeOnScroll:Boolean},data:{mode:["click","hover"],toggle:"- *",boundary:!1,boundaryX:!1,boundaryY:!1,target:!1,targetX:!1,targetY:!1,stretch:!1,delayShow:0,delayHide:800,autoUpdate:!0,clsDrop:!1,animateOut:!1,bgScroll:!0,animation:["uk-animation-fade"],cls:"uk-open",container:!1,closeOnScroll:!1},computed:{boundary({boundary:t,boundaryX:e,boundaryY:i},s){return[Z(e||t,s)||window,Z(i||t,s)||window]},target({target:t,targetX:e,targetY:i},s){return e||(e=t||this.targetEl),i||(i=t||this.targetEl),[e===!0?window:Z(e,s),i===!0?window:Z(i,s)]}},created(){this.tracker=new rn},beforeConnect(){this.clsDrop=this.$props.clsDrop||this.$options.id},connected(){S(this.$el,"uk-drop",this.clsDrop),this.toggle&&!this.targetEl&&(this.targetEl=Hl(this)),this._style=Ri(this.$el.style,["width","height"])},disconnected(){this.isActive()&&(this.hide(!1),K=null),c(this.$el,this._style)},events:[{name:"click",delegate:()=>".uk-drop-close",handler(t){t.preventDefault(),this.hide(!1)}},{name:"click",delegate:()=>'a[href*="#"]',handler({defaultPrevented:t,current:e}){const{hash:i}=e;!t&&i&&re(e)&&!this.$el.contains(y(i))&&this.hide(!1)}},{name:"beforescroll",handler(){this.hide(!1)}},{name:"toggle",self:!0,handler(t,e){t.preventDefault(),this.isToggled()?this.hide(!1):this.show(e==null?void 0:e.$el,!1)}},{name:"toggleshow",self:!0,handler(t,e){t.preventDefault(),this.show(e==null?void 0:e.$el)}},{name:"togglehide",self:!0,handler(t){t.preventDefault(),C(this.$el,":focus,:hover")||this.hide()}},{name:`${Ht} focusin`,filter:({mode:t})=>v(t,"hover"),handler(t){ft(t)||this.clearTimers()}},{name:`${oe} focusout`,filter:({mode:t})=>v(t,"hover"),handler(t){!ft(t)&&t.relatedTarget&&this.hide()}},{name:"toggled",self:!0,handler(t,e){e&&(this.clearTimers(),this.position())}},{name:"show",self:!0,handler(){K=this,this.tracker.init(),g(this.targetEl,"aria-expanded",!0);const t=[Ll(this),Wl(this),Rl(this),this.autoUpdate&&No(this),this.closeOnScroll&&jl(this)];F(this.$el,"hide",()=>t.forEach(e=>e&&e()),{self:!0}),this.bgScroll||F(this.$el,"hidden",Bn(this.$el),{self:!0})}},{name:"beforehide",self:!0,handler:"clearTimers"},{name:"hide",handler({target:t}){if(this.$el!==t){K=K===null&&this.$el.contains(t)&&this.isToggled()?this:K;return}K=this.isActive()?null:K,this.tracker.cancel(),g(this.targetEl,"aria-expanded",null)}}],update:{write(){this.isToggled()&&!x(this.$el,this.clsEnter)&&this.position()}},methods:{show(t=this.targetEl,e=!0){if(this.isToggled()&&t&&this.targetEl&&t!==this.targetEl&&this.hide(!1,!1),this.targetEl=t,this.clearTimers(),!this.isActive()){if(K){if(e&&K.isDelaying()){this.showTimer=setTimeout(()=>C(t,":hover")&&this.show(),10);return}let i;for(;K&&i!==K&&!K.$el.contains(this.$el);)i=K,K.hide(!1,!1)}this.container&&D(this.$el)!==this.container&&q(this.container,this.$el),this.showTimer=setTimeout(()=>this.toggleElement(this.$el,!0),e&&this.delayShow||0)}},hide(t=!0,e=!0){const i=()=>this.toggleElement(this.$el,!1,this.animateOut&&e);this.clearTimers(),this.isDelayedHide=t,t&&this.isDelaying()?this.hideTimer=setTimeout(this.hide,50):t&&this.delayHide?this.hideTimer=setTimeout(i,this.delayHide):i()},clearTimers(){clearTimeout(this.showTimer),clearTimeout(this.hideTimer),this.showTimer=null,this.hideTimer=null},isActive(){return K===this},isDelaying(){return[this.$el,...N(".uk-drop",this.$el)].some(t=>this.tracker.movesTo(t))},position(){const t=Eo(this.$el);_(this.$el,"uk-drop-stack"),c(this.$el,this._style),this.$el.hidden=!0;const e=this.target.map(o=>Fl(this.$el,o)),i=this.getViewportOffset(this.$el),s=[[0,["x","width","left","right"]],[1,["y","height","top","bottom"]]];for(const[o,[r,a]]of s)this.axis!==r&&v([r,!0],this.stretch)&&c(this.$el,{[a]:Math.min(T(this.boundary[o])[a],e[o][a]-2*i),[`overflow-${r}`]:"auto"});const n=e[0].width-2*i;this.$el.hidden=!1,c(this.$el,"maxWidth",""),this.$el.offsetWidth>n&&S(this.$el,"uk-drop-stack"),c(this.$el,"maxWidth",n),this.positionAt(this.$el,this.target,this.boundary);for(const[o,[r,a,l,h]]of s)if(this.axis===r&&v([r,!0],this.stretch)){const u=Math.abs(this.getPositionOffset()),d=T(this.target[o]),f=T(this.$el);c(this.$el,{[a]:(d[l]>f[l]?d[this.inset?h:l]-Math.max(T(this.boundary[o])[l],e[o][l]+i):Math.min(T(this.boundary[o])[h],e[o][h]-i)-d[this.inset?l:h])-u,[`overflow-${r}`]:"auto"}),this.positionAt(this.$el,this.target,this.boundary)}t()}}};function Fl(t,e){return rt(Rt(e).find(i=>i.contains(t)))}function Hl(t){const{$el:e}=t.$create("toggle",Z(t.toggle,t.$el),{target:t.$el,mode:t.mode});return g(e,"aria-haspopup",!0),e}function Ll(t){const e=()=>t.$emit(),i=[rs(e),Fe(Rt(t.$el).concat(t.target),e)];return()=>i.map(s=>s.disconnect())}function No(t,e=()=>t.$emit()){return $([document,...Rt(t.$el)],"scroll",e,{passive:!0})}function Wl(t){return $(document,"keydown",e=>{e.keyCode===O.ESC&&t.hide(!1)})}function jl(t){return No(t,()=>t.hide(!1))}function Rl(t){return $(document,ht,({target:e})=>{t.$el.contains(e)||F(document,`${It} ${oi} scroll`,({defaultPrevented:i,type:s,target:n})=>{var o;!i&&s===It&&e===n&&!((o=t.targetEl)!=null&&o.contains(e))&&t.hide(!1)},!0)})}var zo={mixins:[it,Re],props:{align:String,clsDrop:String,boundary:Boolean,dropbar:Boolean,dropbarAnchor:Boolean,duration:Number,mode:Boolean,offset:Boolean,stretch:Boolean,delayShow:Boolean,delayHide:Boolean,target:Boolean,targetX:Boolean,targetY:Boolean,animation:Boolean,animateOut:Boolean,closeOnScroll:Boolean},data:{align:U?"right":"left",clsDrop:"uk-dropdown",clsDropbar:"uk-dropnav-dropbar",boundary:!0,dropbar:!1,dropbarAnchor:!1,duration:200,container:!1,selNavItem:"> li > a, > ul > li > a"},computed:{dropbarAnchor:({dropbarAnchor:t},e)=>Z(t,e)||e,dropbar({dropbar:t}){return t?(t=this._dropbar||Z(t,this.$el)||y(`+ .${this.clsDropbar}`,this.$el),t||(this._dropbar=y("
      "))):null},dropContainer(t,e){return this.container||e},dropdowns({clsDrop:t},e){var i;const s=N(`.${t}`,e);if(this.dropContainer!==e)for(const n of N(`.${t}`,this.dropContainer)){const o=(i=this.getDropdown(n))==null?void 0:i.targetEl;!v(s,n)&&o&&this.$el.contains(o)&&s.push(n)}return s},items({selNavItem:t},e){return N(t,e)}},watch:{dropbar(t){S(t,"uk-dropbar","uk-dropbar-top",this.clsDropbar,`uk-${this.$options.name}-dropbar`)},dropdowns(){this.initializeDropdowns()}},connected(){this.initializeDropdowns()},disconnected(){ot(this._dropbar),delete this._dropbar},events:[{name:"mouseover focusin",delegate:({selNavItem:t})=>t,handler({current:t}){const e=this.getActive();e&&v(e.mode,"hover")&&e.targetEl&&!t.contains(e.targetEl)&&!e.isDelaying()&&e.hide(!1)}},{name:"keydown",self:!0,delegate:({selNavItem:t})=>t,handler(t){var e;const{current:i,keyCode:s}=t,n=this.getActive();s===O.DOWN&&(n==null?void 0:n.targetEl)===i&&(t.preventDefault(),(e=y(Pe,n.$el))==null||e.focus()),Fo(t,this.items,n)}},{name:"keydown",el:({dropContainer:t})=>t,delegate:({clsDrop:t})=>`.${t}`,handler(t){var e;const{current:i,keyCode:s,target:n}=t;if(ri(n)||!v(this.dropdowns,i))return;const o=this.getActive();let r=-1;if(s===O.HOME?r=0:s===O.END?r="last":s===O.UP?r="previous":s===O.DOWN?r="next":s===O.ESC&&((e=o.targetEl)==null||e.focus()),~r){t.preventDefault();const a=N(Pe,i);a[nt(r,a,bt(a,l=>C(l,":focus")))].focus()}Fo(t,this.items,o)}},{name:"mouseleave",el:({dropbar:t})=>t,filter:({dropbar:t})=>t,handler(){const t=this.getActive();t&&v(t.mode,"hover")&&!this.dropdowns.some(e=>C(e,":hover"))&&t.hide()}},{name:"beforeshow",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){this.isDropbarDrop(t)&&(this.dropbar.previousElementSibling!==this.dropbarAnchor&&ui(this.dropbarAnchor,this.dropbar),S(t,`${this.clsDrop}-dropbar`))}},{name:"show",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){if(!this.isDropbarDrop(t))return;const e=this.getDropdown(t),i=()=>{const s=Math.max(...Ae(t,`.${this.clsDrop}`).concat(t).map(n=>T(n).bottom));T(this.dropbar,{left:T(this.dropbar).left,top:this.getDropbarOffset(e.getPositionOffset())}),this.transitionTo(s-T(this.dropbar).top+k(c(t,"marginBottom")),t)};this._observer=Fe([e.$el,...e.target],i),i()}},{name:"beforehide",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler(t){const e=this.getActive();C(this.dropbar,":hover")&&e.$el===t.target&&this.isDropbarDrop(e.$el)&&v(e.mode,"hover")&&e.isDelayedHide&&!this.items.some(i=>e.targetEl!==i&&C(i,":focus"))&&t.preventDefault()}},{name:"hide",el:({dropContainer:t})=>t,filter:({dropbar:t})=>t,handler({target:t}){var e;if(!this.isDropbarDrop(t))return;(e=this._observer)==null||e.disconnect();const i=this.getActive();(!i||i.$el===t)&&this.transitionTo(0)}}],methods:{getActive(){var t;return v(this.dropdowns,(t=K)==null?void 0:t.$el)&&K},async transitionTo(t,e){const{dropbar:i}=this,s=et(i);if(e=s0&&c(e,"transitionDelay",`${n/t*this.duration}ms`)}c(e,"clipPath",`polygon(0 0,100% 0,100% ${s}px,0 ${s}px)`),et(i,s),await Promise.all([B.start(i,{height:t},this.duration),B.start(e,{clipPath:`polygon(0 0,100% 0,100% ${t}px,0 ${t}px)`},this.duration).finally(()=>c(e,{clipPath:"",transitionDelay:""}))]).catch(A)},getDropdown(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")},isDropbarDrop(t){return v(this.dropdowns,t)&&x(t,this.clsDrop)},getDropbarOffset(t){const{$el:e,target:i,targetY:s}=this,{top:n,height:o}=T(Z(s||i||e,e));return n+o+t},initializeDropdowns(){this.$create("drop",this.dropdowns.filter(t=>!this.getDropdown(t)),{...this.$props,flip:!1,shift:!0,pos:`bottom-${this.align}`,boundary:this.boundary===!0?this.$el:this.boundary})}}};function Fo(t,e,i){var s,n,o;const{current:r,keyCode:a}=t;let l=-1;a===O.HOME?l=0:a===O.END?l="last":a===O.LEFT?l="previous":a===O.RIGHT?l="next":a===O.TAB&&((s=i.targetEl)==null||s.focus(),(n=i.hide)==null||n.call(i,!1)),~l&&(t.preventDefault(),(o=i.hide)==null||o.call(i,!1),e[nt(l,e,e.indexOf(i.targetEl||r))].focus())}var ql={mixins:[it],args:"target",props:{target:Boolean},data:{target:!1},computed:{input:(t,e)=>y(Ce,e),state(){return this.input.nextElementSibling},target({target:t},e){return t&&(t===!0&&D(this.input)===e&&this.input.nextElementSibling||y(t,e))}},update(){var t;const{target:e,input:i}=this;if(!e)return;let s;const n=ri(e)?"value":"textContent",o=e[n],r=(t=i.files)!=null&&t[0]?i.files[0].name:C(i,"select")&&(s=N("option",i).filter(a=>a.selected)[0])?s.textContent:i.value;o!==r&&(e[n]=r)},events:[{name:"change",handler(){this.$emit()}},{name:"reset",el:({$el:t})=>t.closest("form"),handler(){this.$emit()}}]},Ul={extends:Tn,mixins:[it],name:"grid",props:{masonry:Boolean,parallax:String,parallaxStart:String,parallaxEnd:String,parallaxJustify:Boolean},data:{margin:"uk-grid-margin",clsStack:"uk-grid-stack",masonry:!1,parallax:0,parallaxStart:0,parallaxEnd:0,parallaxJustify:!1},connected(){this.masonry&&S(this.$el,"uk-flex-top","uk-flex-wrap-top")},observe:We({filter:({parallax:t,parallaxJustify:e})=>t||e}),update:[{write({rows:t}){j(this.$el,this.clsStack,!t.some(e=>e.length>1))},events:["resize"]},{read(t){const{rows:e}=t;let{masonry:i,parallax:s,parallaxJustify:n,margin:o}=this;if(s=Math.max(0,Y(s)),!(i||s||n)||Ho(e)||e[0].some((b,I)=>e.some(P=>P[I]&&P[I].offsetWidth!==b.offsetWidth)))return t.translates=t.scrollColumns=!1;let r=Yl(e,o),a,l;i?[a,l]=Vl(e,r,i==="next"):a=Gl(e);const h=a.map(b=>Nt(b,"offsetHeight")+r*(b.length-1)),u=Math.max(0,...h);let d,f,p;return(s||n)&&(d=h.map((b,I)=>n?u-b+s:s/(I%2||8)),n||(s=Math.max(...h.map((b,I)=>b+d[I]-u))),f=Y(this.parallaxStart,"height",this.$el,!0),p=Y(this.parallaxEnd,"height",this.$el,!0)),{columns:a,translates:l,scrollColumns:d,parallaxStart:f,parallaxEnd:p,padding:s,height:l?u:""}},write({height:t,padding:e}){c(this.$el,"paddingBottom",e||""),t!==!1&&c(this.$el,"height",t)},events:["resize"]},{read({rows:t,scrollColumns:e,parallaxStart:i,parallaxEnd:s}){return{scrolled:e&&!Ho(t)?$i(this.$el,i,s):!1}},write({columns:t,scrolled:e,scrollColumns:i,translates:s}){!e&&!s||t.forEach((n,o)=>n.forEach((r,a)=>{let[l,h]=s&&s[o][a]||[0,0];e&&(h+=e*i[o]),c(r,"transform",`translate(${l}px, ${h}px)`)}))},events:["scroll","resize"]}]};function Ho(t){return t.flat().some(e=>c(e,"position")==="absolute")}function Vl(t,e,i){const s=[],n=[],o=Array(t[0].length).fill(0);let r=0;for(let a of t){U&&(a=a.reverse());let l=0;for(const h in a){const{offsetWidth:u,offsetHeight:d}=a[h],f=i?h:o.indexOf(Math.min(...o));As(s,f,a[h]),As(n,f,[(f-h)*u*(U?-1:1),o[f]-r]),o[f]+=d+e,l=Math.max(l,d)}r+=l+e}return[s,n]}function Yl(t,e){const i=t.flat().find(s=>x(s,e));return k(i?c(i,"marginTop"):c(t[0][0],"paddingLeft"))}function Gl(t){const e=[];for(const i of t)for(const s in i)As(e,s,i[s]);return e}function As(t,e,i){t[e]||(t[e]=[]),t[e].push(i)}var Xl={args:"target",props:{target:String,row:Boolean},data:{target:"> *",row:!0},computed:{elements:({target:t},e)=>N(t,e)},observe:ut({target:({$el:t,elements:e})=>e.reduce((i,s)=>i.concat(s,...s.children),[t])}),events:{name:"loadingdone",el:()=>document.fonts,handler(){this.$emit("resize")}},update:{read(){return{rows:(this.row?ws(this.elements):[this.elements]).map(Jl)}},write({rows:t}){for(const{heights:e,elements:i}of t)i.forEach((s,n)=>c(s,"minHeight",e[n]))},events:["resize"]}};function Jl(t){if(t.length<2)return{heights:[""],elements:t};let e=t.map(Kl);const i=Math.max(...e);return{heights:t.map((s,n)=>e[n].toFixed(2)===i.toFixed(2)?"":i),elements:t}}function Kl(t){const e=Ri(t.style,["display","minHeight"]);R(t)||c(t,"display","block","important"),c(t,"minHeight","");const i=m(t).height-le(t,"height","content-box");return c(t,e),i}var Ql={args:"target",props:{target:String},data:{target:""},computed:{target:{get:({target:t},e)=>Z(t,e),observe:({target:t})=>t}},observe:ut({target:({target:t})=>t}),update:{read(){return this.target?{height:this.target.offsetHeight}:!1},write({height:t}){c(this.$el,{minHeight:t})},events:["resize"]}},Zl={props:{expand:Boolean,offsetTop:Boolean,offsetBottom:Boolean,minHeight:Number},data:{expand:!1,offsetTop:!1,offsetBottom:!1,minHeight:0},observe:[vs({filter:({expand:t})=>t}),ut({target:({$el:t})=>jt(t)})],update:{read(){if(!R(this.$el))return!1;let t="";const e=le(this.$el,"height","content-box"),{body:i,scrollingElement:s}=document,n=At(this.$el),{height:o}=rt(n===i?s:n),r=s===n||i===n;if(t=`calc(${r?"100vh":`${o}px`}`,this.expand){const a=m(n).height-m(this.$el).height;t+=` - ${a}px`}else{if(this.offsetTop)if(r){const a=this.offsetTop===!0?this.$el:Z(this.offsetTop,this.$el),{top:l}=T(a);t+=l>0&&l{if(!this._connected)return;const e=bc(t,this.$el);return this.svgEl&&e!==this.svgEl&&ot(this.svgEl),xc.call(this,e,t),this.svgEl=e},A)},disconnected(){this.svg.then(t=>{this._connected||(Vi(this.$el)&&(this.$el.hidden=!1),ot(t),this.svgEl=null)}),this.svg=null},methods:{async getSvg(){}}};function bc(t,e){if(Vi(e)||H(e,"canvas")){e.hidden=!0;const s=e.nextElementSibling;return jo(t,s)?s:ui(e,t)}const i=e.lastElementChild;return jo(t,i)?i:q(e,t)}function jo(t,e){return H(t,"svg")&&H(e,"svg")&&t.innerHTML===e.innerHTML}function xc(t,e){const i=["width","height"];let s=i.map(o=>this[o]);s.some(o=>o)||(s=i.map(o=>g(e,o)));const n=g(e,"viewBox");n&&!s.some(o=>o)&&(s=n.split(" ").slice(2)),s.forEach((o,r)=>g(t,i[r],k(o)*this.ratio||null))}var $c={mixins:[Wo],args:"src",props:{src:String,icon:String,attributes:"list",strokeAnimation:Boolean},data:{strokeAnimation:!1},observe:[ki({async handler(){const t=await this.svg;t&&Ro.call(this,t)},options:{attributes:!0,attributeFilter:["id","class","style"]}})],async connected(){v(this.src,"#")&&([this.src,this.icon]=this.src.split("#"));const t=await this.svg;t&&(Ro.call(this,t),this.strokeAnimation&&Ic(t))},methods:{async getSvg(){return H(this.$el,"img")&&!this.$el.complete&&this.$el.loading==="lazy"&&await new Promise(t=>F(this.$el,"load",t)),kc(await yc(this.src),this.icon)||Promise.reject("SVG not found.")}}};function Ro(t){const{$el:e}=this;S(t,g(e,"class"),"uk-svg");for(let i=0;it?gt(t,"data:")?decodeURIComponent(t.split(",")[1]):(await fetch(t)).text():Promise.reject());function kc(t,e){return e&&v(t,"/g,Sc=ct(function(t){const e={};qo.lastIndex=0;let i;for(;i=qo.exec(t);)e[i[3]]=``;return e});function Ic(t){const e=no(t);e&&c(t,"--uk-animation-stroke",e)}function Uo(t){const e=document.createElement("template");return e.innerHTML=t,e.content.firstElementChild}const Ni={spinner:vc,totop:wc,marker:sc,"close-icon":tc,"close-large":ec,"drop-parent-icon":ic,"nav-parent-icon":oc,"nav-parent-icon-large":nc,"navbar-parent-icon":rc,"navbar-toggle-icon":ac,"overlay-icon":lc,"pagination-next":cc,"pagination-previous":hc,"search-icon":Lo,"search-medium":dc,"search-large":uc,"search-toggle-icon":Lo,"slidenav-next":pc,"slidenav-next-large":fc,"slidenav-previous":mc,"slidenav-previous-large":gc},Os={install:Bc,mixins:[Wo],args:"icon",props:{icon:String},isIcon:!0,beforeConnect(){S(this.$el,"uk-icon")},methods:{async getSvg(){const t=zc(this.icon);if(!t)throw"Icon not found.";return t}}},Xt={args:!1,extends:Os,data:t=>({icon:Ot(t.constructor.options.name)}),beforeConnect(){S(this.$el,this.$options.id)}},Tc={extends:Xt,beforeConnect(){const t=this.$props.icon;this.icon=this.$el.closest(".uk-nav-primary")?`${t}-large`:t}},Ec={extends:Xt,mixins:[Ti],i18n:{toggle:"Open Search",submit:"Submit Search"},beforeConnect(){const t=x(this.$el,"uk-search-toggle")||x(this.$el,"uk-navbar-toggle");if(this.icon=t?"search-toggle-icon":x(this.$el,"uk-search-icon")&&this.$el.closest(".uk-search-large")?"search-large":this.$el.closest(".uk-search-medium")?"search-medium":this.$props.icon,!St(this.$el,"aria-label"))if(t){const e=this.t("toggle");g(this.$el,"aria-label",e)}else{const e=this.$el.closest("a,button");if(e){const i=this.t("submit");g(e,"aria-label",i)}}}},Cc={extends:Xt,beforeConnect(){g(this.$el,"role","status")},methods:{async getSvg(){const t=await Os.methods.getSvg.call(this);return this.ratio!==1&&c(y("circle",t),"strokeWidth",1/this.ratio),t}}},Jt={extends:Xt,mixins:[Ti],beforeConnect(){const t=this.$el.closest("a,button");g(t,"role",this.role!==null&&H(t,"a")?"button":this.role);const e=this.t("label");e&&!St(t,"aria-label")&&g(t,"aria-label",e)}},Vo={extends:Jt,beforeConnect(){S(this.$el,"uk-slidenav");const t=this.$props.icon;this.icon=x(this.$el,"uk-slidenav-large")?`${t}-large`:t}},Pc={extends:Jt,i18n:{label:"Open menu"}},_c={extends:Jt,i18n:{label:"Close"},beforeConnect(){this.icon=`close-${x(this.$el,"uk-close-large")?"large":"icon"}`}},Ac={extends:Jt,i18n:{label:"Open"}},Oc={extends:Jt,i18n:{label:"Back to top"}},Dc={extends:Jt,i18n:{label:"Next page"},data:{role:null}},Mc={extends:Jt,i18n:{label:"Previous page"},data:{role:null}},zi={};function Bc(t){t.icon.add=(e,i)=>{const s=z(e)?{[e]:i}:e;ie(s,(n,o)=>{Ni[o]=n,delete zi[o]}),t._initialized&&Pt(document.body,n=>ie(t.getComponents(n),o=>{o.$options.isIcon&&o.icon in s&&o.$reset()}))}}const Nc={twitter:"x"};function zc(t){return t=Nc[t]||t,Ni[t]?(zi[t]||(zi[t]=Uo(Ni[Fc(t)]||Ni[t])),zi[t].cloneNode(!0)):null}function Fc(t){return U?ji(ji(t,"left","right"),"previous","next"):t}var Hc={args:"dataSrc",props:{dataSrc:String,sources:String,margin:String,target:String,loading:String},data:{dataSrc:"",sources:!1,margin:"50%",target:!1,loading:"lazy"},connected(){this.loading!=="lazy"?this.load():Ms(this.$el)&&(this.$el.loading="lazy",Ds(this.$el))},disconnected(){this.img&&(this.img.onload=""),delete this.img},observe:ue({handler(t,e){this.load(),e.disconnect()},options:({margin:t})=>({rootMargin:t}),filter:({loading:t})=>t==="lazy",target:({$el:t,$props:e})=>e.target?[t,...Oe(e.target,t)]:t}),methods:{load(){if(this.img)return this.img;const t=Ms(this.$el)?this.$el:Wc(this.$el,this.dataSrc,this.sources);return Ee(t,"loading"),Ds(this.$el,t.currentSrc),this.img=t}}};function Ds(t,e){if(Ms(t)){const i=D(t);(H(i,"picture")?M(i):[t]).forEach(n=>Yo(n,n))}else e&&!v(t.style.backgroundImage,e)&&(c(t,"backgroundImage",`url(${Ji(e)})`),w(t,ae("load",!1)))}const Lc=["data-src","data-srcset","sizes"];function Yo(t,e){for(const i of Lc){const s=J(t,i);s&&g(e,i.replace(/^(data-)+/,""),s)}}function Wc(t,e,i){const s=new Image;return jc(s,i),Yo(t,s),s.onload=()=>{Ds(t,s.currentSrc)},g(s,"src",e),s}function jc(t,e){if(e=Rc(e),e.length){const i=Lt("");for(const s of e){const n=Lt("");g(n,s),q(i,n)}q(i,t)}}function Rc(t){if(!t)return[];if(gt(t,"["))try{t=JSON.parse(t)}catch{t=[]}else t=he(t);return G(t)||(t=[t]),t.filter(e=>!ti(e))}function Ms(t){return H(t,"img")}var qc={props:{target:String,selActive:String},data:{target:!1,selActive:!1},computed:{target:({target:t},e)=>t?N(t,e):e},observe:[ue({handler(t){this.isIntersecting=t.some(({isIntersecting:e})=>e),this.$emit()},target:({target:t})=>t,args:{intersecting:!1}}),ki({target:({target:t})=>t,options:{attributes:!0,attributeFilter:["class"],attributeOldValue:!0}}),{target:({target:t})=>t,observe:(t,e)=>{const i=Fe([...E(t),document.documentElement],e),s=[$(document,"scroll itemshown itemhidden",e,{passive:!0,capture:!0}),$(document,"show hide transitionstart",n=>(e(),i.observe(n.target))),$(document,"shown hidden transitionend transitioncancel",n=>(e(),i.unobserve(n.target)))];return{observe:i.observe.bind(i),unobserve:i.unobserve.bind(i),disconnect(){i.disconnect(),s.map(n=>n())}}},handler(){this.$emit()}}],update:{read(){if(!this.isIntersecting)return!1;for(const t of E(this.target)){let e=!this.selActive||C(t,this.selActive)?Uc(t):"";e!==!1&&si(t,"uk-light uk-dark",e)}}}};function Uc(t){const e=m(t),i=m(window);if(!ei(e,i))return!1;const{left:s,top:n,height:o,width:r}=e;let a;for(const l of[.25,.5,.75]){const h=t.ownerDocument.elementsFromPoint(Math.max(0,Math.min(s+r*l,i.width-1)),Math.max(0,Math.min(n+o/2,i.height-1)));for(const u of h){if(t.contains(u)||!Vc(u)||u.closest('[class*="-leave"]')&&h.some(f=>u!==f&&C(f,'[class*="-enter"]')))continue;const d=c(u,"--uk-inverse");if(d){if(d===a)return`uk-${d}`;a=d;break}}}return a?`uk-${a}`:""}function Vc(t){if(c(t,"visibility")!=="visible")return!1;for(;t;){if(c(t,"opacity")==="0")return!1;t=D(t)}return!0}var Yc={mixins:[it,Ci],props:{fill:String},data:{fill:"",clsWrapper:"uk-leader-fill",clsHide:"uk-leader-hide",attrFill:"data-fill"},computed:{fill:({fill:t},e)=>t||c(e,"--uk-leader-fill-content")},connected(){[this.wrapper]=is(this.$el,``)},disconnected(){Be(this.wrapper.childNodes)},observe:ut(),update:{read(){return{width:Math.trunc(this.$el.offsetWidth/2),fill:this.fill,hide:!this.matchMedia}},write({width:t,fill:e,hide:i}){j(this.wrapper,this.clsHide,i),g(this.wrapper,this.attrFill,new Array(t).join(e))},events:["resize"]}},Gc={install:Xc,mixins:[Ss],data:{clsPage:"uk-modal-page",selPanel:".uk-modal-dialog",selClose:'[class*="uk-modal-close"]'},events:[{name:"fullscreenchange webkitendfullscreen",capture:!0,handler(t){H(t.target,"video")&&this.isToggled()&&!document.fullscreenElement&&this.hide()}},{name:"show",self:!0,handler(){x(this.panel,"uk-margin-auto-vertical")?S(this.$el,"uk-flex"):c(this.$el,"display","block"),et(this.$el)}},{name:"hidden",self:!0,handler(){c(this.$el,"display",""),_(this.$el,"uk-flex")}}]};function Xc({modal:t}){t.dialog=function(i,s){const n=t(y(`
      ${i}
      `),{stack:!0,role:"alertdialog",...s});return n.show(),$(n.$el,"hidden",async()=>{await Promise.resolve(),n.$destroy(!0)},{self:!0}),n},t.alert=function(i,s){return e(({i18n:n})=>`
      ${z(i)?i:Ct(i)}
      `,s)},t.confirm=function(i,s){return e(({i18n:n})=>`
      ${z(i)?i:Ct(i)}
      `,s,()=>Promise.reject())},t.prompt=function(i,s,n){const o=e(({i18n:l})=>`
      `,n,()=>null,()=>a.value),{$el:r}=o.dialog,a=y("input",r);return a.value=s||"",$(r,"show",()=>a.select()),o},t.i18n={ok:"Ok",cancel:"Cancel"};function e(i,s,n=A,o=A){s={bgClose:!1,escClose:!0,...s,i18n:{...t.i18n,...s==null?void 0:s.i18n}};const r=t.dialog(i(s),s);return dt(new Promise(a=>{const l=$(r.$el,"hide",()=>a(n()));$(r.$el,"submit","form",h=>{h.preventDefault(),a(o(r)),l(),r.hide()})}),{dialog:r})}}var Jc={extends:Oo,data:{targets:"> .uk-parent",toggle:"> a",content:"> ul"}};const Bs="uk-navbar-transparent";var Kc={extends:zo,props:{dropbarTransparentMode:Boolean},data:{clsDrop:"uk-navbar-dropdown",selNavItem:".uk-navbar-nav > li > a,a.uk-navbar-item,button.uk-navbar-item,.uk-navbar-item a,.uk-navbar-item button,.uk-navbar-toggle",dropbarTransparentMode:!1},computed:{navbarContainer:(t,e)=>e.closest(".uk-navbar-container")},watch:{items(){const t=x(this.$el,"uk-navbar-justify"),e=N(".uk-navbar-nav, .uk-navbar-left, .uk-navbar-right",this.$el);for(const i of e){const s=t?N(".uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle",i).length:"";c(i,"flexGrow",s)}}},events:[{name:"show",el:({dropContainer:t})=>t,handler({target:t}){this.getTransparentMode(t)==="remove"&&x(this.navbarContainer,Bs)&&(_(this.navbarContainer,Bs),this._transparent=!0)}},{name:"hide",el:({dropContainer:t})=>t,async handler(){await Qc(),!this.getActive()&&this._transparent&&(S(this.navbarContainer,Bs),this._transparent=null)}}],methods:{getTransparentMode(t){if(!this.navbarContainer)return;if(this.dropbar&&this.isDropbarDrop(t))return this.dropbarTransparentMode;const e=this.getDropdown(t);if(e&&x(t,"uk-dropbar"))return e.inset?"behind":"remove"},getDropbarOffset(t){const{top:e,height:i}=T(this.navbarContainer);return e+(this.dropbarTransparentMode==="behind"?0:i+t)}}};function Qc(){return new Promise(t=>setTimeout(t))}var Zc={mixins:[Ss],args:"mode",props:{mode:String,flip:Boolean,overlay:Boolean,swiping:Boolean},data:{mode:"slide",flip:!1,overlay:!1,clsPage:"uk-offcanvas-page",clsContainer:"uk-offcanvas-container",selPanel:".uk-offcanvas-bar",clsFlip:"uk-offcanvas-flip",clsContainerAnimation:"uk-offcanvas-container-animation",clsSidebarAnimation:"uk-offcanvas-bar-animation",clsMode:"uk-offcanvas",clsOverlay:"uk-offcanvas-overlay",selClose:".uk-offcanvas-close",container:!1,swiping:!0},computed:{clsFlip:({flip:t,clsFlip:e})=>t?e:"",clsOverlay:({overlay:t,clsOverlay:e})=>t?e:"",clsMode:({mode:t,clsMode:e})=>`${e}-${t}`,clsSidebarAnimation:({mode:t,clsSidebarAnimation:e})=>t==="none"||t==="reveal"?"":e,clsContainerAnimation:({mode:t,clsContainerAnimation:e})=>t!=="push"&&t!=="reveal"?"":e,transitionElement({mode:t}){return t==="reveal"?D(this.panel):this.panel}},observe:In({filter:({swiping:t})=>t}),update:{read(){this.isToggled()&&!R(this.$el)&&this.hide()},events:["resize"]},events:[{name:"touchmove",self:!0,passive:!1,filter:({overlay:t})=>t,handler(t){t.cancelable&&t.preventDefault()}},{name:"show",self:!0,handler(){this.mode==="reveal"&&!x(D(this.panel),this.clsMode)&&S(fi(this.panel,"
      "),this.clsMode);const{body:t,scrollingElement:e}=document;S(t,this.clsContainer,this.clsFlip),c(t,"touchAction","pan-y pinch-zoom"),c(this.$el,"display","block"),c(this.panel,"maxWidth",e.clientWidth),S(this.$el,this.clsOverlay),S(this.panel,this.clsSidebarAnimation,this.mode==="reveal"?"":this.clsMode),et(t),S(t,this.clsContainerAnimation),this.clsContainerAnimation&&th()}},{name:"hide",self:!0,handler(){_(document.body,this.clsContainerAnimation),c(document.body,"touchAction","")}},{name:"hidden",self:!0,handler(){this.clsContainerAnimation&&eh(),this.mode==="reveal"&&x(D(this.panel),this.clsMode)&&Be(this.panel),_(this.panel,this.clsSidebarAnimation,this.clsMode),_(this.$el,this.clsOverlay),c(this.$el,"display",""),c(this.panel,"maxWidth",""),_(document.body,this.clsContainer,this.clsFlip)}},{name:"swipeLeft swipeRight",handler(t){this.isToggled()&&Qt(t.type,"Left")^this.flip&&this.hide()}}]};function th(){Go().content+=",user-scalable=0"}function eh(){const t=Go();t.content=t.content.replace(/,user-scalable=0$/,"")}function Go(){return y('meta[name="viewport"]',document.head)||q(document.head,'')}var ih={mixins:[it],props:{selContainer:String,selContent:String,minHeight:Number},data:{selContainer:".uk-modal",selContent:".uk-modal-dialog",minHeight:150},computed:{container:({selContainer:t},e)=>e.closest(t),content:({selContent:t},e)=>e.closest(t)},observe:ut({target:({container:t,content:e})=>[t,e]}),update:{read(){return!this.content||!this.container||!R(this.$el)?!1:{max:Math.max(this.minHeight,et(this.container)-(m(this.content).height-et(this.$el)))}},write({max:t}){c(this.$el,{minHeight:this.minHeight,maxHeight:t})},events:["resize"]}},sh={props:["width","height"],connected(){S(this.$el,"uk-responsive-width"),c(this.$el,"aspectRatio",`${this.width}/${this.height}`)}},nh={props:{offset:Number},data:{offset:0},connected(){oh(this)},disconnected(){rh(this)},methods:{async scrollTo(t){t=t&&y(t)||document.body,w(this.$el,"beforescroll",[this,t])&&(await pn(t,{offset:this.offset}),w(this.$el,"scrolled",[this,t]))}}};const Qe=new Set;function oh(t){Qe.size||$(document,"click",Xo),Qe.add(t)}function rh(t){Qe.delete(t),Qe.size||Tt(document,"click",Xo)}function Xo(t){if(!t.defaultPrevented)for(const e of Qe)e.$el.contains(t.target)&&re(e.$el)&&(t.preventDefault(),window.location.href!==e.$el.href&&window.history.pushState({},"",e.$el.href),e.scrollTo(Yi(e.$el)))}const Ns="uk-scrollspy-inview";var ah={args:"cls",props:{cls:String,target:String,hidden:Boolean,margin:String,repeat:Boolean,delay:Number},data:()=>({cls:"",target:!1,hidden:!0,margin:"-1px",repeat:!1,delay:0}),computed:{elements:({target:t},e)=>t?N(t,e):[e]},watch:{elements(t){this.hidden&&c(_e(t,`:not(.${Ns})`),"opacity",0)}},connected(){this.elementData=new Map},disconnected(){for(const[t,e]of this.elementData.entries())_(t,Ns,(e==null?void 0:e.cls)||"");delete this.elementData},observe:ue({target:({elements:t})=>t,handler(t){const e=this.elementData;for(const{target:i,isIntersecting:s}of t){e.has(i)||e.set(i,{cls:J(i,"uk-scrollspy-class")||this.cls});const n=e.get(i);!this.repeat&&n.show||(n.show=s)}this.$emit()},options:({margin:t})=>({rootMargin:t}),args:{intersecting:!1}}),update:[{write(t){for(const[e,i]of this.elementData.entries())i.show&&!i.inview&&!i.queued?(i.queued=!0,t.promise=(t.promise||Promise.resolve()).then(()=>new Promise(s=>setTimeout(s,this.delay))).then(()=>{this.toggle(e,!0),setTimeout(()=>{i.queued=!1,this.$emit()},300)})):!i.show&&i.inview&&!i.queued&&this.repeat&&this.toggle(e,!1)}}],methods:{toggle(t,e){var i,s;const n=(i=this.elementData)==null?void 0:i.get(t);if(!n)return;(s=n.off)==null||s.call(n),c(t,"opacity",!e&&this.hidden?0:""),j(t,Ns,e),j(t,n.cls);let o;if(o=n.cls.match(/\buk-animation-[\w-]+/g)){const r=()=>_(t,o);e?n.off=F(t,"animationcancel animationend",r,{self:!0}):r()}w(t,e?"inview":"outview"),n.inview=e}}},lh={props:{cls:String,closest:Boolean,scroll:Boolean,target:String,offset:Number},data:{cls:"uk-active",closest:!1,scroll:!1,target:'a[href]:not([role="button"])',offset:0},computed:{links:({target:t},e)=>N(t,e).filter(i=>re(i)),elements({closest:t}){return this.links.map(e=>e.closest(t||"*"))}},watch:{links(t){this.scroll&&this.$create("scroll",t,{offset:this.offset})}},observe:[ue(),We()],update:[{read(){const t=this.links.map(l=>Yi(l)||l.ownerDocument),{length:e}=t;if(!e||!R(this.$el))return!1;const i=At(t,!0),{scrollTop:s,scrollHeight:n}=i,o=rt(i),r=n-o.height;let a=!1;if(s>=r)a=e-1;else{const l=this.offset+m(us()).height+o.height*.1;for(let h=0;h0);h++)a=+h}return{active:a}},write({active:t}){const e=t!==!1&&!x(this.elements[t],this.cls);this.links.forEach(i=>i.blur());for(let i=0;it&&y(t,e)||e},connected(){this.start=Jo(this.start||this.top),this.end=Jo(this.end||this.bottom),this.placeholder=y("+ .uk-sticky-placeholder",this.$el)||y('
      '),this.isFixed=!1,this.setActive(!1)},beforeDisconnect(){this.isFixed&&(this.hide(),_(this.target,this.clsInactive)),Ko(this.$el),ot(this.placeholder),this.placeholder=null},observe:[vs(),We({target:()=>document.scrollingElement}),ut({target:({$el:t})=>[t,Fi(t),document.scrollingElement],handler(t){this.$emit(this._data.resized&&t.some(({target:e})=>e===Fi(this.$el))?"update":"resize"),this._data.resized=!0}})],events:[{name:"load hashchange popstate",el:()=>window,filter:({targetOffset:t})=>t!==!1,handler(){const{scrollingElement:t}=document;!location.hash||t.scrollTop===0||setTimeout(()=>{const e=T(y(location.hash)),i=T(this.$el);this.isFixed&&ei(e,i)&&(t.scrollTop=Math.ceil(e.top-i.height-Y(this.targetOffset,"height",this.placeholder)-Y(this.offset,"height",this.placeholder)))})}}],update:[{read({height:t,width:e,margin:i,sticky:s},n){if(this.inactive=!this.matchMedia||!R(this.$el)||!this.$el.offsetHeight,this.inactive)return;const o=et(window),r=Math.max(0,document.scrollingElement.scrollHeight-o);if(!r){this.inactive=!0;return}const a=this.isFixed&&n.has("update");a&&(Hs(this.target),this.hide()),this.active||({height:t,width:e}=m(this.$el),i=c(this.$el,"margin")),a&&this.show();const l=Y("100vh","height");let h=this.position;this.overflowFlip&&t>l&&(h=h==="top"?"bottom":"top");const u=this.isFixed?this.placeholder:this.$el;let d=Y(this.offset,"height",s?this.$el:u);h==="bottom"&&(tT(f).top+(l?Math.min(a,r):a),offsetParentTop:T(f.offsetParent).top,overflowScroll:Q(s+Q(u,n,o)-Q(t,n,o),0,i)}},write(t,e){const i=e.has("scroll"),{initTimestamp:s=0,dir:n,prevDir:o,scroll:r,prevScroll:a=0,top:l,start:h,below:u}=t;if(r<0||r===a&&i||this.showOnUp&&!i&&!this.isFixed)return;const d=Date.now();if((d-s>300||n!==o)&&(t.initScroll=r,t.initTimestamp=d),!(this.showOnUp&&!this.isFixed&&Math.abs(t.initScroll-r)<=30&&Math.abs(a-r)<=10))if(this.inactive||rr&&(Et.cancel(this.$el),this.hide());return}if(this.animation&&u){if(x(this.$el,"uk-animation-leave"))return;Et.out(this.$el,this.animation).then(()=>this.hide(),A)}else this.hide()}else this.isFixed?this.update():this.animation&&u?(this.show(),Et.in(this.$el,this.animation).catch(A)):(Hs(this.target),this.show())},events:["resize","resizeViewport","scroll"]}],methods:{show(){this.isFixed=!0,this.update(),this.placeholder.hidden=!1},hide(){const{offset:t,sticky:e}=this._data;this.setActive(!1),_(this.$el,this.clsFixed,this.clsBelow),e?c(this.$el,"top",t):c(this.$el,{position:"",top:"",width:"",marginTop:""}),this.placeholder.hidden=!0,this.isFixed=!1},update(){let{width:t,scroll:e=0,overflow:i,overflowScroll:s=0,start:n,end:o,offset:r,offsetParentTop:a,sticky:l,below:h}=this._data;const u=n!==0||e>n;if(!l){let d="fixed";e>o&&(r+=o-a+s-i,d="absolute"),c(this.$el,{position:d,width:t,marginTop:0},"important")}c(this.$el,"top",r-s),this.setActive(u),j(this.$el,this.clsBelow,h),S(this.$el,this.clsFixed)},setActive(t){const e=this.active;this.active=t,t?(si(this.target,this.clsInactive,this.clsActive),e!==t&&w(this.$el,"active")):(si(this.target,this.clsActive,this.clsInactive),e!==t&&(Hs(this.target),w(this.$el,"inactive")))}}};function zs(t,e,i,s){if(!t)return 0;if(mt(t)||z(t)&&t.match(/^-?\d/))return i+Y(t,"height",e,!0);{const n=t===!0?Fi(e):Z(t,e);return T(n).bottom-(s&&(n!=null&&n.contains(e))?k(c(n,"paddingBottom"))+k(c(n,"borderBottomWidth")):0)}}function Jo(t){return t==="true"?!0:t==="false"?!1:t}function Ko(t){c(t,{position:"",top:"",marginTop:"",width:""})}const Fs="uk-transition-disable";function Hs(t){x(t,Fs)||(S(t,Fs),requestAnimationFrame(()=>_(t,Fs)))}function Fi(t){for(;t=D(t);)if(R(t))return t}const Ls=".uk-disabled *, .uk-disabled, [disabled]";var Qo={mixins:[qt],args:"connect",props:{connect:String,toggle:String,itemNav:String,active:Number,followFocus:Boolean,swiping:Boolean},data:{connect:"~.uk-switcher",toggle:"> * > :first-child",itemNav:!1,active:0,cls:"uk-active",attrItem:"uk-switcher-item",selVertical:".uk-nav",followFocus:!1,swiping:!0},computed:{connects:{get:({connect:t},e)=>Oe(t,e),observe:({connect:t})=>t},connectChildren(){return this.connects.map(t=>M(t)).flat()},toggles:({toggle:t},e)=>N(t,e),children(t,e){return M(e).filter(i=>this.toggles.some(s=>i.contains(s)))}},watch:{connects(t){this.swiping&&c(t,"touchAction","pan-y pinch-zoom"),this.$emit()},connectChildren(){let t=Math.max(0,this.index());for(const e of this.connects)M(e).forEach((i,s)=>j(i,this.cls,s===t));this.$emit()},toggles(t){this.$emit();const e=this.index();this.show(~e?e:t[this.active]||t[0])}},connected(){g(this.$el,"role","tablist")},observe:[Si({targets:({connectChildren:t})=>t}),In({target:({connects:t})=>t,filter:({swiping:t})=>t})],events:[{name:"click keydown",delegate:({toggle:t})=>t,handler(t){!C(t.current,Ls)&&(t.type==="click"||t.keyCode===O.SPACE)&&(t.preventDefault(),this.show(t.current))}},{name:"keydown",delegate:({toggle:t})=>t,handler(t){const{current:e,keyCode:i}=t,s=C(this.$el,this.selVertical);let n=i===O.HOME?0:i===O.END?"last":i===O.LEFT&&!s||i===O.UP&&s?"previous":i===O.RIGHT&&!s||i===O.DOWN&&s?"next":-1;if(~n){t.preventDefault();const o=this.toggles.filter(a=>!C(a,Ls)),r=o[nt(n,o,o.indexOf(e))];r.focus(),this.followFocus&&this.show(r)}}},{name:"click",el:({$el:t,connects:e,itemNav:i})=>e.concat(i?Oe(i,t):[]),delegate:({attrItem:t})=>`[${t}],[data-${t}]`,handler(t){t.target.closest("a,button")&&(t.preventDefault(),this.show(J(t.current,this.attrItem)))}},{name:"swipeRight swipeLeft",filter:({swiping:t})=>t,el:({connects:t})=>t,handler({type:t}){this.show(Qt(t,"Left")?"next":"previous")}}],update(){var t;for(const e of this.connects)H(e,"ul")&&g(e,"role","presentation");g(M(this.$el),"role","presentation");for(const e in this.toggles){const i=this.toggles[e],s=(t=this.connects[0])==null?void 0:t.children[e];g(i,"role","tab"),s&&(i.id=Yt(this,i),s.id=Yt(this,s),g(i,"aria-controls",s.id),g(s,{role:"tabpanel","aria-labelledby":i.id}))}g(this.$el,"aria-orientation",C(this.$el,this.selVertical)?"vertical":null)},methods:{index(){return bt(this.children,t=>x(t,this.cls))},show(t){const e=this.toggles.filter(r=>!C(r,Ls)),i=this.index(),s=nt(!ke(t)||v(e,t)?t:0,e,nt(this.toggles[i],e)),n=nt(e[s],this.toggles);this.children.forEach((r,a)=>{j(r,this.cls,n===a),g(this.toggles[a],{"aria-selected":n===a,tabindex:n===a?null:-1})});const o=i>=0&&i!==s;this.connects.forEach(async({children:r})=>{const a=Zt(r).filter((l,h)=>h!==n&&x(l,this.cls));await this.toggleElement(a,!1,o)&&await this.toggleElement(r[n],!0,o)})}}},hh={mixins:[it],extends:Qo,props:{media:Boolean},data:{media:960,attrItem:"uk-tab-item",selVertical:".uk-tab-left,.uk-tab-right"},connected(){const t=x(this.$el,"uk-tab-left")?"uk-tab-left":x(this.$el,"uk-tab-right")?"uk-tab-right":!1;t&&this.$create("toggle",this.$el,{cls:t,mode:"media",media:this.media})}};const uh=32;var dh={mixins:[Ci,qt],args:"target",props:{href:String,target:null,mode:"list",queued:Boolean},data:{href:!1,target:!1,mode:"click",queued:!0},computed:{target:{get:({target:t},e)=>(t=Oe(t||e.hash,e),t.length?t:[e]),observe:({target:t})=>t}},connected(){v(this.mode,"media")||(ai(this.$el)||g(this.$el,"tabindex","0"),!this.cls&&H(this.$el,"a")&&g(this.$el,"role","button"))},observe:Si({targets:({target:t})=>t}),events:[{name:ht,filter:({mode:t})=>v(t,"hover"),handler(t){this._preventClick=null,!(!ft(t)||ee(this._showState)||this.$el.disabled)&&(w(this.$el,"focus"),F(document,ht,()=>w(this.$el,"blur"),!0,e=>!this.$el.contains(e.target)),v(this.mode,"click")&&(this._preventClick=!0))}},{name:`mouseenter mouseleave ${Ht} ${oe} focus blur`,filter:({mode:t})=>v(t,"hover"),handler(t){if(ft(t)||this.$el.disabled)return;const e=v(["mouseenter",Ht,"focus"],t.type),i=this.isToggled(this.target);if(!e&&(!ee(this._showState)||t.type!=="blur"&&C(this.$el,":focus")||t.type==="blur"&&C(this.$el,":hover"))){i===this._showState&&(this._showState=null);return}e&&ee(this._showState)&&i!==this._showState||(this._showState=e?i:null,this.toggle(`toggle${e?"show":"hide"}`))}},{name:"keydown",filter:({$el:t,mode:e})=>v(e,"click")&&!H(t,"input"),handler(t){t.keyCode===uh&&(t.preventDefault(),this.$el.click())}},{name:"click",filter:({mode:t})=>["click","hover"].some(e=>v(t,e)),handler(t){let e;(this._preventClick||t.target.closest('a[href="#"], a[href=""]')||(e=t.target.closest("a[href]"))&&(!this.isToggled(this.target)||e.hash&&C(this.target,e.hash)))&&t.preventDefault(),!this._preventClick&&v(this.mode,"click")&&this.toggle()}},{name:"mediachange",filter:({mode:t})=>v(t,"media"),el:({target:t})=>t,handler(t,e){e.matches^this.isToggled(this.target)&&this.toggle()}}],methods:{async toggle(t){if(!w(this.target,t||"toggle",[this]))return;if(St(this.$el,"aria-expanded")&&g(this.$el,"aria-expanded",!this.isToggled(this.target)),!this.queued)return this.toggleElement(this.target);const e=this.target.filter(s=>x(s,this.clsLeave));if(e.length){for(const s of this.target){const n=v(e,s);this.toggleElement(s,n,n)}return}const i=this.target.filter(this.isToggled);await this.toggleElement(i,!1)&&await this.toggleElement(this.target.filter(s=>!v(i,s)),!0)}}},fh=Object.freeze({__proto__:null,Accordion:Oo,Alert:Ml,Close:_c,Cover:zl,Drop:Bo,DropParentIcon:Xt,Dropdown:Bo,Dropnav:zo,FormCustom:ql,Grid:Ul,HeightMatch:Xl,HeightPlaceholder:Ql,HeightViewport:Zl,Icon:Os,Img:Hc,Inverse:qc,Leader:Yc,Margin:Tn,Marker:Ac,Modal:Gc,Nav:Jc,NavParentIcon:Tc,Navbar:Kc,NavbarParentIcon:Xt,NavbarToggleIcon:Pc,Offcanvas:Zc,OverflowAuto:ih,OverlayIcon:Xt,PaginationNext:Dc,PaginationPrevious:Mc,Responsive:sh,Scroll:nh,Scrollspy:ah,ScrollspyNav:lh,SearchIcon:Ec,SlidenavNext:Vo,SlidenavPrevious:Vo,Spinner:Cc,Sticky:ch,Svg:$c,Switcher:Qo,Tab:hh,Toggle:dh,Totop:Oc,Video:Do});return ie(fh,(t,e)=>lt.component(e,t)),Cl(lt),ie(El,(t,e)=>lt.component(e,t)),lt}); diff --git a/themes/op-dz/theme.toml b/themes/op-dz/theme.toml new file mode 100644 index 0000000..69a5bc7 --- /dev/null +++ b/themes/op-dz/theme.toml @@ -0,0 +1,12 @@ +name = "OP·DZ Dokumentationszentrum" +license = "MIT" +licenselink = "https://github.com/" +description = "Hugo-Theme im Corporate Design des Dokumentationszentrums (UIkit 3, ABC Favorit, lokal gehostete Assets, DSGVO-konform)." +homepage = "https://example.org/" +min_version = "0.116.0" + +tags = ["dokumentation", "uikit", "gedenkstätte", "barrierefrei", "dsgvo"] +features = ["uikit", "responsive", "accessibility", "webfonts-local", "menus"] + +[author] + name = "Dokumentationszentrum"