-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSOK_2020-10-14.html
4140 lines (3745 loc) · 351 KB
/
SOK_2020-10-14.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="de" >
<head>
<base href="https://www.saale-orla-kreis.de/" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Alles zur Corona-Pandemie im Saale-Orla-Kreis</title>
<meta name="generator" content="GeoCMS Version:5.26.07 brain-SCC GmbH (c) 2020" />
<meta name="keywords" content="Corona" />
<meta name="robots" content="index, follow" />
<meta property="gc:contenttype" content="article" />
<meta property="gc:modified" content="2020-10-14T15:21:40+02:00" />
<meta property="gc:description" content="Den ersten Corona-Fall in Thüringen gab es im Saale-Orla-Kreis. Am 2. März 2020 wurde bestätigt, dass sich ein 57-jähriger Mann aus dem Orlatal im Winterurlaub infiziert hatte. Eine gute Woche später rief die Weltgesundheitsorganisation den Pandemiefall aus und um die Verbreitungswege des Virus so gut wie möglich einzudämmen, wurden auch im Saale-Orla-Kreis nie dagewesene Einschränkungen des öffentlichen Lebens beschlossen – alles mit dem Ziel, die Ausbreitung des Erregers zu verlangsamen und so den Kollaps des Gesundheitssystems mit all seinen Folgen zu vermeiden. Ein erstes Zwischenfazit kann lauten, dass dies in Deutschland verhältnismäßig gut glückte. Doch die Corona-Pandemie ist noch nicht ausgestanden. Seit dem Spätsommer steigen die Infektionszahlen wieder merklich an. Das spürte auch der Saale-Orla-Kreis, der vor allem – aber nicht nur – wegen eines Corona-Ausbruchs in einer Wohnstätte für Behinderte in Schleiz zeitweise am Risikowert von 50 Neuinfektion je 100.000 Einwohner innerhalb der letzten sieben Tage kratzte. Als Reaktion darauf, wurde eine Allgemeinverfügung erlassen, die die Teilnehmerzahlen beim Durchführen von Veranstaltungen vorübergehend einschränkt, um die Ausbreitung des Corona-Virus SARS-CoV-2 an Saale und Orla einzudämmen.Direkt zur Allgemeinverfügung gelangen Sie hier." />
<meta property="og:title" content="Alles zur Corona-Pandemie im Saale-Orla-Kreis" />
<meta property="og:image" content="https://www.saale-orla-kreis.de/res/images/clear.gif" />
<meta property="og:url" content="https://www.saale-orla-kreis.de/de/corona/aktuelle-mitteilungen-und-informationen-zur-corona-situation-im-saale-orla-kreis.html" />
<link rel="stylesheet" type="text/css" href="https://www.saale-orla-kreis.de/res/jquery/css/jquery-ui-latest.css" />
<link rel="stylesheet" type="text/css" href="https://www.saale-orla-kreis.de/res/jquery/css/jquery-ui-brain.css" />
<link id="special_btp_css" rel="stylesheet" type="text/css" href="https://www.saale-orla-kreis.de/vendor/bootstrap/style_standard.css" />
<link rel="stylesheet" type="text/css" href="https://www.saale-orla-kreis.de/res/icomoon/icomoon.css" />
<link rel="stylesheet" type="text/css" href="https://www.saale-orla-kreis.de/res/modules/gcauth/templates/index.css" />
<link rel="stylesheet" type="text/css" href="https://www.saale-orla-kreis.de/res/modules/gcaddress/templates/index.css" />
<link rel="stylesheet" type="text/css" href="https://www.saale-orla-kreis.de/res/modules/gccontact/templates/index.css" />
<link rel="stylesheet" type="text/css" href="https://www.saale-orla-kreis.de/res/modules/map/templates/map.css" />
<link rel="stylesheet" type="text/css" href="https://www.saale-orla-kreis.de/res/modules/gccookiemessage/templates/index.css" />
<link rel="stylesheet" type="text/css" href="https://www.saale-orla-kreis.de/res/js/jquery/jquery.lightgallery/dist/css/lightgallery.css" />
<link rel="stylesheet" type="text/css" href="https://www.saale-orla-kreis.de/res/js/jquery/gc-frontend-widget/css/jquery.gcfewidget.css" />
<link rel="stylesheet" type="text/css" href="https://www.saale-orla-kreis.de/res/js/jquery/gc-ios-switch/css/jquery.gciosswitch.css" />
<link rel="stylesheet" type="text/css" href="https://www.saale-orla-kreis.de/res/modules/geocode/templates/geocoder.css" />
<link rel="stylesheet" type="text/css" href="https://www.saale-orla-kreis.de/res/js/jquery/jquery-qtip/jquery.qtip.min.css" />
<script src="https://www.saale-orla-kreis.de/res/jquery/js/jquery-latest.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/jquery/js/jquery-ui-latest.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/js/jquery/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/vendor/bootstrap/plugin/js/popper.min.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/vendor/bootstrap/4.4.0/js/bootstrap.min.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/js/json.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/js/gc.js?v=v5.26.07" ></script>
<script src="https://www.saale-orla-kreis.de/res/js/openlayers/OpenLayers.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/js/openlayers/GCOpenLayers.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/js/openlayers/gc/controls/session_viewport.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/js/openlayers/FeaturePopups.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/js/openlayers/Lang/de.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/modules/geocode/res/geocoder.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/modules/geocode/res/geocoder_instance.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/js/openlayers/OpenStreetMap.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/vendor/bootstrap/plugin/js/responsive-tabs.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/modules/btp_pushmenu/templates/v2_0/pushmenu.min.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/js/jquery/jquery.lightgallery/dist/js/lightgallery-all.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/js/jquery/gc-frontend-widget/js/jquery.gcfewidget.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/js/jquery/gc-ios-switch/js/jquery.gciosswitch.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/js/jquery/jquery-qtip/jquery.qtip.min.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/modules/gcauth/templates/gcauth.js" ></script>
<script src="https://www.saale-orla-kreis.de/res/js/bootstrap/bootstrap-modaldialog/bootstrap.modaldialog.js" ></script>
<style>
.dropdown-menu {
margin-top: 0 !important; /* 0.5rem*/
}
.dropdown-submenu {
position: relative;
}
.dropdown-submenu a::after {
transform: rotate(-90deg);
position: absolute;
right: 8px;
top: .8em;
}
.dropdown-submenu .dropdown-menu {
top: 0;
left: 100%;
margin-left: .1rem;
margin-right: .1rem;
}
</style>
<script >
jQuery.noConflict();
var GeoCMSMultiObject = {};
var _paq = window._paq = window._paq || [];
_paq.push(['disableCookies']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="https://matomo.zv-kisa.de/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '31']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
function setCookieMessageCookie()
{
var currentDate = new Date();
var stopDate = new Date(currentDate.getTime() + 1000*60*60*24*31);
localStorage.setItem('gccookiemessage_okay',1);
localStorage.setItem('gccookiemessage_expires',stopDate.toJSON());
}
(function ($) {
function checkCookieMessage()
{
var currentDate = new Date();
var currentDateStr = currentDate.toJSON();
var storageDateStr = localStorage.getItem('gccookiemessage_expires');
if (storageDateStr && storageDateStr > currentDateStr)
{
$('#gccookiemessage').hide();
}
else
{
$('#gccookiemessage').appendTo('body');
$('#gccookiemessage').show();
$('#gccookiemessageCloser').show();
}
}
$(function() {checkCookieMessage()});
})(jQuery);
(
function()
{
if(typeof GeoCMS.ModuleFeature.Manager != 'undefined')
{
var feature;
}
}
)();
GeoCMS.Core.baseUrl='https://www.saale-orla-kreis.de/';GeoCMS.Core.initSession('geocms_sid', '5eh7u08rnmm67n5sd58n0ns95d');
jQuery(function() {
jQuery('#loginlink').gcauth({"selector":"#loginlink","redirect_admin":"https:\/\/www.saale-orla-kreis.de\/admin\/","autoopen":0,"privacy_statement":0,"url_remind_privacy":"","auth_type":"plain","redirect_self":"https:\/\/www.saale-orla-kreis.de\/de\/corona\/aktuelle-mitteilungen-und-informationen-zur-corona-situation-im-saale-orla-kreis.html?comment_src=14091,28,de,1","title":"Anmeldung","title_initial":"Initialpasswort bitte \u00e4ndern","title_expired":"Ihr Passwort ist abgelaufen","btnTitle":"Anmelden","action":"login","url":"https:\/\/www.saale-orla-kreis.de\/de\/mod\/2,2,28\/ajax\/1\/loadForm\/?","noclose":0,"url_password_expired":"https:\/\/www.saale-orla-kreis.de\/de\/mod\/2,2,28\/ajax\/1\/loadPasswordExpired\/?","url_password_change_initial":"https:\/\/www.saale-orla-kreis.de\/de\/mod\/2,2,28\/ajax\/1\/loadPasswordChangeInitial\/?","bootstrap":1});
});
jQuery(document).ready(function() {
if (!is_touch_device()) {
jQuery('.navbar-nav .llevel-0').on('click', function(e) {
if (!jQuery(this).hasClass('noclick')) {
location.href = jQuery(this).attr('href');
return true;
}
return false;
});
}
jQuery('.dropdown-menu a.dropdown-toggle').on('click', function(e) {
if (!is_touch_device() && !jQuery(this).hasClass('noclick')) {
location.href = jQuery(this).attr('href');
return true;
}
if (!jQuery(this).next().hasClass('show')) {
jQuery(this).parents('.dropdown-menu').first().find('.show').removeClass("show");
}
var parent = jQuery(this).offsetParent();
var subMenu = jQuery(this).next(".dropdown-menu");
subMenu.toggleClass('show');
subMenu.css({"left": parent.outerWidth() - 10});
jQuery(this).parents('li.nav-item.dropdown.show').on('hidden.bs.dropdown', function(e) {
jQuery('.dropdown-submenu .show').removeClass("show");
});
return false;
});
jQuery('.nav-link').on('mouseenter', function(e) {
jQuery(this).parents('.navbar-nav').find('.show').removeClass("show");
if (!jQuery(this).next().hasClass('show')) {
jQuery(this).parents('.navbar-nav').first().find('.show').removeClass("show");
}
var subMenu = jQuery(this).next(".dropdown-menu");
subMenu.toggleClass('show');
jQuery(this).parents('li.nav-item.dropdown.show').on('hidden.bs.dropdown', function(e) {
jQuery('.dropdown-submenu .show').removeClass("show");
});
return false;
});
jQuery('.navbar-nav').on('mouseleave', function(e) {
jQuery(this).find('.show').removeClass("show");
});
jQuery('.dropdown-menu a.dropdown-toggle').on('mouseenter', function(e) {
if (!jQuery(this).next().hasClass('show')) {
jQuery(this).parents('.dropdown-menu').first().find('.show').removeClass("show");
}
var parent = jQuery(this).offsetParent();
var subMenu = jQuery(this).next(".dropdown-menu");
subMenu.toggleClass('show');
subMenu.css({"left": parent.outerWidth() - 10});
jQuery(this).parents('li.nav-item.dropdown.show').on('hidden.bs.dropdown', function(e) {
jQuery('.dropdown-submenu .show').removeClass("show");
});
return false;
});
jQuery('.dropdown-menu a.dropdown-normal').on('mouseenter', function(e) {
if (!jQuery(this).next().hasClass('show')) {
jQuery(this).parents('.dropdown-menu').first().find('.show').removeClass("show");
}
jQuery(this).parents('li.nav-item.dropdown.show').on('hidden.bs.dropdown', function(e) {
jQuery('.dropdown-submenu .show').removeClass("show");
});
return false;
});
});
</script>
<link rel="canonical" href="https://www.saale-orla-kreis.de/de/corona/aktuelle-mitteilungen-und-informationen-zur-corona-situation-im-saale-orla-kreis.html" />
<!-- FAVICONS: Beginn -->
<!--link rel="shortcut icon" href="https://www.saale-orla-kreis.de/favicon.ico" type="image/x-icon" id="favicon" /-->
<!--link rel="icon" href="https://www.saale-orla-kreis.de/favicon.ico" type="image/x-icon"/-->
<!--link rel="shortcut icon" href="https://www.saale-orla-kreis.de/favicon.ico" type="image/vnd.microsoft.icon"-->
<link rel="apple-touch-icon" type="image/png" sizes="57x57" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/57x57/id/12142,28/apple-icon-57x57.png">
<link rel="apple-touch-icon" type="image/png" sizes="60x60" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/60x60/id/12142,28/apple-icon-60x60.png">
<link rel="apple-touch-icon" type="image/png" sizes="72x72" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/72x72/id/12142,28/apple-icon-72x72.png">
<link rel="apple-touch-icon" type="image/png" sizes="76x76" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/76x76/id/12142,28/apple-icon-76x76.png">
<link rel="apple-touch-icon" type="image/png" sizes="114x114" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/114x114/id/12142,28/apple-icon-114x114.png">
<link rel="apple-touch-icon" type="image/png" sizes="120x120" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/120x120/id/12142,28/apple-icon-120x120.png">
<link rel="apple-touch-icon" type="image/png" sizes="144x144" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/144x144/id/12142,28/apple-icon-144x144.png">
<link rel="apple-touch-icon" type="image/png" sizes="152x152" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/152x152/id/12142,28/apple-icon-152x152.png">
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/180x180/id/12142,28/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="36x36" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/36x36/id/12142,28/android-chrome-36x36.png">
<link rel="icon" type="image/png" sizes="48x48" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/48x48/id/12142,28/android-chrome-48x48.png">
<link rel="icon" type="image/png" sizes="72x72" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/72x72/id/12142,28/android-chrome-72x72.png">
<link rel="icon" type="image/png" sizes="96x96" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/96x96/id/12142,28/android-chrome-96x96.png">
<link rel="icon" type="image/png" sizes="144x144" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/144x144/id/12142,28/android-chrome-144x144.png">
<link rel="icon" type="image/png" sizes="192x192" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/192x192/id/12142,28/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="256x256" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/256x256/id/12142,28/android-chrome-256x256.png">
<link rel="icon" type="image/png" sizes="384x384" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/384x384/id/12142,28/android-chrome-384x384.png">
<link rel="icon" type="image/png" sizes="512x512" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/512x512/id/12142,28/android-chrome-512x512.png">
<link rel="icon" type="image/png" sizes="57x57" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/57x57/id/12142,28/favicon-57x57.png">
<link rel="icon" type="image/png" sizes="96x96" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/96x96/id/12142,28/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.saale-orla-kreis.de/de/datei/zuschneiden/16x16/id/12142,28/favicon-16x16.png">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="https://www.saale-orla-kreis.de/de/datei/zuschneiden/144x144/id/12142,28/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- FAVICONS: Ende -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<meta name="theme-color" content="#">
<meta name="format-detection" content="telephone=no">
<!--[if lt IE 11]>
<script src="res/js/bootstrap/html5shiv.min.js"></script>
<![endif]-->
<script src="res/js/bootstrap/picturefill.min.js"></script>
</head>
<body id="page-body"
class="theme_ color_ twocolright ">
<div id="pm_page">
<header class="outer-container mx-auto sok-header">
<div class="sok-header-row">
<div class="sok-header-pushmenu-1">
<div class="sok-header-pushmenu-2">
<div class="col-auto d-lg-none d-print-none d-inline-flex align-items-center">
<button id="pm_trigger_26_2_28" class="pushmenu-trigger btn d-inline-flex flex-column align-items-center bg-transparent text-white">
<span class="pm-trigger-icon">
<span class="pm-trigger-icon-bar bg-white"></span>
<span class="pm-trigger-icon-bar bg-white"></span>
<span class="pm-trigger-icon-bar bg-white"></span>
</span>
<span class="pm-trigger-label text-white">
MENÜ
</span>
</button>
</div>
</div>
</div>
<div class="sok-header-col-1">
<div class="sok-header-col-1-1">
<div class="sok-header-col-nav">
<div class="sok-header-col-nav-1 d-lg-none">
<div class="sok-header-col-nav-1-1">
<div class="sok-header-col-nav-1-row">
<div class="sok-header-col-nav-1-cell">
<div class="btp_freemenu sok-symbolnav"><div id="16_2_28"
role="navigation"
class=" m-0 p-0"><ul class="freemenu-list"><li class="freemenu-list-entry"><a href="de/suche.html"
class="freemenu-list-entry-link status-0"
target="_self"
title="Suche"><i class="icon icon-search"></i><span class="freemenu-list-entry-title">Suche</span></a></li></ul></div></div>
</div>
</div>
</div>
<div class="sok-header-col-nav-1-2">
<div class="sok-header-col-nav-1-row">
<div class="sok-header-col-nav-1-cell">
</div>
</div>
</div>
</div>
<div class="sok-header-col-nav-2">
<div class="btp_navbar ">
<nav id="navbar_e2da5e68f52580fdbdf77918ee504566" class="navbar navbar-expand-lg bg-transparent topnav"><button class="navbar-toggler navbar-toggler-right " type="button" data-toggle="collapse" data-target="#nav_e2da5e68f52580fdbdf77918ee504566" aria-controls="nav_e2da5e68f52580fdbdf77918ee504566" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"><span class="sr-only">Navigation auf/zu</span></span></button><div class="collapse navbar-collapse" id="nav_e2da5e68f52580fdbdf77918ee504566"><ul class="nav navbar-nav ml-auto w-100 justify-content-end"><li id="li_node_4" class="nav-item active nlevel-0 dropdown"><a data-id="node_4" class="nav-link llevel-0 dropdown-toggle active " data-toggle="dropdown" title="Aktuelles" href="/de/aktuelles.html">Aktuelles</a><ul id="sub_node_4" class="dropdown-menu nlevel-0" style="margin-top:0px !important;"><li class=" nlevel-0 touchOnly"><a class="dropdown-item dropdown-normal " title="Aktuelles" href="/de/aktuelles.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Aktuelle Informationen" href="/de/aktuelle-informationen.html" target="_self">Aktuelle Informationen</a></li><li id="li_node_82" class=" dropdown-submenu active nlevel-1 dropdown"><a data-id="node_82" class="dropdown-item llevel-1 dropdown-toggle active active " data-toggle="dropdown" title="Corona" href="/de/corona.html">Corona</a><ul id="sub_node_82" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal active " title="Corona" href="/de/corona.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Häufige Fragen an das Bürgertelefon" href="/de/haeufige-fragen-an-das-buergertelefon.html" target="_self">Häufige Fragen an das Bürgertelefon</a></li></ul></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Grußwort des Landrates" href="/de/gruszwort-des-landrates.html" target="_self">Grußwort des Landrates</a></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Öffentliche Bekanntmachungen" href="/de/aktuelle-mitteilungen.html" target="_self">Öffentliche Bekanntmachungen</a></li><li id="li_node_57" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_57" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Ausschreibungen" href="/de/ausschreibungen.html">Ausschreibungen</a><ul id="sub_node_57" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Ausschreibungen" href="/de/ausschreibungen.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Übersicht abgeschlossener Vergaben" href="/de/uebersicht-abgeschlossener-vergaben.html" target="_self">Übersicht abgeschlossener Vergaben</a></li></ul></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Veranstaltungskalender" href="/de/Veranstaltungskalender.html" target="_self">Veranstaltungskalender</a></li><li id="li_node_56" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_56" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Stellenangebote" href="/de/stellenangebote.html">Stellenangebote</a><ul id="sub_node_56" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Stellenangebote" href="/de/stellenangebote.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Landratsamt Saale-Orla-Kreis" href="/de/landratsamt-saaleorlakreis.html" target="_self">Landratsamt Saale-Orla-Kreis</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Thüringer Agentur für Fachkräftegewinnung" href="/de/thueringer-agentur-fuer-fachkraeftegewinnung.html" target="_self">Thüringer Agentur für Fachkräftegewinnung</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Agentur für Arbeit" href="/de/agentur-fuer-arbeitjobcenter.html" target="_self">Agentur für Arbeit</a></li></ul></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Ausbildung" href="/de/ausbildung.html" target="_self">Ausbildung</a></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Verkehrsinformationen" href="/de/verkehrsinformationen.html" target="_self">Verkehrsinformationen</a></li><li id="li_node_358" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_358" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Ausstellungen im Landratsamt" href="/de/ausstellungen-im-landratsamt.html">Ausstellungen im Landratsamt</a><ul id="sub_node_358" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Ausstellungen im Landratsamt" href="/de/ausstellungen-im-landratsamt.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Menschen & Rechte sind unteilbar - 27. September - 13. November" href="/de/neue-seite-1601628606.html" target="_self">Menschen & Rechte sind unteilbar - 27. September - 13. November</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Im September ist nicht nur Herbstanfang - 2. bis 25. September" href="/de/neue-seite-1601628699.html" target="_self">Im September ist nicht nur Herbstanfang - 2. bis 25. September</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Inklusion im Blick - 7. Juli - 28. August" href="/de/inklusion-im-blick.html" target="_self">Inklusion im Blick - 7. Juli - 28. August</a></li></ul></li></ul></li><li id="li_node_11" class="nav-item nlevel-0 dropdown"><a data-id="node_11" class="nav-link llevel-0 dropdown-toggle " data-toggle="dropdown" title="Bügerservice" href="/de/buergerservice.html">Bürgerservice</a><ul id="sub_node_11" class="dropdown-menu nlevel-0" style="margin-top:0px !important;"><li class=" nlevel-0 touchOnly"><a class="dropdown-item dropdown-normal " title="Bügerservice" href="/de/buergerservice.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Was erledige ich wo?" href="/de/was-erledige-ich-wo.html" target="_self">Was erledige ich wo?</a></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Öffnungszeiten" href="/de/oeffnungszeiten.html" target="_self">Öffnungszeiten</a></li><li id="li_node_61" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_61" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Amtsblatt & Publikationen" href="/de/amtsblattpublikationen.html">Amtsblatt & Publikationen</a><ul id="sub_node_61" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Amtsblatt & Publikationen" href="/de/amtsblattpublikationen.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Amtsblattarchiv" href="/de/amtsblattarchiv.html" target="_self">Amtsblattarchiv</a></li></ul></li><li id="li_node_104" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_104" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Bürgerservice-Portal" href="/de/buergerserviceportal.html">Bürgerservice-Portal</a><ul id="sub_node_104" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Bürgerservice-Portal" href="/de/buergerserviceportal.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Digitale Verwaltung" href="/de/digitale-verwaltung.html" target="_self">Digitale Verwaltung</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="E-Rechnung und Leitweg-ID" href="/de/e-rechnung-und-leitweg-id.html" target="_self">E-Rechnung und Leitweg-ID</a></li><li id="li_node_328" class=" dropdown-submenu nlevel-2 dropdown"><a data-id="node_328" class="dropdown-item llevel-2 dropdown-toggle " data-toggle="dropdown" title="Zahlungen an den Landkreis" href="/de/zahlungen-an-den-landkreis.html">Zahlungen an den Landkreis</a><ul id="sub_node_328" class="dropdown-menu nlevel-2" style="margin-top:0px !important;"><li class=" nlevel-2 touchOnly"><a class="dropdown-item dropdown-normal " title="Zahlungen an den Landkreis" href="/de/zahlungen-an-den-landkreis.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Haushalt" href="/de/haushalt.html" target="_self">Haushalt</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Vollstreckung" href="/de/vollstreckung.html" target="_self">Vollstreckung</a></li></ul></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Formulare von A - Z" href="/de/formulare.html" target="_self">Formulare von A - Z</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Organigramm" href="/de/organigramm.html" target="_self">Organigramm</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Elektronische Kommunikation" href="/de/elektronische-kommunikation.html" target="_self">Elektronische Kommunikation</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Barrierefreiheit" href="/de/barrierefreiheit.html" target="_self">Barrierefreiheit</a></li></ul></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Jobcenter" href="/de/jobcenter.html" target="_self">Jobcenter</a></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Zweckverbände" href="/de/zweckverbaende.html" target="_self">Zweckverbände</a></li><li id="li_node_100" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_100" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Verkehr" href="/de/verkehr.html">Verkehr</a><ul id="sub_node_100" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Verkehr" href="/de/verkehr.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li id="li_node_285" class=" dropdown-submenu nlevel-2 dropdown"><a data-id="node_285" class="dropdown-item llevel-2 dropdown-toggle " data-toggle="dropdown" title="Kfz-Zulassung" href="/de/kfz-zulassung.html">Kfz-Zulassung</a><ul id="sub_node_285" class="dropdown-menu nlevel-2" style="margin-top:0px !important;"><li class=" nlevel-2 touchOnly"><a class="dropdown-item dropdown-normal " title="Kfz-Zulassung" href="/de/kfz-zulassung.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Häufig verwendete Formulare für Vorgänge in der KFZ-Zulassung" href="/de/noetige-formulare.html" target="_self">nötige Formulare</a></li></ul></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Fahrerlaubnis" href="/de/fuehrerschein.html" target="_self">Fahrerlaubnis</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Straßenverkehr im Landkreis" href="/de/kreisstrassen.html" target="_self">Straßenverkehr im Landkreis</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal extern-page-link" title="Wunschkennzeichen reservieren" href="/de/wunschkennzeichen-reservieren.html" target="_blank">Wunschkennzeichen reservieren</a></li></ul></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Lebensmittelüberwachung" href="/de/lebensmittelueberwachung.html" target="_self">Lebensmittelüberwachung</a></li></ul></li><li id="li_node_298" class="nav-item nlevel-0 dropdown"><a data-id="node_298" class="nav-link llevel-0 dropdown-toggle " data-toggle="dropdown" title="Kreispolitik" href="/de/kreispolitik.html">Kreispolitik</a><ul id="sub_node_298" class="dropdown-menu nlevel-0" style="margin-top:0px !important;"><li class=" nlevel-0 touchOnly"><a class="dropdown-item dropdown-normal " title="Kreispolitik" href="/de/kreispolitik.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li id="li_node_62" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_62" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Kreisrecht" href="/de/kreisrecht.html">Kreisrecht</a><ul id="sub_node_62" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Kreisrecht" href="/de/kreisrecht.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Hauptsatzung" href="/de/hauptsatzung.html" target="_self">Hauptsatzung</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Schule/Bildung" href="/de/schulebildung.html" target="_self">Schule/Bildung</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Freizeit/Kultur" href="/de/freizeitkultur.html" target="_self">Freizeit/Kultur</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Verwaltung" href="/de/verwaltung.html" target="_self">Verwaltung</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Soziales" href="/de/soziales.html" target="_self">Soziales</a></li></ul></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Kreistag und Ausschüsse" href="/de/kreistag-und-ausschuesse.html" target="_self">Kreistag und Ausschüsse</a></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Kreishaushalt" href="/de/kreishaushalt.html" target="_self">Kreishaushalt</a></li><li id="li_node_168" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_168" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Beauftragte im Saale-Orla-Kreis" href="/de/beauftragtenwesen.html">Beauftragte im Saale-Orla-Kreis</a><ul id="sub_node_168" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Beauftragte im Saale-Orla-Kreis" href="/de/beauftragtenwesen.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li id="li_node_169" class=" dropdown-submenu nlevel-2 dropdown"><a data-id="node_169" class="dropdown-item llevel-2 dropdown-toggle " data-toggle="dropdown" title="Gleichstellungsbeauftragte" href="/de/gleichstellungsbeauftragte.html">Gleichstellungsbeauftragte</a><ul id="sub_node_169" class="dropdown-menu nlevel-2" style="margin-top:0px !important;"><li class=" nlevel-2 touchOnly"><a class="dropdown-item dropdown-normal " title="Gleichstellungsbeauftragte" href="/de/gleichstellungsbeauftragte.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Netzwerk gegen häusliche Gewalt" href="/de/neue-seite-1591708084.html" target="_self">Netzwerk gegen häusliche Gewalt</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Wofür die Gleichstellungsbeauftragte ein offenes Ohr hat" href="/de/wofuer-die-gleichstellungsbeauftragte-ein-offenes-ohr-hat.html" target="_self">Wofür die Gleichstellungsbeauftragte ein offenes Ohr hat</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Hilfe bei Gewalt gegen Frauen und Kinder" href="/de/hilfe-bei-gewalt-gegen-frauen-und-kinder.html" target="_self">Hilfe bei Gewalt gegen Frauen und Kinder</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Hilfe bei Gewalt gegen Männer" href="/de/hilfe-bei-gewalt-gegen-maenner.html" target="_self">Hilfe bei Gewalt gegen Männer</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Schwanger und viele Fragen?" href="/de/schwanger-und-viele-fragen.html" target="_self">Schwanger und viele Fragen?</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Begegnungsstätten" href="/de/begegnungsstaetten.html" target="_self">Begegnungsstätten</a></li></ul></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Behindertenbeauftragte" href="/de/behindertenbeauftragte.html" target="_self">Behindertenbeauftragte</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Integrationsbeauftragte" href="/de/integrationsbeauftragte.html" target="_self">Integrationsbeauftragte</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Kreisheimatpfleger" href="/de/mit-bus-und-zug.html" target="_self">Kreisheimatpfleger</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Partnerschaftsbeauftragte" href="/de/partnerschaftsbeauftragte.html" target="_self">Partnerschaftsbeauftragte</a></li></ul></li><li id="li_node_20" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_20" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Förderung von Ehrenamt und Initiativen" href="/de/foerderung-von-ehrenamt-und-initiativen.html">Förderung von Ehrenamt und Initiativen</a><ul id="sub_node_20" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Förderung von Ehrenamt und Initiativen" href="/de/foerderung-von-ehrenamt-und-initiativen.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Ehrenamtsförderung" href="/de/neue-seite.html" target="_self">Ehrenamtsförderung</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Kulturförderung" href="/de/kulturfoerderung.html" target="_self">Kulturförderung</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Sportförderung" href="/de/sportfoerderung.html" target="_self">Sportförderung</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Demokratie leben" href="/de/demokratie-leben.html" target="_self">Demokratie leben</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="nebenan angekommen" href="/de/neue-seite-1588246875.html" target="_self">nebenan angekommen</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="gut leben und alt werden im SOK" href="/de/neue-seite-1588246976.html" target="_self">gut leben und alt werden im SOK</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Courage gegen Drogen" href="/de/courage-gegen-drogen.html" target="_self">Courage gegen Drogen</a></li></ul></li><li id="li_node_297" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_297" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Asyl & Integration" href="/de/asyl-integration.html">Asyl & Integration</a><ul id="sub_node_297" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Asyl & Integration" href="/de/asyl-integration.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Fragen und Antworten" href="/de/fragen-und-antworten.html" target="_self">Fragen und Antworten</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Kleiderkammern" href="/de/kleiderkammern.html" target="_self">Kleiderkammern</a></li></ul></li><li id="li_node_99" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_99" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Breitbandausbau" href="/de/bauen-und-wohnen.html">Breitbandausbau</a><ul id="sub_node_99" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Breitbandausbau" href="/de/bauen-und-wohnen.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Aktueller Projektstand" href="/de/aktueller-projektstand.html" target="_self">Aktueller Projektstand</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Ausbaugebiet" href="/de/ausbaugebiet.html" target="_self">Ausbaugebiet</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Kooperationspartner" href="/de/kooperationspartner.html" target="_self">Kooperationspartner</a></li></ul></li><li id="li_node_68" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_68" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Feuerwehr und Rettungswesen" href="/de/feuerwehr.html">Feuerwehr und Rettungswesen</a><ul id="sub_node_68" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Feuerwehr und Rettungswesen" href="/de/feuerwehr.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Abwehrender Brandschutz" href="/de/abwehrender-brandschutz.html" target="_self">Abwehrender Brandschutz</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Stützpunktfeuerwehren" href="/de/stuetzpunktfeuerwehren.html" target="_self">Stützpunktfeuerwehren</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Kontakte zu freiwilligen Feuerwehren" href="/de/freiwillige-feuerwehren.html" target="_self">Kontakte zu freiwilligen Feuerwehren</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Vorbeugender Gefahrenschutz" href="/de/vorbeugender-gefahrenschutz.html" target="_self">Vorbeugender Gefahrenschutz</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Rettungswesen" href="/de/rettungs.html" target="_self">Rettungswesen</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Funk (BOS)" href="/de/funk-bos.html" target="_self">Funk (BOS)</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Katastrophenschutz" href="/de/katastrophenschutz.html" target="_self">Katastrophenschutz</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Statistisches zur Feuerwehr" href="/de/statistisches-zur-feuerwehr.html" target="_self">Statistisches zur Feuerwehr</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Großbrand am Heinrichstein" href="/de/groszbrand-am-heinrichstein.html" target="_self">Großbrand am Heinrichstein</a></li></ul></li><li id="li_node_98" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_98" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Wirtschaftsförderung" href="/de/wirtschaftsfoerderung.html">Wirtschaftsförderung</a><ul id="sub_node_98" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Wirtschaftsförderung" href="/de/wirtschaftsfoerderung.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Aktuelles" href="/de/aktuelles-wirtschaftsfoerderung.html" target="_self">Aktuelles</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Gewerbeflächen" href="/de/gewerbeflaechen.html" target="_self">Gewerbeflächen</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Fachkräftesicherung" href="/de/fachkraeftesicherung.html" target="_self">Fachkräftesicherung</a></li></ul></li></ul></li><li id="li_node_12" class="nav-item nlevel-0 dropdown"><a data-id="node_12" class="nav-link llevel-0 dropdown-toggle " data-toggle="dropdown" title="Saale-Orla-Kreis" href="/de/saale-orla-kreis.html">Saale-Orla-Kreis</a><ul id="sub_node_12" class="dropdown-menu nlevel-0" style="margin-top:0px !important;"><li class=" nlevel-0 touchOnly"><a class="dropdown-item dropdown-normal " title="Saale-Orla-Kreis" href="/de/saale-orla-kreis.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li id="li_node_64" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_64" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Städte und Gemeinden" href="/de/staedte-und-gemeinden.html">Städte und Gemeinden</a><ul id="sub_node_64" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Städte und Gemeinden" href="/de/staedte-und-gemeinden.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Kontakte zu Städten und Gemeinden" href="/de/kontakte-zu-staedten-und-gemeinden.html" target="_self">Kontakte zu Städten und Gemeinden</a></li></ul></li><li id="li_node_65" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_65" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Steckbrief" href="/de/zahlen-daten-fakten.html">Steckbrief</a><ul id="sub_node_65" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Steckbrief" href="/de/zahlen-daten-fakten.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Wappen" href="/de/wappen.html" target="_self">Wappen</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Logo" href="/de/logo.html" target="_self">Logo</a></li></ul></li><li id="li_node_101" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_101" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Partnerregionen" href="/de/partnerregionen.html">Partnerregionen</a><ul id="sub_node_101" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Partnerregionen" href="/de/partnerregionen.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Neuburg-Schrobenhausen" href="/de/neuburgschrobenhausen.html" target="_self">Neuburg-Schrobenhausen</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Rheingau-Taunus" href="/de/rheingautaunus.html" target="_self">Rheingau-Taunus</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="30 Jahre Partnerschaft" href="/de/30-jahre-partnerschaft.html" target="_self">30 Jahre Partnerschaft</a></li></ul></li><li id="li_node_337" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_337" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Euregio Egrensis" href="/de/euregio-egrensis.html">Euregio Egrensis</a><ul id="sub_node_337" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Euregio Egrensis" href="/de/euregio-egrensis.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Saale-Orla-Kreis se-pedstavuje" href="/de/saale-orla-kreis-se-pedstavuje.html" target="_self">Saale-Orla-Kreis se-pedstavuje</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Projekte der vergangenen Jahre" href="/de/projekte-der-vergangenen-jahre.html" target="_self">Projekte der vergangenen Jahre</a></li></ul></li><li id="li_node_66" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_66" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Kinder, Jugend, Familie, Soziales" href="/de/familie-jugend-bildung.html">Kinder, Jugend, Familie, Soziales</a><ul id="sub_node_66" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Kinder, Jugend, Familie, Soziales" href="/de/familie-jugend-bildung.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li id="li_node_107" class=" dropdown-submenu nlevel-2 dropdown"><a data-id="node_107" class="dropdown-item llevel-2 dropdown-toggle " data-toggle="dropdown" title="Kindertagesbetreuung" href="/de/kindergaerten.html">Kindertagesbetreuung</a><ul id="sub_node_107" class="dropdown-menu nlevel-2" style="margin-top:0px !important;"><li class=" nlevel-2 touchOnly"><a class="dropdown-item dropdown-normal " title="Kindertagesbetreuung" href="/de/kindergaerten.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Kindergärten" href="/de/kindergaerten-1596462442.html" target="_self">Kindergärten</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Kreiselternvertretung" href="/de/kreiselternvertretung.html" target="_self">Kreiselternvertretung</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Kindertagespflege" href="/de/kindertagespflege.html" target="_self">Kindertagespflege</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Fachberatung für Kindergärten" href="/de/fachberatung-fuer-kindergaerten.html" target="_self">Fachberatung für Kindergärten</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Kinder mit besonderem Förderbedarf/Frühförderung" href="/de/kinder-mit-besonderem-foerderbedarffruehfoerderung.html" target="_self">Kinder mit besonderem Förderbedarf/Frühförderung</a></li></ul></li><li id="li_node_93" class=" dropdown-submenu nlevel-2 dropdown"><a data-id="node_93" class="dropdown-item llevel-2 dropdown-toggle " data-toggle="dropdown" title="Familie eins99" href="/de/familie-eins99.html">Familie eins99</a><ul id="sub_node_93" class="dropdown-menu nlevel-2" style="margin-top:0px !important;"><li class=" nlevel-2 touchOnly"><a class="dropdown-item dropdown-normal " title="Familie eins99" href="/de/familie-eins99.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Übersicht der geförderten Projekte" href="/de/uebersicht-der-gefoerderten-projekte.html" target="_self">Übersicht der geförderten Projekte</a></li></ul></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Familienkompass" href="/de/familienprofis.html" target="_self">Familienkompass</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Armutsprävention" href="/de/armutspraevention.html" target="_self">Armutsprävention</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Jugendfreizeiteinrichtungen" href="/de/jugendfreizeiteinrichtungen.html" target="_self">Jugendfreizeiteinrichtungen</a></li><li id="li_node_307" class=" dropdown-submenu nlevel-2 dropdown"><a data-id="node_307" class="dropdown-item llevel-2 dropdown-toggle " data-toggle="dropdown" title="Hilfen für die ganze Familie" href="/de/informationen-fuer-die-ganze-familie.html">Hilfen für die ganze Familie</a><ul id="sub_node_307" class="dropdown-menu nlevel-2" style="margin-top:0px !important;"><li class=" nlevel-2 touchOnly"><a class="dropdown-item dropdown-normal " title="Hilfen für die ganze Familie" href="/de/informationen-fuer-die-ganze-familie.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Frühe Hilfen" href="/de/fruehe-hilfen.html" target="_self">Frühe Hilfen</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Jugendamt" href="/de/jugendamt.html" target="_self">Jugendamt</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Finanzielle Hilfen" href="/de/wirtschaftliche-hilfen.html" target="_self">Finanzielle Hilfen</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Hilfe in besonderen Lebenslagen" href="/de/hilfe-in-besonderen-lebenslagen.html" target="_self">Hilfe in besonderen Lebenslagen</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Schwerbehindertenrecht/Sozialhilfe" href="/de/schwerbehindertenrechtsozialhilfe.html" target="_self">Schwerbehindertenrecht/Sozialhilfe</a></li></ul></li></ul></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Wohnen" href="/de/wohnen.html" target="_self">Wohnen</a></li><li id="li_node_139" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_139" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Gesundheit" href="/de/gesundheit.html">Gesundheit</a><ul id="sub_node_139" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Gesundheit" href="/de/gesundheit.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Krankenhäuser" href="/de/krankenhaeuser.html" target="_self">Krankenhäuser</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Pflegeheime" href="/de/pflegeheime.html" target="_self">Pflegeheime</a></li><li id="li_node_148" class=" dropdown-submenu nlevel-2 dropdown"><a data-id="node_148" class="dropdown-item llevel-2 dropdown-toggle " data-toggle="dropdown" title="Gesundheitsamt" href="/de/gesundheitsamt.html">Gesundheitsamt</a><ul id="sub_node_148" class="dropdown-menu nlevel-2" style="margin-top:0px !important;"><li class=" nlevel-2 touchOnly"><a class="dropdown-item dropdown-normal " title="Gesundheitsamt" href="/de/gesundheitsamt.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Amtsärztlicher Dienst" href="/de/amtsaerztlicher-dienst.html" target="_self">Amtsärztlicher Dienst</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Infektionsschutz/Hygiene" href="/de/infektionsschutzhygiene.html" target="_self">Infektionsschutz/Hygiene</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Kinder- und Jugendärztlicher Dienst" href="/de/kinder-und-jugendaerztlicher-dienst.html" target="_self">Kinder- und Jugendärztlicher Dienst</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Kinder- und Jugendzahnärztlicher Dienst" href="/de/kinder-und-jugendzahnaerztlicher-dienst.html" target="_self">Kinder- und Jugendzahnärztlicher Dienst</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Sozialpsychiatrischer Dienst" href="/de/sozialpsychiatrischer-dienst.html" target="_self">Sozialpsychiatrischer Dienst</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Tuberkulosefürsorge" href="/de/tuberkulose.html" target="_self">Tuberkulosefürsorge</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Netzwerk Multiresistente Erreger" href="/de/netzwerk.html" target="_self">Netzwerk Multiresistente Erreger</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Reisemedizinische Beratung" href="/de/reisemedizinische-beratung.html" target="_self">Reisemedizinische Beratung</a></li></ul></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Selbsthilfegruppen" href="/de/selbsthilfegruppen.html" target="_self">Selbsthilfegruppen</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Beratungsangebote" href="/de/beratungsangebote.html" target="_self">Beratungsangebote</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Pilzberatung" href="/de/pilzberatung.html" target="_self">Pilzberatung</a></li></ul></li><li id="li_node_67" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_67" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Umwelt" href="/de/natur-und-umwelt.html">Umwelt</a><ul id="sub_node_67" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Umwelt" href="/de/natur-und-umwelt.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li id="li_node_234" class=" dropdown-submenu nlevel-2 dropdown"><a data-id="node_234" class="dropdown-item llevel-2 dropdown-toggle " data-toggle="dropdown" title="Abfall" href="/de/abfall.html">Abfall</a><ul id="sub_node_234" class="dropdown-menu nlevel-2" style="margin-top:0px !important;"><li class=" nlevel-2 touchOnly"><a class="dropdown-item dropdown-normal " title="Abfall" href="/de/abfall.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Kommunale Abfälle" href="/de/kommunale-abfaelle.html" target="_self">Kommunale Abfälle</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Gewerbliche Abfälle" href="/de/gewerbliche-abfaelle.html" target="_self">Gewerbliche Abfälle</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Illegale Ablagerungen" href="/de/illegale-ablagerungen.html" target="_self">Illegale Ablagerungen</a></li></ul></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Bodenschutz/Altlasten" href="/de/bodenschutzaltlasten.html" target="_self">Bodenschutz/Altlasten</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Chemikaliensicherheit" href="/de/chemikalienrecht.html" target="_self">Chemikaliensicherheit</a></li><li id="li_node_231" class=" dropdown-submenu nlevel-2 dropdown"><a data-id="node_231" class="dropdown-item llevel-2 dropdown-toggle " data-toggle="dropdown" title="Immissionsschutz" href="/de/immissionsschutz.html">Immissionsschutz</a><ul id="sub_node_231" class="dropdown-menu nlevel-2" style="margin-top:0px !important;"><li class=" nlevel-2 touchOnly"><a class="dropdown-item dropdown-normal " title="Immissionsschutz" href="/de/immissionsschutz.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Beschwerden" href="/de/beschwerden.html" target="_self">Beschwerden</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="genehmigungsbedürftige Anlagen" href="/de/genehmigungspflichtige-anlagen.html" target="_self">genehmigungsbedürftige Anlagen</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="nicht genehmigungsbedürftige Anlagen" href="/de/nicht-genehmigungspflichtige-anlagen.html" target="_self">nicht genehmigungsbedürftige Anlagen</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="IED-Anlagen" href="/de/iedanlagen.html" target="_self">IED-Anlagen</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Störfall-Anlagen" href="/de/stoerfallanlagen.html" target="_self">Störfall-Anlagen</a></li></ul></li><li id="li_node_230" class=" dropdown-submenu nlevel-2 dropdown"><a data-id="node_230" class="dropdown-item llevel-2 dropdown-toggle " data-toggle="dropdown" title="Naturschutz" href="/de/naturschutz-1592824783.html">Naturschutz</a><ul id="sub_node_230" class="dropdown-menu nlevel-2" style="margin-top:0px !important;"><li class=" nlevel-2 touchOnly"><a class="dropdown-item dropdown-normal " title="Naturschutz" href="/de/naturschutz-1592824783.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Landschaftspflege" href="/de/landschaftspflege.html" target="_self">Landschaftspflege</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Artenschutz" href="/de/artenschutz.html" target="_self">Artenschutz</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Informationsstelle für Naturschutz und Umwelt" href="/de/informationsstelle-fuer-naturschutz-und-umwelt.html" target="_self">Informationsstelle für Naturschutz und Umwelt</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Schutzgebiete" href="/de/schutzgebiete.html" target="_self">Schutzgebiete</a></li></ul></li><li id="li_node_233" class=" dropdown-submenu nlevel-2 dropdown"><a data-id="node_233" class="dropdown-item llevel-2 dropdown-toggle " data-toggle="dropdown" title="Wasser" href="/de/wasser.html">Wasser</a><ul id="sub_node_233" class="dropdown-menu nlevel-2" style="margin-top:0px !important;"><li class=" nlevel-2 touchOnly"><a class="dropdown-item dropdown-normal " title="Wasser" href="/de/wasser.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Abwasser" href="/de/abwasser.html" target="_self">Abwasser</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Gewässeraufsicht" href="/de/neue-seite-1593028824.html" target="_self">Gewässeraufsicht</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Grundwasser" href="/de/grundwasser.html" target="_self">Grundwasser</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Wassergefährdende Stoffe" href="/de/wassergefaehrdende-stoffe.html" target="_self">Wassergefährdende Stoffe</a></li></ul></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Informationen für die Öffentlichkeit" href="/de/informationen-fuer-die-oeffentlichkeit.html" target="_self">Informationen für die Öffentlichkeit</a></li></ul></li><li id="li_node_111" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_111" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Bildung und Sport" href="/de/bildung-und-sport.html">Bildung und Sport</a><ul id="sub_node_111" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Bildung und Sport" href="/de/bildung-und-sport.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li id="li_node_112" class=" dropdown-submenu nlevel-2 dropdown"><a data-id="node_112" class="dropdown-item llevel-2 dropdown-toggle " data-toggle="dropdown" title="Schulen" href="/de/schulen.html">Schulen</a><ul id="sub_node_112" class="dropdown-menu nlevel-2" style="margin-top:0px !important;"><li class=" nlevel-2 touchOnly"><a class="dropdown-item dropdown-normal " title="Schulen" href="/de/schulen.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Staatliche Schulen" href="/de/staatliche-schulen.html" target="_self">Staatliche Schulen</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Schulen in freier Trägerschaft" href="/de/schulen-in-freier-traegerschaft.html" target="_self">Schulen in freier Trägerschaft</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Schülerbeförderung" href="/de/schuelerbefoerderung.html" target="_self">Schülerbeförderung</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Hortbetreuung" href="/de/hortbetreuung.html" target="_self">Hortbetreuung</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Praktikum" href="/de/praktikum.html" target="_self">Praktikum</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Schulnetzplanung" href="/de/schulnetzplanung.html" target="_self">Schulnetzplanung</a></li></ul></li><li id="li_node_115" class=" dropdown-submenu nlevel-2 dropdown"><a data-id="node_115" class="dropdown-item llevel-2 dropdown-toggle " data-toggle="dropdown" title="Sport" href="/de/sport.html">Sport</a><ul id="sub_node_115" class="dropdown-menu nlevel-2" style="margin-top:0px !important;"><li class=" nlevel-2 touchOnly"><a class="dropdown-item dropdown-normal " title="Sport" href="/de/sport.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Sportanlagen" href="/de/sportanlagen.html" target="_self">Sportanlagen</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Saale-Orla-Kreissportbund" href="/de/saale-orla-kreissportbund.html" target="_self">Saale-Orla-Kreissportbund</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Nutzung kreiseigener Sportanlagen" href="/de/nutzung-kreiseigener-sportanlagen.html" target="_self">Nutzung kreiseigener Sportanlagen</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Sportstättenrahmenleitplanung" href="/de/sportstaettenrahmenleitplanung.html" target="_self">Sportstättenrahmenleitplanung</a></li></ul></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Musikschule" href="/de/musikschule.html" target="_self">Musikschule</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Volkshochschule" href="/de/volkshochschule.html" target="_self">Volkshochschule</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Bibliotheken" href="/de/bibliotheken.html" target="_self">Bibliotheken</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="AWZ Schleiz" href="/de/aus-und-weiterbildungszentrum-schleiz-gmbh.html" target="_self">AWZ Schleiz</a></li></ul></li></ul></li><li id="li_node_13" class="nav-item nlevel-0 dropdown"><a data-id="node_13" class="nav-link llevel-0 dropdown-toggle " data-toggle="dropdown" title="Tourismus/Kultur" href="/de/tourismus-kultur.html">Kultur & Tourismus</a><ul id="sub_node_13" class="dropdown-menu nlevel-0" style="margin-top:0px !important;"><li class=" nlevel-0 touchOnly"><a class="dropdown-item dropdown-normal " title="Tourismus/Kultur" href="/de/tourismus-kultur.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li id="li_node_71" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_71" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Sehenswürdigkeiten" href="/de/tourismussehenswuerdigkeiten.html">Sehenswürdigkeiten</a><ul id="sub_node_71" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Sehenswürdigkeiten" href="/de/tourismussehenswuerdigkeiten.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Touristinformationen" href="/de/touristinformationen.html" target="_self">Touristinformationen</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Museen in der Region" href="/de/museen-in-der-region.html" target="_self">Museen in der Region</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Tolle Aussichten" href="/de/tolle-aussichten.html" target="_self">Tolle Aussichten</a></li></ul></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Schloss Burgk" href="/de/schloss-burgk.html" target="_self">Schloss Burgk</a></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Schaudenkmal Gießerei Heinrichshütte" href="/de/schaudenkmal-heinrichshuette.html" target="_self">Schaudenkmal Gießerei Heinrichshütte</a></li><li id="li_node_72" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_72" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Urlaub und Erholung" href="/de/urlaub-und-erholung.html">Urlaub und Erholung</a><ul id="sub_node_72" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Urlaub und Erholung" href="/de/urlaub-und-erholung.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Tourismusverbund Rennsteig-Saaleland" href="/de/tourismusverbund-rennsteig-saaleland.html" target="_self">Tourismusverbund Rennsteig-Saaleland</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Naturpark Schiefergebirge/Obere Saale" href="/de/neue-seite-1592318176.html" target="_self">Naturpark Schiefergebirge/Obere Saale</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Regionalverbund Thüringer Wald" href="/de/regionalverbund-thueringer-wald.html" target="_self">Regionalverbund Thüringer Wald</a></li></ul></li><li id="li_node_171" class=" dropdown-submenu nlevel-1 dropdown"><a data-id="node_171" class="dropdown-item llevel-1 dropdown-toggle " data-toggle="dropdown" title="Thüringer Meer" href="/de/thueringer-meer-1590503604.html">Thüringer Meer</a><ul id="sub_node_171" class="dropdown-menu nlevel-1" style="margin-top:0px !important;"><li class=" nlevel-1 touchOnly"><a class="dropdown-item dropdown-normal " title="Thüringer Meer" href="/de/thueringer-meer-1590503604.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Angeln" href="/de/angeln.html" target="_self">Angeln</a></li><li class=" nlevel-2 "><a class="dropdown-item dropdown-normal " title="Baden und Wasserspaß" href="/de/badestellen.html" target="_self">Baden und Wasserspaß</a></li><li id="li_node_73" class=" dropdown-submenu nlevel-2 dropdown"><a data-id="node_73" class="dropdown-item llevel-2 dropdown-toggle " data-toggle="dropdown" title="Stauseeordnung Bleilochtalsperre und Hohenwartetalsperre" href="/de/thueringer-meer.html">Stauseeordnung Bleilochtalsperre und Hohenwartetalsperre</a><ul id="sub_node_73" class="dropdown-menu nlevel-2" style="margin-top:0px !important;"><li class=" nlevel-2 touchOnly"><a class="dropdown-item dropdown-normal " title="Stauseeordnung Bleilochtalsperre und Hohenwartetalsperre" href="/de/thueringer-meer.html" target="_self">Weiter ...</a></li><li class="dropdown-divider touchOnly"> </li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Karte Bleilochstausee" href="/de/karte-bleilochstausee.html" target="_self">Karte Bleilochstausee</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Karte Hohenwartestausee" href="/de/karte-hohenwartestausee.html" target="_self">Karte Hohenwartestausee</a></li><li class=" nlevel-3 "><a class="dropdown-item dropdown-normal " title="Termine am Thüringer Meer/Bekanntmachungen" href="/de/termine-am-thueringer-meer.html" target="_self">Termine am Thüringer Meer/Bekanntmachungen</a></li></ul></li></ul></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Veranstaltungskalender" href="/de/Veranstaltungskalender_.html" target="_self">Veranstaltungskalender</a></li><li class=" nlevel-1 "><a class="dropdown-item dropdown-normal " title="Saale-Orla-Erlebnissommer" href="/de/saaleorlaerlebnissomme.html" target="_self">Saale-Orla-Erlebnissommer</a></li></ul></li></ul><form class="form-inline" method="get" action="https://www.saale-orla-kreis.de/de/suche.html"><input type="hidden" name="search[submitted]" value="1"/><div class="input-group"><!-- input type="text" class="form-control" name="search[word]" value="" title="Hier können Sie mehrere, durch Leerzeichen getrennte Suchbegriffe eintragen" placeholder="Suchbegriffe eintragen ..." aria-label="Suchbegriffe" --><div class="input-group-append"><button class="btn btn-outline-primary" type="submit" title="Hier klicken, um die Suche auszulösen!"><i class="icon icon-search"><span class="sr-only">Suchen</span></i></button></div></div></form></div></nav>
</div>
</div>
</div>
</div>
</div>
<div class="sok-header-col-2">
<a href="/" title="" class="sok-header-link">
<img class="sok-header-logo" src="/modules/page/templates/standard/images/logo.png">
</a>
</div>
</div>
</header>
<div class="sok-clickpath sok-clickpath-marginer">
<div class="sok-clickpath-row">
<div class="sok-clickpath-col-1">
<div class="sok-clickpath-col-1-1">
</div>
</div>
<div class="sok-clickpath-col-2">
</div>
</div>
<div class="sok-clickpath-container">
<div class="container">
<div class="btp_breadcrumb ">
<style>
.breadcrumb-item + .breadcrumb-item-first::before { content: "";}
</style><nav aria-label="breadcrumb"><ol class="breadcrumb rounded-0 "><li class="breadcrumb-item d-none d-md-block" >Sie sind hier:</li><li class="breadcrumb-item breadcrumb-item-first " ><a href="de/startseite.html" title="Hauptmenü" >Startseite</a></li><li class="breadcrumb-item " ><a href="de/aktuelles.html" title="Aktuelles" >Aktuelles</a></li><li class="breadcrumb-item active " ><span aria-current="location">Corona</span></li></ol></nav></div>
</div>
</div>
</div>
<div class="fixed-bottom gccookiemessageSpecial" id="gccookiemessage" style="display:none; z-index: 1070; " data-gc-search="false">
<style>
.gccookiemessageSpecial .intern-page-link {
text-decoration: underline !important;
font-weight: bold;
}
</style>
<div class="mx-auto row shadow bg-light w-75 py-2 m-2 border border-primary">
<div class="col-12 col-lg-9 silbentrennung text-dark">
<p>Auf unserer Webseite werden Cookies gemäß unserer Datenschutzerklärung verwendet. Wenn Sie weiter auf diesen Seiten surfen, erklären Sie sich damit einverstanden.</p>
</div>
<div class="col-12 col-lg-3">
<div class="row">
<div class="col-12 mb-1">
<a class="btn btn-sm btn-outline-secondary silbentrennung w-100" href="de/datenschutz.html" title="Sprung zur Datenschutz-Seite">Datenschutzerklärung</a>
</div>
<div class="col-12 mb-1">
<a class="btn btn-sm btn-outline-secondary silbentrennung w-100" href="de/impressum.html" title="Sprung zum Impressum-Seite">Impressum</a>
</div>
<div class="col-12 mb-1">
<a class="btn btn-sm btn-outline-secondary silbentrennung w-100" href="#" target="_blank" onclick="showCookieModal(); return false;" title="öffnet einen Dialog, auf der die Cookie-Einstellungen vorgenommen werden können.">Einstellungen</a>
</div>
<div class="col-12">
<button type="button" class="btn btn-sm btn-primary silbentrennung w-100" onclick="setCookieMessageCookie();jQuery('#gccookiemessage').slideUp()">Verstanden</button>
</div>
</div>
</div>
</div>
</div>
<script>
// Prüft den Checkbox-Status und setzt den Klick-Handler
function setCookieModal() {
jQuery('.option-element-dialog')
.each(function() {
var element = jQuery(this);
var option = element.data('option-name');
if (option)
{
var option_on = element.data('option-on');
if (!option_on) option_on = 1;
var current = localStorage.getItem(option);
if (current && current == option_on)
{
element.prop('checked','checked');
}
else
{
element.prop('checked',null);
}
}
})
.on('click', function () {
var element = jQuery(this);
var option = element.data('option-name');
var option_on = element.data('option-on');
if (!option_on) option_on = 1;
var option_off = element.data('option-off');
var current = localStorage.getItem(option);
if (current && current === option_on)
{
if (option_off)
{
localStorage.setItem(option,option_off);
}
else
{
localStorage.removeItem(option);
}
}
else if (!current || current !== option_on)
{
localStorage.setItem(option,option_on)
}
});
}
// Callback-Funktion, wird nach dem Laden des Dialogs aufgerufen
function initCookieModal(response, status) {
window.setTimeout(setCookieModal,500);
}
// Lädt den Dialog
function showCookieModal()
{
var url = 'https://www.saale-orla-kreis.de/de/mod/2,1,28/ajax/1/cookiemodal/?tHash=1602697748.4978';
if (url) {
var modal = new BtpDialogClass('mycookiemodal', {
'ajaxUrl': url,
'title': 'Cookie-Einstellungen',
'onLoaded': initCookieModal,
'onHide': function() { location.reload(); }
});
modal.open();
}
}
</script>
<div id="pushmenu_26_2_28"
data-shift="0"
class="btp_pushmenu push d-flex flex-column h-100 sok-push-nav"
style="visibility: hidden;" data-gc-search="false"><nav class="pm-nav"
data-gc-search="false"><div data-level="1"
data-shift="0"
class="level"><div class="pm-fill"></div><div class="pm-module-top_inside pm-module order-0 empty"></div><div class="pm-separator order-0"></div><div title="Navigation"
class="pm-header"><div class="parent-title"><div class="parent-title-branding">Navigation</div></div><div class="pm-close"
aria-label="Schließen"
title="Schließen"><i aria-hidden="true"
class="pm-close-icon icon icon-cross2"></i><i class=" pm-icon-sp-overlay"></i></div></div><div class="pm-separator order-1"></div><div class="pm-module-top_inside2 pm-module order-2 empty"></div><div class="pm-separator order-2"></div><div class="pm-separator order-5"></div><ol data-level="1"
class="pm-list"><li data-level="1"
class="hassub subact" ><a
title="Aktuelles - Unterseiten öffnen"
data-level="1"
data-sub="true"
data-level="1"
class="pm-link"
href="/de/aktuelles.html"
target="_self"
tabindex="-1"><div class="pm-active "></div><span class="pm-link-title">Aktuelles</span><i class="pm-icon icon icon-arrow-right3 icon-arrow"></i></a><div data-level="2"
class="level"><div class="pm-fill"></div><div title="Aktuelles"
class="pm-header"><div class="parent-title">Aktuelles</div><div class="pm-close"
aria-label="Schließen"
title="Schließen"><i aria-hidden="true"
class="pm-close-icon icon icon-cross2"></i></div></div><div class="pm-separator order-1"></div><div class="pm-separator order-5"></div><ol data-level="2"
class="pm-list"><li data-level="2"
><a
title="Weiter ..."
data-level="2"
data-level="2"
class="pm-link"
href="/de/aktuelles.html"
target="_self"
tabindex="-1"><div class="pm-active "></div><span class="pm-link-title">Weiter ...</span></a></li><li data-level="2"
><a
title="Aktuelle Informationen"
data-level="2"
data-level="2"
class="pm-link"
href="/de/aktuelle-informationen.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Aktuelle Informationen</span></a></li><li data-level="2"
class="hassub active subact" ><a
title="Corona - Unterseiten öffnen"
data-level="2"
data-sub="true"
data-level="2"
class="pm-link"
href="/de/corona.html"
target="_self"
tabindex="-1"><div class="pm-active "></div><span class="pm-link-title">Corona</span><i class="pm-icon icon icon-arrow-right3 icon-arrow"></i></a><div data-level="3"
class="level active"><div class="pm-fill"></div><div title="Corona"
class="pm-header"><div class="parent-title">Corona</div><div class="pm-close"
aria-label="Schließen"
title="Schließen"><i aria-hidden="true"
class="pm-close-icon icon icon-cross2"></i></div></div><div class="pm-separator order-1"></div><div class="pm-separator order-5"></div><ol data-level="3"
class="pm-list"><li data-level="3"
class="active" ><a
title="Weiter ..."
data-level="3"
data-level="3"
class="pm-link"
href="/de/corona.html"
target="_self"
tabindex="-1"><div class="pm-active "></div><span class="pm-link-title">Weiter ...</span></a></li><li data-level="3"
><a
title="Häufige Fragen an das Bürgertelefon"
data-level="3"
data-level="3"
class="pm-link"
href="/de/haeufige-fragen-an-das-buergertelefon.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Häufige Fragen an das Bürgertelefon</span></a></li></ol><a href="javascript:void(0);"
data-level="3"
aria-label="Zurück"
title="Zurück"
tabindex="-1"
class="pm-back "><span>Zurück</span><i class="icon icon-arrow-left3"></i></a><div class="pm-separator order-3"></div><a class="sr-only pm-close"
href="javascript:void(0);"
data-level="3"
tabindex="-1"
title="Schließen">Schließen</a></div></li><li data-level="2"
><a
title="Grußwort des Landrates"
data-level="2"
data-level="2"
class="pm-link"
href="/de/gruszwort-des-landrates.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Grußwort des Landrates</span></a></li><li data-level="2"
><a
title="Öffentliche Bekanntmachungen"
data-level="2"
data-level="2"
class="pm-link"
href="/de/aktuelle-mitteilungen.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Öffentliche Bekanntmachungen</span></a></li><li data-level="2"
class="hassub" ><a
title="Ausschreibungen - Unterseiten öffnen"
data-level="2"
data-sub="true"
data-level="2"
class="pm-link"
href="/de/ausschreibungen.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Ausschreibungen</span><i class="pm-icon icon icon-arrow-right3 icon-arrow"></i></a><div data-level="3"
class="level"><div class="pm-fill"></div><div title="Ausschreibungen"
class="pm-header"><div class="parent-title">Ausschreibungen</div><div class="pm-close"
aria-label="Schließen"
title="Schließen"><i aria-hidden="true"
class="pm-close-icon icon icon-cross2"></i></div></div><div class="pm-separator order-1"></div><div class="pm-separator order-5"></div><ol data-level="3"
class="pm-list"><li data-level="3"
><a
title="Weiter ..."
data-level="3"
data-level="3"
class="pm-link"
href="/de/ausschreibungen.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Weiter ...</span></a></li><li data-level="3"
><a
title="Übersicht abgeschlossener Vergaben"
data-level="3"
data-level="3"
class="pm-link"
href="/de/uebersicht-abgeschlossener-vergaben.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Übersicht abgeschlossener Vergaben</span></a></li></ol><a href="javascript:void(0);"
data-level="3"
aria-label="Zurück"
title="Zurück"
tabindex="-1"
class="pm-back "><span>Zurück</span><i class="icon icon-arrow-left3"></i></a><div class="pm-separator order-3"></div><a class="sr-only pm-close"
href="javascript:void(0);"
data-level="3"
tabindex="-1"
title="Schließen">Schließen</a></div></li><li data-level="2"
><a
title="Veranstaltungskalender"
data-level="2"
data-level="2"
class="pm-link"
href="/de/Veranstaltungskalender.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Veranstaltungskalender</span></a></li><li data-level="2"
class="hassub" ><a
title="Stellenangebote - Unterseiten öffnen"
data-level="2"
data-sub="true"
data-level="2"
class="pm-link"
href="/de/stellenangebote.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Stellenangebote</span><i class="pm-icon icon icon-arrow-right3 icon-arrow"></i></a><div data-level="3"
class="level"><div class="pm-fill"></div><div title="Stellenangebote"
class="pm-header"><div class="parent-title">Stellenangebote</div><div class="pm-close"
aria-label="Schließen"
title="Schließen"><i aria-hidden="true"
class="pm-close-icon icon icon-cross2"></i></div></div><div class="pm-separator order-1"></div><div class="pm-separator order-5"></div><ol data-level="3"
class="pm-list"><li data-level="3"
><a
title="Weiter ..."
data-level="3"
data-level="3"
class="pm-link"
href="/de/stellenangebote.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Weiter ...</span></a></li><li data-level="3"
><a
title="Landratsamt Saale-Orla-Kreis"
data-level="3"
data-level="3"
class="pm-link"
href="/de/landratsamt-saaleorlakreis.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Landratsamt Saale-Orla-Kreis</span></a></li><li data-level="3"
><a
title="Thüringer Agentur für Fachkräftegewinnung"
data-level="3"
data-level="3"
class="pm-link"
href="/de/thueringer-agentur-fuer-fachkraeftegewinnung.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Thüringer Agentur für Fachkräftegewinnung</span></a></li><li data-level="3"
><a
title="Agentur für Arbeit"
data-level="3"
data-level="3"
class="pm-link"
href="/de/agentur-fuer-arbeitjobcenter.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Agentur für Arbeit</span></a></li></ol><a href="javascript:void(0);"
data-level="3"
aria-label="Zurück"
title="Zurück"
tabindex="-1"
class="pm-back "><span>Zurück</span><i class="icon icon-arrow-left3"></i></a><div class="pm-separator order-3"></div><a class="sr-only pm-close"
href="javascript:void(0);"
data-level="3"
tabindex="-1"
title="Schließen">Schließen</a></div></li><li data-level="2"
><a
title="Ausbildung"
data-level="2"
data-level="2"
class="pm-link"
href="/de/ausbildung.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Ausbildung</span></a></li><li data-level="2"
><a
title="Verkehrsinformationen"
data-level="2"
data-level="2"
class="pm-link"
href="/de/verkehrsinformationen.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Verkehrsinformationen</span></a></li><li data-level="2"
class="hassub" ><a
title="Ausstellungen im Landratsamt - Unterseiten öffnen"
data-level="2"
data-sub="true"
data-level="2"
class="pm-link"
href="/de/ausstellungen-im-landratsamt.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Ausstellungen im Landratsamt</span><i class="pm-icon icon icon-arrow-right3 icon-arrow"></i></a><div data-level="3"
class="level"><div class="pm-fill"></div><div title="Ausstellungen im Landratsamt"
class="pm-header"><div class="parent-title">Ausstellungen im Landratsamt</div><div class="pm-close"
aria-label="Schließen"
title="Schließen"><i aria-hidden="true"
class="pm-close-icon icon icon-cross2"></i></div></div><div class="pm-separator order-1"></div><div class="pm-separator order-5"></div><ol data-level="3"
class="pm-list"><li data-level="3"
><a
title="Weiter ..."
data-level="3"
data-level="3"
class="pm-link"
href="/de/ausstellungen-im-landratsamt.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Weiter ...</span></a></li><li data-level="3"
><a
title="Menschen & Rechte sind unteilbar - 27. September - 13. November"
data-level="3"
data-level="3"
class="pm-link"
href="/de/neue-seite-1601628606.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Menschen & Rechte sind unteilbar - 27. September - 13. November</span></a></li><li data-level="3"
><a
title="Im September ist nicht nur Herbstanfang - 2. bis 25. September"
data-level="3"
data-level="3"
class="pm-link"
href="/de/neue-seite-1601628699.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Im September ist nicht nur Herbstanfang - 2. bis 25. September</span></a></li><li data-level="3"
><a
title="Inklusion im Blick - 7. Juli - 28. August"
data-level="3"
data-level="3"
class="pm-link"
href="/de/inklusion-im-blick.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Inklusion im Blick - 7. Juli - 28. August</span></a></li></ol><a href="javascript:void(0);"
data-level="3"
aria-label="Zurück"
title="Zurück"
tabindex="-1"
class="pm-back "><span>Zurück</span><i class="icon icon-arrow-left3"></i></a><div class="pm-separator order-3"></div><a class="sr-only pm-close"
href="javascript:void(0);"
data-level="3"
tabindex="-1"
title="Schließen">Schließen</a></div></li></ol><a href="javascript:void(0);"
data-level="2"
aria-label="Zurück"
title="Zurück"
tabindex="-1"
class="pm-back "><span>Zurück</span><i class="icon icon-arrow-left3"></i></a><div class="pm-separator order-3"></div><a class="sr-only pm-close"
href="javascript:void(0);"
data-level="2"
tabindex="-1"
title="Schließen">Schließen</a></div></li><li data-level="1"
class="hassub" ><a
title="Bürgerservice - Unterseiten öffnen"
data-level="1"
data-sub="true"
data-level="1"
class="pm-link"
href="/de/buergerservice.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Bürgerservice</span><i class="pm-icon icon icon-arrow-right3 icon-arrow"></i></a><div data-level="2"
class="level"><div class="pm-fill"></div><div title="Bürgerservice"
class="pm-header"><div class="parent-title">Bürgerservice</div><div class="pm-close"
aria-label="Schließen"
title="Schließen"><i aria-hidden="true"
class="pm-close-icon icon icon-cross2"></i></div></div><div class="pm-separator order-1"></div><div class="pm-separator order-5"></div><ol data-level="2"
class="pm-list"><li data-level="2"
><a
title="Weiter ..."
data-level="2"
data-level="2"
class="pm-link"
href="/de/buergerservice.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Weiter ...</span></a></li><li data-level="2"
><a
title="Was erledige ich wo?"
data-level="2"
data-level="2"
class="pm-link"
href="/de/was-erledige-ich-wo.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Was erledige ich wo?</span></a></li><li data-level="2"
><a
title="Öffnungszeiten"
data-level="2"
data-level="2"
class="pm-link"
href="/de/oeffnungszeiten.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Öffnungszeiten</span></a></li><li data-level="2"
class="hassub" ><a
title="Amtsblatt & Publikationen - Unterseiten öffnen"
data-level="2"
data-sub="true"
data-level="2"
class="pm-link"
href="/de/amtsblattpublikationen.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Amtsblatt & Publikationen</span><i class="pm-icon icon icon-arrow-right3 icon-arrow"></i></a><div data-level="3"
class="level"><div class="pm-fill"></div><div title="Amtsblatt & Publikationen"
class="pm-header"><div class="parent-title">Amtsblatt & Publikationen</div><div class="pm-close"
aria-label="Schließen"
title="Schließen"><i aria-hidden="true"
class="pm-close-icon icon icon-cross2"></i></div></div><div class="pm-separator order-1"></div><div class="pm-separator order-5"></div><ol data-level="3"
class="pm-list"><li data-level="3"
><a
title="Weiter ..."
data-level="3"
data-level="3"
class="pm-link"
href="/de/amtsblattpublikationen.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Weiter ...</span></a></li><li data-level="3"
><a
title="Amtsblattarchiv"
data-level="3"
data-level="3"
class="pm-link"
href="/de/amtsblattarchiv.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Amtsblattarchiv</span></a></li></ol><a href="javascript:void(0);"
data-level="3"
aria-label="Zurück"
title="Zurück"
tabindex="-1"
class="pm-back "><span>Zurück</span><i class="icon icon-arrow-left3"></i></a><div class="pm-separator order-3"></div><a class="sr-only pm-close"
href="javascript:void(0);"
data-level="3"
tabindex="-1"
title="Schließen">Schließen</a></div></li><li data-level="2"
class="hassub" ><a
title="Bürgerservice-Portal - Unterseiten öffnen"
data-level="2"
data-sub="true"
data-level="2"
class="pm-link"
href="/de/buergerserviceportal.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Bürgerservice-Portal</span><i class="pm-icon icon icon-arrow-right3 icon-arrow"></i></a><div data-level="3"
class="level"><div class="pm-fill"></div><div title="Bürgerservice-Portal"
class="pm-header"><div class="parent-title">Bürgerservice-Portal</div><div class="pm-close"
aria-label="Schließen"
title="Schließen"><i aria-hidden="true"
class="pm-close-icon icon icon-cross2"></i></div></div><div class="pm-separator order-1"></div><div class="pm-separator order-5"></div><ol data-level="3"
class="pm-list"><li data-level="3"
><a
title="Weiter ..."
data-level="3"
data-level="3"
class="pm-link"
href="/de/buergerserviceportal.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Weiter ...</span></a></li><li data-level="3"
><a
title="Digitale Verwaltung"
data-level="3"
data-level="3"
class="pm-link"
href="/de/digitale-verwaltung.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Digitale Verwaltung</span></a></li><li data-level="3"
><a
title="E-Rechnung und Leitweg-ID"
data-level="3"
data-level="3"
class="pm-link"
href="/de/e-rechnung-und-leitweg-id.html"
target="_self"
tabindex="-1"><span class="pm-link-title">E-Rechnung und Leitweg-ID</span></a></li><li data-level="3"
class="hassub" ><a
title="Zahlungen an den Landkreis - Unterseiten öffnen"
data-level="3"
data-sub="true"
data-level="3"
class="pm-link"
href="/de/zahlungen-an-den-landkreis.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Zahlungen an den Landkreis</span><i class="pm-icon icon icon-arrow-right3 icon-arrow"></i></a><div data-level="4"
class="level"><div class="pm-fill"></div><div title="Zahlungen an den Landkreis"
class="pm-header"><div class="parent-title">Zahlungen an den Landkreis</div><div class="pm-close"
aria-label="Schließen"
title="Schließen"><i aria-hidden="true"
class="pm-close-icon icon icon-cross2"></i></div></div><div class="pm-separator order-1"></div><div class="pm-separator order-5"></div><ol data-level="4"
class="pm-list"><li data-level="4"
><a
title="Weiter ..."
data-level="4"
data-level="4"
class="pm-link"
href="/de/zahlungen-an-den-landkreis.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Weiter ...</span></a></li><li data-level="4"
><a
title="Haushalt"
data-level="4"
data-level="4"
class="pm-link"
href="/de/haushalt.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Haushalt</span></a></li><li data-level="4"
><a
title="Vollstreckung"
data-level="4"
data-level="4"
class="pm-link"
href="/de/vollstreckung.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Vollstreckung</span></a></li></ol><a href="javascript:void(0);"
data-level="4"
aria-label="Zurück"
title="Zurück"
tabindex="-1"
class="pm-back "><span>Zurück</span><i class="icon icon-arrow-left3"></i></a><div class="pm-separator order-3"></div><a class="sr-only pm-close"
href="javascript:void(0);"
data-level="4"
tabindex="-1"
title="Schließen">Schließen</a></div></li><li data-level="3"
><a
title="Formulare von A - Z"
data-level="3"
data-level="3"
class="pm-link"
href="/de/formulare.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Formulare von A - Z</span></a></li><li data-level="3"
><a
title="Organigramm"
data-level="3"
data-level="3"
class="pm-link"
href="/de/organigramm.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Organigramm</span></a></li><li data-level="3"
><a
title="Elektronische Kommunikation"
data-level="3"
data-level="3"
class="pm-link"
href="/de/elektronische-kommunikation.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Elektronische Kommunikation</span></a></li><li data-level="3"
><a
title="Barrierefreiheit"
data-level="3"
data-level="3"
class="pm-link"
href="/de/barrierefreiheit.html"
target="_self"
tabindex="-1"><span class="pm-link-title">Barrierefreiheit</span></a></li></ol><a href="javascript:void(0);"
data-level="3"
aria-label="Zurück"
title="Zurück"
tabindex="-1"
class="pm-back "><span>Zurück</span><i class="icon icon-arrow-left3"></i></a><div class="pm-separator order-3"></div><a class="sr-only pm-close"
href="javascript:void(0);"
data-level="3"
tabindex="-1"
title="Schließen">Schließen</a></div></li><li data-level="2"
><a
title="Jobcenter"
data-level="2"