@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

/**
  * 1. Add text decoration inheritance in all browsers (opinionated).
  * 2. Add vertical alignment inheritance in all browsers (opinionated).
  */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */ }

/**
  * 1. Use the default cursor in all browsers (opinionated).
  * 2. Change the line height in all browsers (opinionated).
  * 3. Use a 4-space tab width in all browsers (opinionated).
  * 4. Remove the grey highlight on links in iOS (opinionated).
  * 5. Prevent adjustments of font size after orientation changes in
  *    IE on Windows Phone and in iOS.
  * 6. Breaks words to prevent overflow in all browsers (opinionated).
  */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */ }

/* Sections
  * ========================================================================== */
/**
  * Remove the margin in all browsers (opinionated).
  */
body {
  margin: 0; }

/**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Edge, Firefox, and Safari.
  */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
  * ========================================================================== */
/**
  * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
  */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0; }

/**
  * Remove the margin on nested lists in Edge 18- and IE.
  */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0; }

/**
  * 1. Add the correct sizing in Firefox.
  * 2. Show the overflow in Edge 18- and IE.
  */
hr {
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
  * Add the correct display in IE.
  */
main {
  display: block; }

/**
  * Remove the list style on navigation lists in all browsers (opinionated).
  */
nav ol,
nav ul {
  list-style: none;
  padding: 0; }

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
  * ========================================================================== */
/**
  * Remove the gray background on active links in IE 10.
  */
a {
  background-color: transparent; }

/**
  * Add the correct text decoration in Edge 18-, IE, and Safari.
  */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; }

/**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */
b,
strong {
  font-weight: bolder; }

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 80%; }

/* Embedded content
  * ========================================================================== */
/*
  * Change the alignment on media elements in all browsers (opinionated).
  */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/**
  * Add the correct display in IE 9-.
  */
audio,
video {
  display: inline-block; }

/**
  * Add the correct display in iOS 4-7.
  */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
  * Remove the border on iframes in all browsers (opinionated).
  */
iframe {
  border-style: none; }

/**
  * Remove the border on images within links in IE 10-.
  */
img {
  border-style: none; }

/**
  * Change the fill color to match the text color in all browsers (opinionated).
  */
svg:not([fill]) {
  fill: currentColor; }

/* Tabular data
  * ========================================================================== */
/**
  * Collapse border spacing in all browsers (opinionated).
  */
table {
  border-collapse: collapse; }

/* Forms
  * ========================================================================== */
/**
  * Remove the margin on controls in Safari.
  */
button,
input,
select {
  margin: 0; }

/**
  * 1. Show the overflow in IE.
  * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
  */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */ }

/**
  * Correct the inability to style buttons in iOS and Safari.
  */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
  * 1. Change the inconsistent appearance in all browsers (opinionated).
  * 2. Correct the padding in Firefox.
  */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */ }

/**
  * Show the overflow in Edge 18- and IE.
  */
input {
  overflow: visible; }

/**
  * 1. Correct the text wrapping in Edge 18- and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */ }

/**
  * 1. Add the correct display in Edge 18- and IE.
  * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
  */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
  * Remove the inheritance of text transform in Firefox.
  */
select {
  text-transform: none; }

/**
  * 1. Remove the margin in Firefox and Safari.
  * 2. Remove the default vertical scrollbar in IE.
  * 3. Change the resize direction in all browsers (opinionated).
  */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */ }

/**
  * Remove the padding in IE 10-.
  */
[type="checkbox"],
[type="radio"] {
  padding: 0; }

/**
  * 1. Correct the odd appearance in Chrome, Edge, and Safari.
  * 2. Correct the outline style in Safari.
  */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
  * Correct the cursor style of increment and decrement buttons in Safari.
  */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto; }

/**
  * Correct the text style of placeholders in Chrome, Edge, and Safari.
  */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
  * Remove the inner padding in Chrome, Edge, and Safari on macOS.
  */
::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
  * 1. Correct the inability to style upload buttons in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/**
  * Remove the inner border and padding of focus outlines in Firefox.
  */
::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
  * Restore the focus outline styles unset by the previous rule in Firefox.
  */
:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
  * Remove the additional :invalid styles in Firefox.
  */
:-moz-ui-invalid {
  box-shadow: none; }

/* Interactive
  * ========================================================================== */
/*
  * Add the correct display in Edge 18- and IE.
  */
details {
  display: block; }

/*
  * Add the correct styles in Edge 18-, IE, and Safari.
  */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content; }

dialog:not([open]) {
  display: none; }

/*
  * Add the correct display in all browsers.
  */
summary {
  display: list-item; }

/* Scripting
  * ========================================================================== */
/**
  * Add the correct display in IE 9-.
  */
canvas {
  display: inline-block; }

/**
  * Add the correct display in IE.
  */
template {
  display: none; }

/* User interaction
  * ========================================================================== */
/*
  * 1. Remove the tapping delay in IE 10.
  * 2. Remove the tapping delay on clickable elements
       in all browsers (opinionated).
  */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
  /* 2 */ }

/**
  * Add the correct display in IE 10-.
  */
[hidden] {
  display: none; }

/* Accessibility
  * ========================================================================== */
/**
  * Change the cursor on busy elements in all browsers (opinionated).
  */
[aria-busy="true"] {
  cursor: progress; }

/*
  * Change the cursor on control elements in all browsers (opinionated).
  */
[aria-controls] {
  cursor: pointer; }

/*
  * Change the cursor on disabled, not-editable, or otherwise
  * inoperable elements in all browsers (opinionated).
  */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed; }

/*
  * Change the display on visually hidden accessible elements
  * in all browsers (opinionated).
  */
[aria-hidden="false"][hidden] {
  display: initial; }

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute; }

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08); }

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible; }

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999; }

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1); }

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px; }

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px); }

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block; }

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; }

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0; }

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6; }

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto; }

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px; }

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px; }

.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%; }

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px; }

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px; }

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%; }

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6; }

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff; }

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%; }

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6; }

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff; }

.flatpickr-calendar:focus {
  outline: 0; }

.flatpickr-wrapper {
  position: relative;
  display: inline-block; }

.flatpickr-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9); }

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none; }

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative; }

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
      /*rtl:begin:ignore*/
  left: 0; }

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
      /*rtl:begin:ignore*/
  right: 0; }

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9; }

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747; }

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px; }

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill .1s;
  transition: fill .1s;
  fill: inherit; }

.numInputWrapper {
  position: relative;
  height: auto; }

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block; }

.numInputWrapper input {
  width: 100%; }

.numInputWrapper input::-ms-clear {
  display: none; }

.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none; }

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1); }

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2); }

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute; }

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0; }

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%; }

.numInputWrapper span.arrowDown {
  top: 50%; }

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%; }

.numInputWrapper span svg {
  width: inherit;
  height: auto; }

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5); }

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05); }

.numInputWrapper:hover span {
  opacity: 1; }

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: .5ch;
  padding: 0; }

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05); }

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block; }

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9); }

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9); }

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 .5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield; }

.flatpickr-current-month input.cur-year:focus {
  outline: 0; }

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none; }

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 .5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto; }

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none; }

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05); }

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0; }

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px; }

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder; }

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0; }

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px; }

.flatpickr-days:focus {
  outline: 0; }

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1; }

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6; }

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center; }

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6; }

.flatpickr-day.today {
  border-color: #959ea9; }

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff; }

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7; }

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px; }

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0; }

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7; }

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px; }

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; }

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default; }

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1); }

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7; }

.flatpickr-day.hidden {
  visibility: hidden; }

.rangeMode .flatpickr-day {
  margin-top: 1px; }

.flatpickr-weekwrapper {
  float: left; }

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6; }

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px; }

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none; }

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden; }

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both; }

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left; }

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939; }

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939; }

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%; }

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%; }

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield; }

.flatpickr-time input.flatpickr-hour {
  font-weight: bold; }

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400; }

.flatpickr-time input:focus {
  outline: 0;
  border: 0; }

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center; }

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400; }

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee; }

.flatpickr-input[readonly] {
  cursor: pointer; }

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #eee, -1px 0 0 #eee, 0 1px 0 #eee, 0 -1px 0 #eee, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #eee, -1px 0 0 #eee, 0 1px 0 #eee, 0 -1px 0 #eee, 0 3px 13px rgba(0, 0, 0, 0.08); }

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible; }

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999; }

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1); }

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px; }

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px); }

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block; }

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; }

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0; }

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #eee; }

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto; }

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px; }

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px; }

.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%; }

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px; }

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px; }

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%; }

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #eee; }

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff; }

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%; }

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #eee; }

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff; }

.flatpickr-calendar:focus {
  outline: 0; }

.flatpickr-wrapper {
  position: relative;
  display: inline-block; }

.flatpickr-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: #3c3f40;
  fill: #3c3f40;
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: #3c3f40;
  fill: #3c3f40; }

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none; }

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative; }

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  left: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */ }

/*
        /*rtl:begin:ignore*/
/*
        /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  right: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */ }

/*
        /*rtl:begin:ignore*/
/*
        /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #f64747; }

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747; }

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px; }

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit; }

.numInputWrapper {
  position: relative;
  height: auto; }

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block; }

.numInputWrapper input {
  width: 100%; }

.numInputWrapper input::-ms-clear {
  display: none; }

.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none; }

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(64, 72, 72, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1); }

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2); }

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute; }

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0; }

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(64, 72, 72, 0.6);
  top: 26%; }

.numInputWrapper span.arrowDown {
  top: 50%; }

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(64, 72, 72, 0.6);
  top: 40%; }

.numInputWrapper span svg {
  width: inherit;
  height: auto; }

.numInputWrapper span svg path {
  fill: rgba(60, 63, 64, 0.5); }

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05); }

.numInputWrapper:hover span {
  opacity: 1; }

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px); }

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0; }

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05); }

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block; }

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: #3c3f40; }

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: #3c3f40; }

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield; }

.flatpickr-current-month input.cur-year:focus {
  outline: 0; }

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(60, 63, 64, 0.5);
  background: transparent;
  pointer-events: none; }

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto; }

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none; }

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05); }

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0; }

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px; }

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder; }

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0; }

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px; }

.flatpickr-days:focus {
  outline: 0; }

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  opacity: 1; }

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #eee;
  box-shadow: -1px 0 0 #eee; }

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #404848;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center; }

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e9e9e9;
  border-color: #e9e9e9; }

.flatpickr-day.today {
  border-color: #f64747; }

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #f64747;
  background: #f64747;
  color: #fff; }

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #4f99ff;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #4f99ff; }

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px; }

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0; }

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #4f99ff;
  box-shadow: -10px 0 0 #4f99ff; }

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px; }

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e9e9e9, 5px 0 0 #e9e9e9;
  box-shadow: -5px 0 0 #e9e9e9, 5px 0 0 #e9e9e9; }

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(64, 72, 72, 0.3);
  background: transparent;
  border-color: #e9e9e9;
  cursor: default; }

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(64, 72, 72, 0.1); }

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #4f99ff, 5px 0 0 #4f99ff;
  box-shadow: -5px 0 0 #4f99ff, 5px 0 0 #4f99ff; }

.flatpickr-day.hidden {
  visibility: hidden; }

.rangeMode .flatpickr-day {
  margin-top: 1px; }

.flatpickr-weekwrapper {
  float: left; }

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #eee;
  box-shadow: 1px 0 0 #eee; }

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px; }

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(64, 72, 72, 0.3);
  background: transparent;
  cursor: default;
  border: none; }

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden; }

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both; }

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left; }

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #404848; }

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #404848; }

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%; }

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%; }

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #404848;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield; }

.flatpickr-time input.flatpickr-hour {
  font-weight: bold; }

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400; }

.flatpickr-time input:focus {
  outline: 0;
  border: 0; }

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #404848;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center; }

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400; }

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #f1f1f1; }

.flatpickr-input[readonly] {
  cursor: pointer; }

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.flatpickr-calendar {
  width: 307.875px; }

.dayContainer {
  padding: 0;
  border-right: 0; }

span.flatpickr-day,
span.flatpickr-day.prevMonthDay,
span.flatpickr-day.nextMonthDay {
  border-radius: 0 !important;
  border: 1px solid #e9e9e9;
  max-width: none;
  border-right-color: transparent; }

span.flatpickr-day:nth-child(n+8),
span.flatpickr-day.prevMonthDay:nth-child(n+8),
span.flatpickr-day.nextMonthDay:nth-child(n+8) {
  border-top-color: transparent; }

span.flatpickr-day:nth-child(7n-6),
span.flatpickr-day.prevMonthDay:nth-child(7n-6),
span.flatpickr-day.nextMonthDay:nth-child(7n-6) {
  border-left: 0; }

span.flatpickr-day:nth-child(n+36),
span.flatpickr-day.prevMonthDay:nth-child(n+36),
span.flatpickr-day.nextMonthDay:nth-child(n+36) {
  border-bottom: 0; }

span.flatpickr-day:nth-child(-n+7),
span.flatpickr-day.prevMonthDay:nth-child(-n+7),
span.flatpickr-day.nextMonthDay:nth-child(-n+7) {
  margin-top: 0; }

span.flatpickr-day.today:not(.selected),
span.flatpickr-day.prevMonthDay.today:not(.selected),
span.flatpickr-day.nextMonthDay.today:not(.selected) {
  border-color: #e9e9e9;
  border-right-color: transparent;
  border-top-color: transparent;
  border-bottom-color: #f64747; }

span.flatpickr-day.today:not(.selected):hover,
span.flatpickr-day.prevMonthDay.today:not(.selected):hover,
span.flatpickr-day.nextMonthDay.today:not(.selected):hover {
  border: 1px solid #f64747; }

span.flatpickr-day.startRange,
span.flatpickr-day.prevMonthDay.startRange,
span.flatpickr-day.nextMonthDay.startRange,
span.flatpickr-day.endRange,
span.flatpickr-day.prevMonthDay.endRange,
span.flatpickr-day.nextMonthDay.endRange {
  border-color: #4f99ff; }

span.flatpickr-day.today,
span.flatpickr-day.prevMonthDay.today,
span.flatpickr-day.nextMonthDay.today,
span.flatpickr-day.selected,
span.flatpickr-day.prevMonthDay.selected,
span.flatpickr-day.nextMonthDay.selected {
  z-index: 2; }

.rangeMode .flatpickr-day {
  margin-top: -1px; }

.flatpickr-weekwrapper .flatpickr-weeks {
  -webkit-box-shadow: none;
  box-shadow: none; }

.flatpickr-weekwrapper span.flatpickr-day {
  border: 0;
  margin: -1px 0 0 -1px; }

.hasWeeks .flatpickr-days {
  border-right: 0; }

@media screen and (min-width: 0\0) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0) and (min-resolution: 72dpi) {
  span.flatpickr-day {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; } }

:root {
  --c-bg-base: #ffffff;
  --c-bg-alt: #E3E3E3;
  --c-font-base: #000000;
  --c-divider: #c7c7c7;
  --c-error: #EA004E;
  --cookie-banner-color-high: #bbb;
  --cookie-banner-color-low: #000;
  --cookie-banner-color-link: #666;
  --cookie-banner-color-highlight: #fff;
  --cookie-selection-color-border: #bbb;
  --cookie-selection-color-disabled: #bbb;
  --cookie-selection-color-switch_slider: #bbb;
  --cookie-selection-color-switch_dot: #fff;
  --cookie-selection-color-switch_dot-highlight: #fff; }

/**
 * @values: stretch|center|flex-start|flex-end|space-between|space-around|initial|inherit
 * @ref: http://www.w3schools.com/cssref/css3_pr_align-content.asp
 **/
/**
 * @values: stretch|center|flex-start|flex-end|baseline|initial|inherit
 * @ref: http://www.w3schools.com/cssref/css3_pr_align-items.asp
 **/
/**
 * @values: row|row-reverse|column|column-reverse|initial|inherit
 */
/**
 * @ref: http://www.w3schools.com/cssref/css3_pr_flex-flow.asp
 **/
/**
   * @values: nowrap|wrap|wrap-reverse|initial|inherit
   */
/**
 * Weights:
 * ------------
 * 100: Thin
 * 200: Light
 * 400: Regular
 * 500: Medium
 * 600: SemiBold
 * 700: Bold
 * 800: ExtraBold
 * 900: Black
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar; }

*,
::after,
::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

.container, .vd-breadcrumb, .vd-breadcrumb .vd-nav, #tx-solr-search, .vd-filter-container, .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__navigation--buttons, body.template--startpage .vd-section--header .header__top .vd-wrapper, body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section .header__navigation--buttons, body.template--startpage .vd-section--hero .vd-wrapper, .content-element.gutachter-list, .vd-section--main .vd-message, .vd-section--header .header__top .vd-wrapper, .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_event_registration .vd-wrapper, .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--vd_event_list > .vd-wrapper,
.ce--vd_event_search > .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_newsletter_registration, .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list.ce--minimal__background_red .icon, .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .news__cta, .ce--vd_accordion .ce__title,
.ce--vd_downloads .ce__title, .ce--vd_accordion .ce__content .ce__bodytext,
.ce--vd_downloads .ce__content .ce__bodytext, .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .vd-slick-dots, .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_text .vd-wrapper, .ce.ce--table .vd-wrapper, .ce.ce--html .vd-wrapper, .ce.ce--vd_text_images .ce__title, .ce.ce--vd_link_list, .ce.ce--vd_quotation, .ce--vd_pages_teaser .ce__title, .ce.ce--vd_video .vd-wrapper, .ce.ce--form_formframework .vd-wrapper, .ce.ce--vd_info_box, .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_list_offers .ce__title, .content-element-directories .text, .content-element-directories #directories_filter__form, .content-element-directories .directories-results, #tx-solr-search .vd-wrapper, main > .ce.ce--vd_event_teaser .single-event-teaser, .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_job_form, .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce--vd_downloads .vd-wrapper, .ce--vd_download .ce__title, .ce--vd_download .ce__content, .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_news_carousel > .vd-wrapper {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container, .vd-breadcrumb, .vd-breadcrumb .vd-nav, #tx-solr-search, .vd-filter-container, .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__navigation--buttons, body.template--startpage .vd-section--header .header__top .vd-wrapper, body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section .header__navigation--buttons, body.template--startpage .vd-section--hero .vd-wrapper, .content-element.gutachter-list, .vd-section--main .vd-message, .vd-section--header .header__top .vd-wrapper, .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_event_registration .vd-wrapper, .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--vd_event_list > .vd-wrapper,
  .ce--vd_event_search > .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_newsletter_registration, .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list.ce--minimal__background_red .icon, .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .news__cta, .ce--vd_accordion .ce__title,
  .ce--vd_downloads .ce__title, .ce--vd_accordion .ce__content .ce__bodytext,
  .ce--vd_downloads .ce__content .ce__bodytext, .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .vd-slick-dots, .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_text .vd-wrapper, .ce.ce--table .vd-wrapper, .ce.ce--html .vd-wrapper, .ce.ce--vd_text_images .ce__title, .ce.ce--vd_link_list, .ce.ce--vd_quotation, .ce--vd_pages_teaser .ce__title, .ce.ce--vd_video .vd-wrapper, .ce.ce--form_formframework .vd-wrapper, .ce.ce--vd_info_box, .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_list_offers .ce__title, .content-element-directories .text, .content-element-directories #directories_filter__form, .content-element-directories .directories-results, #tx-solr-search .vd-wrapper, main > .ce.ce--vd_event_teaser .single-event-teaser, .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_job_form, .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce--vd_downloads .vd-wrapper, .ce--vd_download .ce__title, .ce--vd_download .ce__content, .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_news_carousel > .vd-wrapper {
    max-width: 540px; } }

@media (min-width: 768px) {
  .container, .vd-breadcrumb, .vd-breadcrumb .vd-nav, #tx-solr-search, .vd-filter-container, .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__navigation--buttons, body.template--startpage .vd-section--header .header__top .vd-wrapper, body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section .header__navigation--buttons, body.template--startpage .vd-section--hero .vd-wrapper, .content-element.gutachter-list, .vd-section--main .vd-message, .vd-section--header .header__top .vd-wrapper, .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_event_registration .vd-wrapper, .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--vd_event_list > .vd-wrapper,
  .ce--vd_event_search > .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_newsletter_registration, .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list.ce--minimal__background_red .icon, .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .news__cta, .ce--vd_accordion .ce__title,
  .ce--vd_downloads .ce__title, .ce--vd_accordion .ce__content .ce__bodytext,
  .ce--vd_downloads .ce__content .ce__bodytext, .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .vd-slick-dots, .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_text .vd-wrapper, .ce.ce--table .vd-wrapper, .ce.ce--html .vd-wrapper, .ce.ce--vd_text_images .ce__title, .ce.ce--vd_link_list, .ce.ce--vd_quotation, .ce--vd_pages_teaser .ce__title, .ce.ce--vd_video .vd-wrapper, .ce.ce--form_formframework .vd-wrapper, .ce.ce--vd_info_box, .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_list_offers .ce__title, .content-element-directories .text, .content-element-directories #directories_filter__form, .content-element-directories .directories-results, #tx-solr-search .vd-wrapper, main > .ce.ce--vd_event_teaser .single-event-teaser, .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_job_form, .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce--vd_downloads .vd-wrapper, .ce--vd_download .ce__title, .ce--vd_download .ce__content, .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_news_carousel > .vd-wrapper {
    max-width: 720px;
    padding-right: 10px;
    padding-left: 10px; } }

@media (min-width: 992px) {
  .container, .vd-breadcrumb, .vd-breadcrumb .vd-nav, #tx-solr-search, .vd-filter-container, .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__navigation--buttons, body.template--startpage .vd-section--header .header__top .vd-wrapper, body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section .header__navigation--buttons, body.template--startpage .vd-section--hero .vd-wrapper, .content-element.gutachter-list, .vd-section--main .vd-message, .vd-section--header .header__top .vd-wrapper, .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_event_registration .vd-wrapper, .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--vd_event_list > .vd-wrapper,
  .ce--vd_event_search > .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_newsletter_registration, .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list.ce--minimal__background_red .icon, .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .news__cta, .ce--vd_accordion .ce__title,
  .ce--vd_downloads .ce__title, .ce--vd_accordion .ce__content .ce__bodytext,
  .ce--vd_downloads .ce__content .ce__bodytext, .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .vd-slick-dots, .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_text .vd-wrapper, .ce.ce--table .vd-wrapper, .ce.ce--html .vd-wrapper, .ce.ce--vd_text_images .ce__title, .ce.ce--vd_link_list, .ce.ce--vd_quotation, .ce--vd_pages_teaser .ce__title, .ce.ce--vd_video .vd-wrapper, .ce.ce--form_formframework .vd-wrapper, .ce.ce--vd_info_box, .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_list_offers .ce__title, .content-element-directories .text, .content-element-directories #directories_filter__form, .content-element-directories .directories-results, #tx-solr-search .vd-wrapper, main > .ce.ce--vd_event_teaser .single-event-teaser, .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_job_form, .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce--vd_downloads .vd-wrapper, .ce--vd_download .ce__title, .ce--vd_download .ce__content, .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_news_carousel > .vd-wrapper {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .container, .vd-breadcrumb, .vd-breadcrumb .vd-nav, #tx-solr-search, .vd-filter-container, .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__navigation--buttons, body.template--startpage .vd-section--header .header__top .vd-wrapper, body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section .header__navigation--buttons, body.template--startpage .vd-section--hero .vd-wrapper, .content-element.gutachter-list, .vd-section--main .vd-message, .vd-section--header .header__top .vd-wrapper, .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_event_registration .vd-wrapper, .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--vd_event_list > .vd-wrapper,
  .ce--vd_event_search > .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_newsletter_registration, .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list.ce--minimal__background_red .icon, .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .news__cta, .ce--vd_accordion .ce__title,
  .ce--vd_downloads .ce__title, .ce--vd_accordion .ce__content .ce__bodytext,
  .ce--vd_downloads .ce__content .ce__bodytext, .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .vd-slick-dots, .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_text .vd-wrapper, .ce.ce--table .vd-wrapper, .ce.ce--html .vd-wrapper, .ce.ce--vd_text_images .ce__title, .ce.ce--vd_link_list, .ce.ce--vd_quotation, .ce--vd_pages_teaser .ce__title, .ce.ce--vd_video .vd-wrapper, .ce.ce--form_formframework .vd-wrapper, .ce.ce--vd_info_box, .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_list_offers .ce__title, .content-element-directories .text, .content-element-directories #directories_filter__form, .content-element-directories .directories-results, #tx-solr-search .vd-wrapper, main > .ce.ce--vd_event_teaser .single-event-teaser, .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_job_form, .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce--vd_downloads .vd-wrapper, .ce--vd_download .ce__title, .ce--vd_download .ce__content, .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_news_carousel > .vd-wrapper {
    max-width: 1140px; } }

.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container, .vd-breadcrumb, .vd-breadcrumb .vd-nav, #tx-solr-search, .vd-filter-container, .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__navigation--buttons, body.template--startpage .vd-section--header .header__top .vd-wrapper, body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section .header__navigation--buttons, body.template--startpage .vd-section--hero .vd-wrapper, .content-element.gutachter-list, .vd-section--main .vd-message, .vd-section--header .header__top .vd-wrapper, .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_event_registration .vd-wrapper, .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--vd_event_list > .vd-wrapper,
  .ce--vd_event_search > .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_newsletter_registration, .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list.ce--minimal__background_red .icon, .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .news__cta, .ce--vd_accordion .ce__title,
  .ce--vd_downloads .ce__title, .ce--vd_accordion .ce__content .ce__bodytext,
  .ce--vd_downloads .ce__content .ce__bodytext, .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .vd-slick-dots, .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_text .vd-wrapper, .ce.ce--table .vd-wrapper, .ce.ce--html .vd-wrapper, .ce.ce--vd_text_images .ce__title, .ce.ce--vd_link_list, .ce.ce--vd_quotation, .ce--vd_pages_teaser .ce__title, .ce.ce--vd_video .vd-wrapper, .ce.ce--form_formframework .vd-wrapper, .ce.ce--vd_info_box, .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_list_offers .ce__title, .content-element-directories .text, .content-element-directories #directories_filter__form, .content-element-directories .directories-results, #tx-solr-search .vd-wrapper, main > .ce.ce--vd_event_teaser .single-event-teaser, .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_job_form, .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce--vd_downloads .vd-wrapper, .ce--vd_download .ce__title, .ce--vd_download .ce__content, .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_news_carousel > .vd-wrapper,
  .container-sm {
    max-width: 540px; } }

@media (min-width: 768px) {
  .container, .vd-breadcrumb, .vd-breadcrumb .vd-nav, #tx-solr-search, .vd-filter-container, .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__navigation--buttons, body.template--startpage .vd-section--header .header__top .vd-wrapper, body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section .header__navigation--buttons, body.template--startpage .vd-section--hero .vd-wrapper, .content-element.gutachter-list, .vd-section--main .vd-message, .vd-section--header .header__top .vd-wrapper, .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_event_registration .vd-wrapper, .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--vd_event_list > .vd-wrapper,
  .ce--vd_event_search > .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_newsletter_registration, .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list.ce--minimal__background_red .icon, .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .news__cta, .ce--vd_accordion .ce__title,
  .ce--vd_downloads .ce__title, .ce--vd_accordion .ce__content .ce__bodytext,
  .ce--vd_downloads .ce__content .ce__bodytext, .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .vd-slick-dots, .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_text .vd-wrapper, .ce.ce--table .vd-wrapper, .ce.ce--html .vd-wrapper, .ce.ce--vd_text_images .ce__title, .ce.ce--vd_link_list, .ce.ce--vd_quotation, .ce--vd_pages_teaser .ce__title, .ce.ce--vd_video .vd-wrapper, .ce.ce--form_formframework .vd-wrapper, .ce.ce--vd_info_box, .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_list_offers .ce__title, .content-element-directories .text, .content-element-directories #directories_filter__form, .content-element-directories .directories-results, #tx-solr-search .vd-wrapper, main > .ce.ce--vd_event_teaser .single-event-teaser, .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_job_form, .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce--vd_downloads .vd-wrapper, .ce--vd_download .ce__title, .ce--vd_download .ce__content, .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_news_carousel > .vd-wrapper,
  .container-md,
  .container-sm {
    max-width: 720px; } }

@media (min-width: 992px) {
  .container, .vd-breadcrumb, .vd-breadcrumb .vd-nav, #tx-solr-search, .vd-filter-container, .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__navigation--buttons, body.template--startpage .vd-section--header .header__top .vd-wrapper, body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section .header__navigation--buttons, body.template--startpage .vd-section--hero .vd-wrapper, .content-element.gutachter-list, .vd-section--main .vd-message, .vd-section--header .header__top .vd-wrapper, .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_event_registration .vd-wrapper, .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--vd_event_list > .vd-wrapper,
  .ce--vd_event_search > .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_newsletter_registration, .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list.ce--minimal__background_red .icon, .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .news__cta, .ce--vd_accordion .ce__title,
  .ce--vd_downloads .ce__title, .ce--vd_accordion .ce__content .ce__bodytext,
  .ce--vd_downloads .ce__content .ce__bodytext, .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .vd-slick-dots, .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_text .vd-wrapper, .ce.ce--table .vd-wrapper, .ce.ce--html .vd-wrapper, .ce.ce--vd_text_images .ce__title, .ce.ce--vd_link_list, .ce.ce--vd_quotation, .ce--vd_pages_teaser .ce__title, .ce.ce--vd_video .vd-wrapper, .ce.ce--form_formframework .vd-wrapper, .ce.ce--vd_info_box, .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_list_offers .ce__title, .content-element-directories .text, .content-element-directories #directories_filter__form, .content-element-directories .directories-results, #tx-solr-search .vd-wrapper, main > .ce.ce--vd_event_teaser .single-event-teaser, .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_job_form, .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce--vd_downloads .vd-wrapper, .ce--vd_download .ce__title, .ce--vd_download .ce__content, .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_news_carousel > .vd-wrapper,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .container, .vd-breadcrumb, .vd-breadcrumb .vd-nav, #tx-solr-search, .vd-filter-container, .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__navigation--buttons, body.template--startpage .vd-section--header .header__top .vd-wrapper, body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section .header__navigation--buttons, body.template--startpage .vd-section--hero .vd-wrapper, .content-element.gutachter-list, .vd-section--main .vd-message, .vd-section--header .header__top .vd-wrapper, .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_event_registration .vd-wrapper, .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--vd_event_list > .vd-wrapper,
  .ce--vd_event_search > .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_newsletter_registration, .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list.ce--minimal__background_red .icon, .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .news__cta, .ce--vd_accordion .ce__title,
  .ce--vd_downloads .ce__title, .ce--vd_accordion .ce__content .ce__bodytext,
  .ce--vd_downloads .ce__content .ce__bodytext, .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .vd-slick-dots, .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_text .vd-wrapper, .ce.ce--table .vd-wrapper, .ce.ce--html .vd-wrapper, .ce.ce--vd_text_images .ce__title, .ce.ce--vd_link_list, .ce.ce--vd_quotation, .ce--vd_pages_teaser .ce__title, .ce.ce--vd_video .vd-wrapper, .ce.ce--form_formframework .vd-wrapper, .ce.ce--vd_info_box, .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_list_offers .ce__title, .content-element-directories .text, .content-element-directories #directories_filter__form, .content-element-directories .directories-results, #tx-solr-search .vd-wrapper, main > .ce.ce--vd_event_teaser .single-event-teaser, .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_job_form, .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce--vd_downloads .vd-wrapper, .ce--vd_download .ce__title, .ce--vd_download .ce__content, .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_news_carousel > .vd-wrapper,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px; } }

.row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px; }
  @media (min-width: 768px) {
    .row {
      margin-right: -10px;
      margin-left: -10px; } }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0; }

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px; }
  @media (min-width: 768px) {
    .col,
    .col-1,
    .col-10,
    .col-11,
    .col-12,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-auto,
    .col-lg,
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-auto,
    .col-md,
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-auto,
    .col-sm,
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-auto,
    .col-xl,
    .col-xl-1,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-auto {
      padding-right: 10px;
      padding-left: 10px; } }

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
          flex-grow: 1;
  max-width: 100%; }

.row-cols-1 > * {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%; }

.row-cols-2 > * {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%; }

.row-cols-3 > * {
  -ms-flex: 0 0 33.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 33.333333%;
  max-width: 33.333333%; }

.row-cols-4 > * {
  -ms-flex: 0 0 25%;
  -webkit-box-flex: 0;
          flex: 0 0 25%;
  max-width: 25%; }

.row-cols-5 > * {
  -ms-flex: 0 0 20%;
  -webkit-box-flex: 0;
          flex: 0 0 20%;
  max-width: 20%; }

.row-cols-6 > * {
  -ms-flex: 0 0 16.666667%;
  -webkit-box-flex: 0;
          flex: 0 0 16.666667%;
  max-width: 16.666667%; }

.col-auto {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%; }

.col-1 {
  -ms-flex: 0 0 8.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 8.333333%;
  max-width: 8.333333%; }

.col-2 {
  -ms-flex: 0 0 16.666667%;
  -webkit-box-flex: 0;
          flex: 0 0 16.666667%;
  max-width: 16.666667%; }

.col-3 {
  -ms-flex: 0 0 25%;
  -webkit-box-flex: 0;
          flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  -ms-flex: 0 0 33.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 33.333333%;
  max-width: 33.333333%; }

.col-5 {
  -ms-flex: 0 0 41.666667%;
  -webkit-box-flex: 0;
          flex: 0 0 41.666667%;
  max-width: 41.666667%; }

.col-6 {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  -ms-flex: 0 0 58.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 58.333333%;
  max-width: 58.333333%; }

.col-8 {
  -ms-flex: 0 0 66.666667%;
  -webkit-box-flex: 0;
          flex: 0 0 66.666667%;
  max-width: 66.666667%; }

.col-9 {
  -ms-flex: 0 0 75%;
  -webkit-box-flex: 0;
          flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  -ms-flex: 0 0 83.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 83.333333%;
  max-width: 83.333333%; }

.col-11 {
  -ms-flex: 0 0 91.666667%;
  -webkit-box-flex: 0;
          flex: 0 0 91.666667%;
  max-width: 91.666667%; }

.col-12 {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
          order: -1; }

.order-last {
  -ms-flex-order: 13;
  -webkit-box-ordinal-group: 14;
          order: 13; }

.order-0 {
  -ms-flex-order: 0;
  -webkit-box-ordinal-group: 1;
          order: 0; }

.order-1 {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
          order: 1; }

.order-2 {
  -ms-flex-order: 2;
  -webkit-box-ordinal-group: 3;
          order: 2; }

.order-3 {
  -ms-flex-order: 3;
  -webkit-box-ordinal-group: 4;
          order: 3; }

.order-4 {
  -ms-flex-order: 4;
  -webkit-box-ordinal-group: 5;
          order: 4; }

.order-5 {
  -ms-flex-order: 5;
  -webkit-box-ordinal-group: 6;
          order: 5; }

.order-6 {
  -ms-flex-order: 6;
  -webkit-box-ordinal-group: 7;
          order: 6; }

.order-7 {
  -ms-flex-order: 7;
  -webkit-box-ordinal-group: 8;
          order: 7; }

.order-8 {
  -ms-flex-order: 8;
  -webkit-box-ordinal-group: 9;
          order: 8; }

.order-9 {
  -ms-flex-order: 9;
  -webkit-box-ordinal-group: 10;
          order: 9; }

.order-10 {
  -ms-flex-order: 10;
  -webkit-box-ordinal-group: 11;
          order: 10; }

.order-11 {
  -ms-flex-order: 11;
  -webkit-box-ordinal-group: 12;
          order: 11; }

.order-12 {
  -ms-flex-order: 12;
  -webkit-box-ordinal-group: 13;
          order: 12; }

.offset-1 {
  margin-left: 8.333333%; }

.offset-2 {
  margin-left: 16.666667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.333333%; }

.offset-5 {
  margin-left: 41.666667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.333333%; }

.offset-8 {
  margin-left: 66.666667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.333333%; }

.offset-11 {
  margin-left: 91.666667%; }

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%; }
  .row-cols-sm-1 > * {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-sm-2 > * {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-sm-3 > * {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .row-cols-sm-4 > * {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-sm-5 > * {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
            flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-sm-6 > * {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1; }
  .order-sm-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
            order: 13; }
  .order-sm-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
            order: 0; }
  .order-sm-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1; }
  .order-sm-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2; }
  .order-sm-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3; }
  .order-sm-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4; }
  .order-sm-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
            order: 5; }
  .order-sm-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
            order: 6; }
  .order-sm-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
            order: 7; }
  .order-sm-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
            order: 8; }
  .order-sm-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
            order: 9; }
  .order-sm-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
            order: 10; }
  .order-sm-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
            order: 11; }
  .order-sm-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
            order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.333333%; }
  .offset-sm-2 {
    margin-left: 16.666667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.333333%; }
  .offset-sm-5 {
    margin-left: 41.666667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.333333%; }
  .offset-sm-8 {
    margin-left: 66.666667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.333333%; }
  .offset-sm-11 {
    margin-left: 91.666667%; } }

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%; }
  .row-cols-md-1 > * {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-md-2 > * {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-md-3 > * {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .row-cols-md-4 > * {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-md-5 > * {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
            flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-md-6 > * {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1; }
  .order-md-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
            order: 13; }
  .order-md-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
            order: 0; }
  .order-md-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1; }
  .order-md-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2; }
  .order-md-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3; }
  .order-md-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4; }
  .order-md-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
            order: 5; }
  .order-md-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
            order: 6; }
  .order-md-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
            order: 7; }
  .order-md-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
            order: 8; }
  .order-md-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
            order: 9; }
  .order-md-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
            order: 10; }
  .order-md-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
            order: 11; }
  .order-md-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
            order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.333333%; }
  .offset-md-2 {
    margin-left: 16.666667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.333333%; }
  .offset-md-5 {
    margin-left: 41.666667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.333333%; }
  .offset-md-8 {
    margin-left: 66.666667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.333333%; }
  .offset-md-11 {
    margin-left: 91.666667%; } }

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%; }
  .row-cols-lg-1 > * {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-lg-2 > * {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-lg-3 > * {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .row-cols-lg-4 > * {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-lg-5 > * {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
            flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-lg-6 > * {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1; }
  .order-lg-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
            order: 13; }
  .order-lg-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
            order: 0; }
  .order-lg-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1; }
  .order-lg-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2; }
  .order-lg-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3; }
  .order-lg-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4; }
  .order-lg-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
            order: 5; }
  .order-lg-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
            order: 6; }
  .order-lg-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
            order: 7; }
  .order-lg-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
            order: 8; }
  .order-lg-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
            order: 9; }
  .order-lg-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
            order: 10; }
  .order-lg-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
            order: 11; }
  .order-lg-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
            order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.333333%; }
  .offset-lg-2 {
    margin-left: 16.666667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.333333%; }
  .offset-lg-5 {
    margin-left: 41.666667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.333333%; }
  .offset-lg-8 {
    margin-left: 66.666667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.333333%; }
  .offset-lg-11 {
    margin-left: 91.666667%; } }

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%; }
  .row-cols-xl-1 > * {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-xl-2 > * {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-xl-3 > * {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .row-cols-xl-4 > * {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-xl-5 > * {
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
            flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-xl-6 > * {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1; }
  .order-xl-last {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
            order: 13; }
  .order-xl-0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
            order: 0; }
  .order-xl-1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1; }
  .order-xl-2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2; }
  .order-xl-3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3; }
  .order-xl-4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4; }
  .order-xl-5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
            order: 5; }
  .order-xl-6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
            order: 6; }
  .order-xl-7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
            order: 7; }
  .order-xl-8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
            order: 8; }
  .order-xl-9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
            order: 9; }
  .order-xl-10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
            order: 10; }
  .order-xl-11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
            order: 11; }
  .order-xl-12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
            order: 12; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.333333%; }
  .offset-xl-2 {
    margin-left: 16.666667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.333333%; }
  .offset-xl-5 {
    margin-left: 41.666667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.333333%; }
  .offset-xl-8 {
    margin-left: 66.666667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.333333%; }
  .offset-xl-11 {
    margin-left: 91.666667%; } }

.d-none {
  display: none !important; }

.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important; }

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: -webkit-inline-box !important;
  display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important; }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important; } }

@media (min-width: 768px) {
  .d-md-none {
    display: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important; }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important; } }

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important; }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important; } }

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important; }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important; } }

@media print {
  .d-print-none {
    display: none !important; }
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important; }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important; } }

.flex-row {
  -ms-flex-direction: row !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
          flex-direction: row !important; }

.flex-column {
  -ms-flex-direction: column !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
          flex-direction: column !important; }

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
          flex-direction: row-reverse !important; }

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
          flex-direction: column-reverse !important; }

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important; }

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important; }

.flex-fill {
  -ms-flex: 1 1 auto !important;
  -webkit-box-flex: 1 !important;
          flex: 1 1 auto !important; }

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  -webkit-box-flex: 0 !important;
          flex-grow: 0 !important; }

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  -webkit-box-flex: 1 !important;
          flex-grow: 1 !important; }

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important; }

.justify-content-start {
  -ms-flex-pack: start !important;
  -webkit-box-pack: start !important;
          justify-content: flex-start !important; }

.justify-content-end {
  -ms-flex-pack: end !important;
  -webkit-box-pack: end !important;
          justify-content: flex-end !important; }

.justify-content-center {
  -ms-flex-pack: center !important;
  -webkit-box-pack: center !important;
          justify-content: center !important; }

.justify-content-between {
  -ms-flex-pack: justify !important;
  -webkit-box-pack: justify !important;
          justify-content: space-between !important; }

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important; }

.align-items-start {
  -ms-flex-align: start !important;
  -webkit-box-align: start !important;
          align-items: flex-start !important; }

.align-items-end {
  -ms-flex-align: end !important;
  -webkit-box-align: end !important;
          align-items: flex-end !important; }

.align-items-center {
  -ms-flex-align: center !important;
  -webkit-box-align: center !important;
          align-items: center !important; }

.align-items-baseline {
  -ms-flex-align: baseline !important;
  -webkit-box-align: baseline !important;
          align-items: baseline !important; }

.align-items-stretch {
  -ms-flex-align: stretch !important;
  -webkit-box-align: stretch !important;
          align-items: stretch !important; }

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important; }

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important; }

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important; }

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important; }

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important; }

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important; }

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important; }

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important; }

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important; }

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important; }

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important; }

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important; }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important; }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important; }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
            justify-content: flex-start !important; }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
            justify-content: flex-end !important; }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
            justify-content: center !important; }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
            justify-content: space-between !important; }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
            align-items: flex-start !important; }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
            align-items: flex-end !important; }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
            align-items: center !important; }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
            align-items: baseline !important; }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
            align-items: stretch !important; }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important; }
  .flex-md-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important; }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important; }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important; }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important; }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
            justify-content: flex-start !important; }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
            justify-content: flex-end !important; }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
            justify-content: center !important; }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
            justify-content: space-between !important; }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-md-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
            align-items: flex-start !important; }
  .align-items-md-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
            align-items: flex-end !important; }
  .align-items-md-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
            align-items: center !important; }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
            align-items: baseline !important; }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
            align-items: stretch !important; }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important; }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important; }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important; }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
            justify-content: flex-start !important; }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
            justify-content: flex-end !important; }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
            justify-content: center !important; }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
            justify-content: space-between !important; }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
            align-items: flex-start !important; }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
            align-items: flex-end !important; }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
            align-items: center !important; }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
            align-items: baseline !important; }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
            align-items: stretch !important; }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important; }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
            flex-direction: column !important; }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
            flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
            flex-direction: column-reverse !important; }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
            flex: 1 1 auto !important; }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
            flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
            flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
            justify-content: flex-start !important; }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
            justify-content: flex-end !important; }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
            justify-content: center !important; }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
            justify-content: space-between !important; }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
            align-items: flex-start !important; }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
            align-items: flex-end !important; }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
            align-items: center !important; }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
            align-items: baseline !important; }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
            align-items: stretch !important; }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }

.m-0 {
  margin: 0 !important; }

.mt-0,
.my-0 {
  margin-top: 0 !important; }

.mr-0,
.mx-0 {
  margin-right: 0 !important; }

.mb-0,
.my-0 {
  margin-bottom: 0 !important; }

.ml-0,
.mx-0 {
  margin-left: 0 !important; }

.m-1 {
  margin: 0.25rem !important; }

.mt-1,
.my-1 {
  margin-top: 0.25rem !important; }

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important; }

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important; }

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.mt-2,
.my-2 {
  margin-top: 0.5rem !important; }

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important; }

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important; }

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.mt-3,
.my-3 {
  margin-top: 1rem !important; }

.mr-3,
.mx-3 {
  margin-right: 1rem !important; }

.mb-3,
.my-3 {
  margin-bottom: 1rem !important; }

.ml-3,
.mx-3 {
  margin-left: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

.mt-4,
.my-4 {
  margin-top: 1.5rem !important; }

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important; }

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important; }

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important; }

.m-5 {
  margin: 3rem !important; }

.mt-5,
.my-5 {
  margin-top: 3rem !important; }

.mr-5,
.mx-5 {
  margin-right: 3rem !important; }

.mb-5,
.my-5 {
  margin-bottom: 3rem !important; }

.ml-5,
.mx-5 {
  margin-left: 3rem !important; }

.p-0 {
  padding: 0 !important; }

.pt-0,
.py-0 {
  padding-top: 0 !important; }

.pr-0,
.px-0 {
  padding-right: 0 !important; }

.pb-0,
.py-0 {
  padding-bottom: 0 !important; }

.pl-0,
.px-0 {
  padding-left: 0 !important; }

.p-1 {
  padding: 0.25rem !important; }

.pt-1,
.py-1 {
  padding-top: 0.25rem !important; }

.pr-1,
.px-1 {
  padding-right: 0.25rem !important; }

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important; }

.pl-1,
.px-1 {
  padding-left: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.pt-2,
.py-2 {
  padding-top: 0.5rem !important; }

.pr-2,
.px-2 {
  padding-right: 0.5rem !important; }

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important; }

.pl-2,
.px-2 {
  padding-left: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.pt-3,
.py-3 {
  padding-top: 1rem !important; }

.pr-3,
.px-3 {
  padding-right: 1rem !important; }

.pb-3,
.py-3 {
  padding-bottom: 1rem !important; }

.pl-3,
.px-3 {
  padding-left: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.pt-4,
.py-4 {
  padding-top: 1.5rem !important; }

.pr-4,
.px-4 {
  padding-right: 1.5rem !important; }

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important; }

.pl-4,
.px-4 {
  padding-left: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

.pt-5,
.py-5 {
  padding-top: 3rem !important; }

.pr-5,
.px-5 {
  padding-right: 3rem !important; }

.pb-5,
.py-5 {
  padding-bottom: 3rem !important; }

.pl-5,
.px-5 {
  padding-left: 3rem !important; }

.m-n1 {
  margin: -0.25rem !important; }

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important; }

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important; }

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important; }

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important; }

.m-n2 {
  margin: -0.5rem !important; }

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important; }

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important; }

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important; }

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important; }

.m-n3 {
  margin: -1rem !important; }

.mt-n3,
.my-n3 {
  margin-top: -1rem !important; }

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important; }

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important; }

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important; }

.m-n4 {
  margin: -1.5rem !important; }

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important; }

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important; }

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important; }

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important; }

.m-n5 {
  margin: -3rem !important; }

.mt-n5,
.my-n5 {
  margin-top: -3rem !important; }

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important; }

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important; }

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important; }

.m-auto {
  margin: auto !important; }

.mt-auto,
.my-auto {
  margin-top: auto !important; }

.mr-auto,
.mx-auto {
  margin-right: auto !important; }

.mb-auto,
.my-auto {
  margin-bottom: auto !important; }

.ml-auto,
.mx-auto {
  margin-left: auto !important; }

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important; }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important; }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important; }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important; }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem !important; }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important; }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important; }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important; }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important; }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important; }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important; }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important; }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important; }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important; }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem !important; }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important; }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important; }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important; }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem !important; }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important; }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important; }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important; }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important; }
  .p-sm-0 {
    padding: 0 !important; }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important; }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important; }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important; }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem !important; }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important; }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important; }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important; }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important; }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important; }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important; }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important; }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem !important; }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important; }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important; }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem !important; }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important; }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important; }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important; }
  .m-sm-n1 {
    margin: -0.25rem !important; }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important; }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important; }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important; }
  .m-sm-n2 {
    margin: -0.5rem !important; }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important; }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important; }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important; }
  .m-sm-n3 {
    margin: -1rem !important; }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important; }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important; }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important; }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important; }
  .m-sm-n4 {
    margin: -1.5rem !important; }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important; }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important; }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important; }
  .m-sm-n5 {
    margin: -3rem !important; }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important; }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important; }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important; }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important; }
  .m-sm-auto {
    margin: auto !important; }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important; }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important; }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important; }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important; } }

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important; }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important; }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important; }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important; }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important; }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important; }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important; }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important; }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important; }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important; }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important; }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important; }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important; }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important; }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important; }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important; }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important; }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important; }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important; }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important; }
  .p-md-0 {
    padding: 0 !important; }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important; }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important; }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important; }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important; }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important; }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important; }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important; }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important; }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important; }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important; }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important; }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important; }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important; }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important; }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important; }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important; }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important; }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important; }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important; }
  .m-md-n1 {
    margin: -0.25rem !important; }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important; }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important; }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important; }
  .m-md-n2 {
    margin: -0.5rem !important; }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important; }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important; }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important; }
  .m-md-n3 {
    margin: -1rem !important; }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important; }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important; }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important; }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important; }
  .m-md-n4 {
    margin: -1.5rem !important; }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important; }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important; }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important; }
  .m-md-n5 {
    margin: -3rem !important; }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important; }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important; }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important; }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important; }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important; }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important; }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important; } }

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important; }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important; }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important; }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important; }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important; }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important; }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important; }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important; }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important; }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important; }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important; }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important; }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important; }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important; }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important; }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important; }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important; }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important; }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important; }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important; }
  .p-lg-0 {
    padding: 0 !important; }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important; }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important; }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important; }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important; }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important; }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important; }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important; }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important; }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important; }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important; }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important; }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important; }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important; }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important; }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important; }
  .m-lg-n1 {
    margin: -0.25rem !important; }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important; }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important; }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important; }
  .m-lg-n2 {
    margin: -0.5rem !important; }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important; }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important; }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important; }
  .m-lg-n3 {
    margin: -1rem !important; }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important; }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important; }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important; }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important; }
  .m-lg-n4 {
    margin: -1.5rem !important; }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important; }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important; }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important; }
  .m-lg-n5 {
    margin: -3rem !important; }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important; }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important; }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important; }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important; }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important; }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important; }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important; } }

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important; }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important; }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important; }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important; }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important; }
  .m-xl-1 {
    margin: 0.25rem !important; }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important; }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important; }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important; }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important; }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem !important; }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important; }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important; }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important; }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important; }
  .m-xl-4 {
    margin: 1.5rem !important; }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important; }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important; }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important; }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important; }
  .m-xl-5 {
    margin: 3rem !important; }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important; }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important; }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important; }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important; }
  .p-xl-0 {
    padding: 0 !important; }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important; }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important; }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important; }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important; }
  .p-xl-1 {
    padding: 0.25rem !important; }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important; }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important; }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important; }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important; }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem !important; }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important; }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important; }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important; }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important; }
  .p-xl-4 {
    padding: 1.5rem !important; }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important; }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important; }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important; }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important; }
  .p-xl-5 {
    padding: 3rem !important; }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important; }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important; }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important; }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important; }
  .m-xl-n1 {
    margin: -0.25rem !important; }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important; }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important; }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important; }
  .m-xl-n2 {
    margin: -0.5rem !important; }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important; }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important; }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important; }
  .m-xl-n3 {
    margin: -1rem !important; }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important; }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important; }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important; }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important; }
  .m-xl-n4 {
    margin: -1.5rem !important; }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important; }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important; }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important; }
  .m-xl-n5 {
    margin: -3rem !important; }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important; }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important; }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important; }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important; }
  .m-xl-auto {
    margin: auto !important; }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important; }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important; }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important; }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important; } }
.vd-image img, .vd-image.vd-image--svg svg {
  width: 100%;
  height: auto; }

html.no-scroll {
  overflow: hidden; }

.vd-image img {
  vertical-align: bottom; }

.vd-image.vd-image--svg svg {
  vertical-align: bottom; }

.hamburger-inner {
  margin-top: 0; }

.vd-nav.vd-nav--horizontal:before, .vd-nav.vd-nav--horizontal:after, .vd-nav.vd-nav--horizontal::before, .vd-nav.vd-nav--horizontal::after {
  content: "";
  display: block; }

.vd-nav.vd-nav--horizontal:after, .vd-nav.vd-nav--horizontal::after {
  clear: both; }

.vd-nav.vd-nav--horizontal .vd-nav__item {
  float: left;
  position: relative; }

.vd-table {
  display: table; }
  .vd-table .vd-table__cell {
    display: table-cell; }
  .vd-table.vd-table--fullsize {
    width: 100%;
    height: 100%; }
    .vd-table.vd-table--fullsize .vd-table__cell {
      width: 100%;
      height: 100%; }
  .vd-table.vd-table--align-middle .vd-table__cell {
    vertical-align: middle; }
  .vd-table.vd-table--align-center .vd-table__cell {
    text-align: center; }
  .vd-table.vd-table--align-left .vd-table__cell {
    text-align: left; }
  .vd-table.vd-table--align-right .vd-table__cell {
    text-align: right; }

.vd-flex {
  -ms-flex-line-pack: start;
      align-content: flex-start;
  /* Safari 7.0+ */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /* Safari 6.1+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* Safari 6.1+ */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* Safari 6.1+ */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /**
	 * t3kk-flex 
	 * t3kk-flex--cols 
	 * t3kk-flex--xs-1 
	 * t3kk-flex--sm-2 
	 * t3kk-flex--md-3 
	 * t3kk-flex--lg-4 
	 * t3kk-flex--xl-4
	 */ }
  .vd-flex:before, .vd-flex:after, .vd-flex::before, .vd-flex::after {
    content: "";
    display: block; }
  .vd-flex:after, .vd-flex::after {
    clear: both; }
  .vd-flex.vd-flex--justify-content--flex-start {
    /* Safari 6.1+ */
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .vd-flex.vd-flex--justify-content--flex-end {
    /* Safari 6.1+ */
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .vd-flex.vd-flex--justify-content--center {
    /* Safari 6.1+ */
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .vd-flex.vd-flex--justify-content--space-between {
    /* Safari 6.1+ */
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .vd-flex.vd-flex--justify-content--space-around {
    /* Safari 6.1+ */
    -ms-flex-pack: distribute;
        justify-content: space-around; }
  .vd-flex.vd-flex--justify-content--space-evenly {
    /* Safari 6.1+ */
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly; }
  .vd-flex.vd-flex--align-content--flex-start {
    -ms-flex-line-pack: start;
        align-content: flex-start; }
  .vd-flex.vd-flex--align-content--flex-end {
    -ms-flex-line-pack: end;
        align-content: flex-end; }
  .vd-flex.vd-flex--align-content--center {
    -ms-flex-line-pack: center;
        align-content: center; }
  .vd-flex.vd-flex--align-content--space-between {
    -ms-flex-line-pack: justify;
        align-content: space-between; }
  .vd-flex.vd-flex--align-content--space-around {
    -ms-flex-line-pack: distribute;
        align-content: space-around; }
  .vd-flex.vd-flex--align-content--stretch {
    -ms-flex-line-pack: stretch;
        align-content: stretch; }
  .vd-flex.vd-flex--align-items--flex-start {
    /* Safari 7.0+ */
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .vd-flex.vd-flex--align-items--flex-end {
    /* Safari 7.0+ */
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
  .vd-flex.vd-flex--align-items--center {
    /* Safari 7.0+ */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .vd-flex.vd-flex--align-items--baseline {
    /* Safari 7.0+ */
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline; }
  .vd-flex.vd-flex--align-items--stretch {
    /* Safari 7.0+ */
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
  .vd-flex.vd-flex--direction--row {
    /* Safari 6.1+ */
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
  .vd-flex.vd-flex--direction--row-reverse {
    /* Safari 6.1+ */
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; }
  .vd-flex.vd-flex--direction--column {
    /* Safari 6.1+ */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .vd-flex.vd-flex--direction--column-reverse {
    /* Safari 6.1+ */
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
  .vd-flex.vd-flex--wrap--nowrap {
    /* Safari 6.1+ */
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
  .vd-flex.vd-flex--wrap--wrap {
    /* Safari 6.1+ */
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .vd-flex.vd-flex--wrap--wrap-reverse {
    /* Safari 6.1+ */
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse; }
  .vd-flex.vd-flex--cols.vd-flex--xxs-1 > .vd-flex__item {
    width: 8.33333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xxs-2 > .vd-flex__item {
    width: 16.66667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xxs-3 > .vd-flex__item {
    width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xxs-4 > .vd-flex__item {
    width: 33.33333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xxs-6 > .vd-flex__item {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xxs-12 > .vd-flex__item {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xs-1 > .vd-flex__item {
    width: 8.33333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xs-2 > .vd-flex__item {
    width: 16.66667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xs-3 > .vd-flex__item {
    width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xs-4 > .vd-flex__item {
    width: 33.33333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xs-6 > .vd-flex__item {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xs-12 > .vd-flex__item {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--sm-1 > .vd-flex__item {
    width: 8.33333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--sm-2 > .vd-flex__item {
    width: 16.66667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--sm-3 > .vd-flex__item {
    width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--sm-4 > .vd-flex__item {
    width: 33.33333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--sm-6 > .vd-flex__item {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--sm-12 > .vd-flex__item {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--md-1 > .vd-flex__item {
    width: 8.33333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--md-2 > .vd-flex__item {
    width: 16.66667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--md-3 > .vd-flex__item {
    width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--md-4 > .vd-flex__item {
    width: 33.33333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--md-6 > .vd-flex__item {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--md-12 > .vd-flex__item {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--lg-1 > .vd-flex__item {
    width: 8.33333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--lg-2 > .vd-flex__item {
    width: 16.66667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--lg-3 > .vd-flex__item {
    width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--lg-4 > .vd-flex__item {
    width: 33.33333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--lg-6 > .vd-flex__item {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--lg-12 > .vd-flex__item {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xl-1 > .vd-flex__item {
    width: 8.33333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xl-2 > .vd-flex__item {
    width: 16.66667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xl-3 > .vd-flex__item {
    width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xl-4 > .vd-flex__item {
    width: 33.33333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xl-6 > .vd-flex__item {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xl-12 > .vd-flex__item {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xxl-1 > .vd-flex__item {
    width: 8.33333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xxl-2 > .vd-flex__item {
    width: 16.66667%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xxl-3 > .vd-flex__item {
    width: 25%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xxl-4 > .vd-flex__item {
    width: 33.33333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xxl-6 > .vd-flex__item {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 15px; }
  .vd-flex.vd-flex--cols.vd-flex--xxl-12 > .vd-flex__item {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 15px; }
  @media only screen and (min-width: 480px) {
    .vd-flex.vd-flex--cols.vd-flex--xxs-1 > .vd-flex__item {
      width: 8.33333%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 8.33333%;
              flex: 0 0 8.33333%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xxs-2 > .vd-flex__item {
      width: 16.66667%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 16.66667%;
              flex: 0 0 16.66667%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xxs-3 > .vd-flex__item {
      width: 25%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xxs-4 > .vd-flex__item {
      width: 33.33333%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33333%;
              flex: 0 0 33.33333%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xxs-6 > .vd-flex__item {
      width: 50%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xxs-12 > .vd-flex__item {
      width: 100%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      padding: 15px; } }
  @media only screen and (min-width: 576px) {
    .vd-flex.vd-flex--cols.vd-flex--xs-1 > .vd-flex__item {
      width: 8.33333%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 8.33333%;
              flex: 0 0 8.33333%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xs-2 > .vd-flex__item {
      width: 16.66667%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 16.66667%;
              flex: 0 0 16.66667%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xs-3 > .vd-flex__item {
      width: 25%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xs-4 > .vd-flex__item {
      width: 33.33333%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33333%;
              flex: 0 0 33.33333%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xs-6 > .vd-flex__item {
      width: 50%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xs-12 > .vd-flex__item {
      width: 100%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      padding: 15px; } }
  @media only screen and (min-width: 768px) {
    .vd-flex.vd-flex--cols.vd-flex--sm-1 > .vd-flex__item {
      width: 8.33333%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 8.33333%;
              flex: 0 0 8.33333%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--sm-2 > .vd-flex__item {
      width: 16.66667%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 16.66667%;
              flex: 0 0 16.66667%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--sm-3 > .vd-flex__item {
      width: 25%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--sm-4 > .vd-flex__item {
      width: 33.33333%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33333%;
              flex: 0 0 33.33333%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--sm-6 > .vd-flex__item {
      width: 50%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--sm-12 > .vd-flex__item {
      width: 100%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      padding: 15px; } }
  @media only screen and (min-width: 990px) {
    .vd-flex.vd-flex--cols.vd-flex--md-1 > .vd-flex__item {
      width: 8.33333%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 8.33333%;
              flex: 0 0 8.33333%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--md-2 > .vd-flex__item {
      width: 16.66667%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 16.66667%;
              flex: 0 0 16.66667%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--md-3 > .vd-flex__item {
      width: 25%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--md-4 > .vd-flex__item {
      width: 33.33333%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33333%;
              flex: 0 0 33.33333%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--md-6 > .vd-flex__item {
      width: 50%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--md-12 > .vd-flex__item {
      width: 100%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      padding: 15px; } }
  @media only screen and (min-width: 1024px) {
    .vd-flex.vd-flex--cols.vd-flex--lg-1 > .vd-flex__item {
      width: 8.33333%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 8.33333%;
              flex: 0 0 8.33333%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--lg-2 > .vd-flex__item {
      width: 16.66667%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 16.66667%;
              flex: 0 0 16.66667%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--lg-3 > .vd-flex__item {
      width: 25%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--lg-4 > .vd-flex__item {
      width: 33.33333%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33333%;
              flex: 0 0 33.33333%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--lg-6 > .vd-flex__item {
      width: 50%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--lg-12 > .vd-flex__item {
      width: 100%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      padding: 15px; } }
  @media only screen and (min-width: 1280px) {
    .vd-flex.vd-flex--cols.vd-flex--xl-1 > .vd-flex__item {
      width: 8.33333%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 8.33333%;
              flex: 0 0 8.33333%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xl-2 > .vd-flex__item {
      width: 16.66667%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 16.66667%;
              flex: 0 0 16.66667%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xl-3 > .vd-flex__item {
      width: 25%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xl-4 > .vd-flex__item {
      width: 33.33333%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33333%;
              flex: 0 0 33.33333%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xl-6 > .vd-flex__item {
      width: 50%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xl-12 > .vd-flex__item {
      width: 100%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      padding: 15px; } }
  @media only screen and (min-width: 1440px) {
    .vd-flex.vd-flex--cols.vd-flex--xxl-1 > .vd-flex__item {
      width: 8.33333%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 8.33333%;
              flex: 0 0 8.33333%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xxl-2 > .vd-flex__item {
      width: 16.66667%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 16.66667%;
              flex: 0 0 16.66667%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xxl-3 > .vd-flex__item {
      width: 25%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xxl-4 > .vd-flex__item {
      width: 33.33333%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 33.33333%;
              flex: 0 0 33.33333%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xxl-6 > .vd-flex__item {
      width: 50%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
              flex: 0 0 50%;
      padding: 15px; }
    .vd-flex.vd-flex--cols.vd-flex--xxl-12 > .vd-flex__item {
      width: 100%;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      padding: 15px; } }

.vd-debug {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000000;
  background: #2a2a2a;
  color: #efefef;
  padding: 25px; }

.flatpickr-input {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2065%2085%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%3E%3Cpath%20d%3D%22m3.02%2082v-63.23h58.98v63.23h-37.09%22%2F%3E%3Cpath%20d%3D%22m18.4%202.96v13.84%22%2F%3E%3Cpath%20d%3D%22m46.16%202.96v13.84%22%2F%3E%3Cpath%20d%3D%22m45.7%2044.91v.44%22%2F%3E%3Cpath%20d%3D%22m45.7%2056.38v.44%22%2F%3E%3Cpath%20d%3D%22m45.7%2067.85v.44%22%2F%3E%3Cpath%20d%3D%22m31.66%2044.91v.44%22%2F%3E%3Cpath%20d%3D%22m31.66%2056.38v.44%22%2F%3E%3Cpath%20d%3D%22m31.66%2067.85v.44%22%2F%3E%3Cpath%20d%3D%22m17.63%2044.91v.44%22%2F%3E%3Cpath%20d%3D%22m17.63%2056.38v.44%22%2F%3E%3Cpath%20d%3D%22m17.63%2067.85v.44%22%2F%3E%3Cpath%20d%3D%22m4.33%2031.15h57%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 1em;
  background-position: 98% center;
  background-repeat: no-repeat; }

.flatpickr-calendar .flatpickr-month {
  background: #00848d;
  color: #ffffff; }

.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  color: #000;
  font-size: 16px;
  font-size: 1rem; }

.flatpickr-calendar .flatpickr-weekdays {
  background: #00848d; }

.flatpickr-calendar .flatpickr-next-month svg,
.flatpickr-calendar .flatpickr-prev-month svg {
  fill: #ffffff;
  width: 20px;
  height: 20px; }

.flatpickr-calendar .flatpickr-next-month:hover,
.flatpickr-calendar .flatpickr-prev-month:hover {
  fill: #ea534e; }

.flatpickr-calendar .arrowUp:after {
  border-bottom-color: #fff !important; }

.flatpickr-calendar .arrowDown:after {
  border-top-color: #fff !important; }

.flatpickr-calendar .flatpickr-day.today:hover,
.flatpickr-calendar .flatpickr-day.today:focus {
  background: #ea534e; }

.flatpickr-calendar span.flatpickr-day.today:not(.selected),
.flatpickr-calendar span.flatpickr-day.prevMonthDay.today:not(.selected),
.flatpickr-calendar span.flatpickr-day.nextMonthDay.today:not(.selected) {
  border-bottom-color: #ea534e; }
  .flatpickr-calendar span.flatpickr-day.today:not(.selected):hover,
  .flatpickr-calendar span.flatpickr-day.prevMonthDay.today:not(.selected):hover,
  .flatpickr-calendar span.flatpickr-day.nextMonthDay.today:not(.selected):hover {
    border: 1px solid #ea534e; }

.flatpickr-calendar .flatpickr-day.selected,
.flatpickr-calendar .flatpickr-day.startRange,
.flatpickr-calendar .flatpickr-day.endRange,
.flatpickr-calendar .flatpickr-day.selected.inRange,
.flatpickr-calendar .flatpickr-day.startRange.inRange,
.flatpickr-calendar .flatpickr-day.endRange.inRange,
.flatpickr-calendar .flatpickr-day.selected:focus,
.flatpickr-calendar .flatpickr-day.startRange:focus,
.flatpickr-calendar .flatpickr-day.endRange:focus,
.flatpickr-calendar .flatpickr-day.selected:hover,
.flatpickr-calendar .flatpickr-day.startRange:hover,
.flatpickr-calendar .flatpickr-day.endRange:hover,
.flatpickr-calendar .flatpickr-day.selected.prevMonthDay,
.flatpickr-calendar .flatpickr-day.startRange.prevMonthDay,
.flatpickr-calendar .flatpickr-day.endRange.prevMonthDay,
.flatpickr-calendar .flatpickr-day.selected.nextMonthDay,
.flatpickr-calendar .flatpickr-day.startRange.nextMonthDay,
.flatpickr-calendar .flatpickr-day.endRange.nextMonthDay {
  background: #ea534e;
  border-color: #ea534e; }

.t3kk-background-image {
  background-position: center center;
  background-size: cover;
  height: setUnit(100, %);
  width: setUnit(100, %);
  background-attachment: fixed;
  left: 0;
  position: absolute;
  top: 0;
  z-index: -100; }

/**
 * @values: row|row-reverse|column|column-reverse|initial|inherit
 */
/**
 * @values: nowrap|wrap|wrap-reverse|initial|inherit
 */
/**
 * @values: stretch|center|flex-start|flex-end|space-between|space-around|initial|inherit
 * @ref: http://www.w3schools.com/cssref/css3_pr_align-content.asp
 **/
/**
 * @values: stretch|center|flex-start|flex-end|baseline|initial|inherit
 * @ref: http://www.w3schools.com/cssref/css3_pr_align-items.asp
 **/
/**
 * @ref: http://www.w3schools.com/cssref/css3_pr_flex-flow.asp
 **/
.t3kk-flex {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */ }

@media only screen and (min-width: 768px) {
  .t3kk-flex {
    -ms-flex-line-pack: center;
        align-content: center;
    /* Safari 7.0+ */
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    /* Safari 6.1+ */
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /* Safari 6.1+ */
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    /* Safari 6.1+ */
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
    .t3kk-flex.t3kk-flex--vcenter {
      /* Safari 7.0+ */
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 100%; }
    .t3kk-flex.t3kk-flex--align-content-center {
      -ms-flex-line-pack: center;
          align-content: center; }
    .t3kk-flex.t3kk-flex--align-content-flex-end {
      -ms-flex-line-pack: end;
          align-content: flex-end; }
    .t3kk-flex.t3kk-flex--align-content-flex-start {
      -ms-flex-line-pack: start;
          align-content: flex-start; }
    .t3kk-flex.t3kk-flex--align-content-space-around {
      -ms-flex-line-pack: distribute;
          align-content: space-around; }
    .t3kk-flex.t3kk-flex--align-content-space-between {
      -ms-flex-line-pack: justify;
          align-content: space-between; }
    .t3kk-flex.t3kk-flex--align-content-stretch {
      -ms-flex-line-pack: stretch;
          align-content: stretch; }
    .t3kk-flex.t3kk-flex--justify-content_center {
      /* Safari 6.1+ */
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .t3kk-flex.t3kk-flex--justify-content_flex-end {
      /* Safari 6.1+ */
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
    .t3kk-flex.t3kk-flex--justify-content_flex-start {
      /* Safari 6.1+ */
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
    .t3kk-flex.t3kk-flex--justify-content_space-around {
      /* Safari 6.1+ */
      -ms-flex-pack: distribute;
          justify-content: space-around; }
    .t3kk-flex.t3kk-flex--justify-content_space-between {
      /* Safari 6.1+ */
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .t3kk-flex.t3kk-flex--justify-content_stretch {
      /* Safari 6.1+ */
      -webkit-box-pack: stretch;
          -ms-flex-pack: stretch;
              justify-content: stretch; }
    .t3kk-flex.t3kk-flex--align-items-baseline {
      /* Safari 7.0+ */
      -webkit-box-align: baseline;
          -ms-flex-align: baseline;
              align-items: baseline; }
    .t3kk-flex.t3kk-flex--align-items-center {
      /* Safari 7.0+ */
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .t3kk-flex.t3kk-flex--align-items-flex-end {
      /* Safari 7.0+ */
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end; }
    .t3kk-flex.t3kk-flex--align-items-flex-start {
      /* Safari 7.0+ */
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
    .t3kk-flex.t3kk-flex--align-items-stretch {
      /* Safari 7.0+ */
      -webkit-box-align: stretch;
          -ms-flex-align: stretch;
              align-items: stretch; }
    .t3kk-flex.t3kk-flex--direction-row {
      /* Safari 6.1+ */
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
    .t3kk-flex.t3kk-flex--direction-row-reverse {
      /* Safari 6.1+ */
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
    .t3kk-flex.t3kk-flex--direction-column {
      /* Safari 6.1+ */
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
    .t3kk-flex.t3kk-flex--direction-column-reverse {
      /* Safari 6.1+ */
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; }
    .t3kk-flex.t3kk-flex--wrap-nowrap {
      /* Safari 6.1+ */
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; }
    .t3kk-flex.t3kk-flex--wrap-wrap {
      /* Safari 6.1+ */
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
    .t3kk-flex.t3kk-flex--wrap-wrap-reverse {
      /* Safari 6.1+ */
      -ms-flex-wrap: wrap-reverse;
          flex-wrap: wrap-reverse; }
    .t3kk-flex .t3kk-flex__item {
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
    .t3kk-flex[data-flex-cols="2"] > .t3kk-flex__item, .t3kk-flex.t3kk-flex--col-6 > .t3kk-flex__item {
      width: setUnit(100/2, "%"); }
    .t3kk-flex[data-flex-cols="3"] > .t3kk-flex__item, .t3kk-flex.t3kk-flex--col-4 > .t3kk-flex__item {
      width: setUnit(100/3, "%"); }
    .t3kk-flex[data-flex-cols="5"] > .t3kk-flex__item {
      width: setUnit(100/5, "%"); }
    .t3kk-flex[data-direction="text-left-image-right"] > .t3kk-flex__item:first-child {
      -webkit-box-ordinal-group: 1;
      /* OLD - iOS 6-, Safari 3.1-6 */
      /* OLD - Firefox 19- */
      -ms-flex-order: 1;
      /* TWEENER - IE 10 */
      /* NEW - Chrome */
      order: 1; }
      .t3kk-flex[data-direction="text-left-image-right"] > .t3kk-flex__item:first-child .ce-bodytext,
      .t3kk-flex[data-direction="text-left-image-right"] > .t3kk-flex__item:first-child .ce-title {
        text-align: right; }
    .t3kk-flex[data-direction="text-left-image-right"] > .t3kk-flex__item:last-child {
      -webkit-box-ordinal-group: 2;
      /* OLD - iOS 6-, Safari 3.1-6 */
      /* OLD - Firefox 19- */
      -ms-flex-order: 2;
      /* TWEENER - IE 10 */
      /* NEW - Chrome */
      order: 2; }
    .t3kk-flex[data-direction="text-right-image-left"] > .t3kk-flex__item:first-child {
      -webkit-box-ordinal-group: 2;
      /* OLD - iOS 6-, Safari 3.1-6 */
      /* OLD - Firefox 19- */
      -ms-flex-order: 2;
      /* TWEENER - IE 10 */
      /* NEW - Chrome */
      order: 2; }
      .t3kk-flex[data-direction="text-right-image-left"] > .t3kk-flex__item:first-child .ce-bodytext,
      .t3kk-flex[data-direction="text-right-image-left"] > .t3kk-flex__item:first-child .ce-title {
        text-align: left; }
    .t3kk-flex[data-direction="text-right-image-left"] > .t3kk-flex__item:last-child {
      -webkit-box-ordinal-group: 1;
      /* OLD - iOS 6-, Safari 3.1-6 */
      /* OLD - Firefox 19- */
      -ms-flex-order: 1;
      /* TWEENER - IE 10 */
      /* NEW - Chrome */
      order: 1; } }

.t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--xs-9 > .t3kk-flex__item {
  width: 11.11111%; }

.t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--xs-8 > .t3kk-flex__item {
  width: 12.5%; }

.t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--xs-7 > .t3kk-flex__item {
  width: 14.28571%; }

.t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--xs-6 > .t3kk-flex__item {
  width: 16.66667%; }

.t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--xs-5 > .t3kk-flex__item {
  width: 20%; }

.t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--xs-4 > .t3kk-flex__item {
  width: 25%; }

.t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--xs-3 > .t3kk-flex__item {
  width: 33.33333%; }

.t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--xs-2 > .t3kk-flex__item {
  width: 50%; }

.t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--xs-1 > .t3kk-flex__item {
  width: 100%; }

@media only screen and (min-width: 768px) {
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--md-9 > .t3kk-flex__item {
    width: 11.11111%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--md-8 > .t3kk-flex__item {
    width: 12.5%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--md-7 > .t3kk-flex__item {
    width: 14.28571%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--md-6 > .t3kk-flex__item {
    width: 16.66667%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--md-5 > .t3kk-flex__item {
    width: 20%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--md-4 > .t3kk-flex__item {
    width: 25%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--md-3 > .t3kk-flex__item {
    width: 33.33333%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--md-2 > .t3kk-flex__item {
    width: 50%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--md-1 > .t3kk-flex__item {
    width: 100%; } }

@media only screen and (min-width: 1280px) {
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--lg-9 > .t3kk-flex__item {
    width: 11.11111%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--lg-8 > .t3kk-flex__item {
    width: 12.5%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--lg-7 > .t3kk-flex__item {
    width: 14.28571%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--lg-6 > .t3kk-flex__item {
    width: 16.66667%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--lg-5 > .t3kk-flex__item {
    width: 20%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--lg-4 > .t3kk-flex__item {
    width: 25%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--lg-3 > .t3kk-flex__item {
    width: 33.33333%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--lg-2 > .t3kk-flex__item {
    width: 50%; }
  .t3kk-flex-cols.t3kk-flex-cols.t3kk-cols--lg-1 > .t3kk-flex__item {
    width: 100%; } }

.t3kk-flex__item.t3kk-flex__item--right,
.t3kk-flex__item.t3kk-flex__item--right * {
  text-align: right; }

.vd-grid {
  overflow: hidden;
  width: 100%; }

/* https://codepen.io/Kseso/pen/bfdhg */
[class*="vd-wrapper-ratio-"] {
  position: relative;
  width: 100%; }
  [class*="vd-wrapper-ratio-"]:before {
    content: "";
    display: block; }
  [class*="vd-wrapper-ratio-"] .vd-wrapper-ratio__inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-position: center center;
    overflow: hidden; }

.vd-wrapper-ratio.vd-wrapper-ratio--1-1:before {
  padding-top: 100%; }

.vd-wrapper-ratio.vd-wrapper-ratio--1-2:before {
  padding-top: 200%; }

.vd-wrapper-ratio.vd-wrapper-ratio--2-1:before {
  padding-top: 50%; }

.vd-wrapper-ratio.vd-wrapper-ratio--3-2:before {
  padding-top: 66.66667%; }

.vd-wrapper-ratio.vd-wrapper-ratio--4-3:before {
  padding-top: 75%; }

.vd-wrapper-ratio.vd-wrapper-ratio--8-5:before {
  padding-top: 62.5%; }

.vd-wrapper-ratio.vd-wrapper-ratio--10-6:before {
  padding-top: 60%; }

.vd-wrapper-ratio.vd-wrapper-ratio--16-6:before {
  padding-top: 37.5%; }

.vd-wrapper-ratio.vd-wrapper-ratio--16-9:before {
  padding-top: 56.25%; }

.vd-wrapper-ratio.vd-wrapper-ratio--social:before {
  padding-top: 52.35602%; }

.t3kk-wrap-table {
  width: 100%;
  height: 100%;
  display: table; }
  .t3kk-wrap-table .t3kk-wrap-table__cell {
    display: table-cell;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle; }

@media only screen and (min-width: 1200px) {
  .ce.ce--vd_news_teaser .single-news-teaser.layout--logo__front_white__background_red .single-news-teaser__wrapper, .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_white__background_red .single-event-teaser__wrapper {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20clip-rule%3D%22evenodd%22%20fill-rule%3D%22evenodd%22%20stroke-linecap%3D%22round%22%20preserveAspectRatio%3D%22xMaxYMid%22%20stroke-miterlimit%3D%222%22%20viewBox%3D%220%200%20353%20297%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m22.368%2075.844c0-4.311-3.493-7.804-7.804-7.804-4.307%200-7.8%203.493-7.8%207.804%200%204.307%203.493%207.804%207.8%207.804%204.311%200%207.804-3.497%207.804-7.804zm66.325%200c0-4.311-3.493-7.804-7.804-7.804-4.307%200-7.801%203.493-7.801%207.804%200%204.307%203.494%207.804%207.801%207.804%204.311%200%207.804-3.497%207.804-7.804zm-.797%20143.601c-3.261%200-6.273-2.128-7.239-5.417l-32.932-111.606-32.929%20111.606c-1.176%204.003-5.38%206.308-9.379%205.107-4-1.18-6.288-5.383-5.106-9.383l40.173-136.162c.943-3.21%203.892-5.414%207.241-5.414%203.352%200%206.301%202.204%207.244%205.414l40.174%20136.162c1.179%204-1.104%208.203-5.106%209.383-.714.21-1.434.31-2.141.31zm107.57%2037.416c17.189%200%2031.704-4.389%2041.969-12.698%209.482-7.67%2014.919-18.572%2014.919-29.909%200-12.616-6.705-25.327-19.752-33.098%2013.047-7.77%2019.752-20.481%2019.752-33.098%200-11.336-5.437-22.24-14.919-29.915-10.265-8.306-24.78-12.696-41.969-12.696-4.173%200-7.553%203.381-7.553%207.551%200%204.173%203.38%207.554%207.553%207.554%2013.692%200%2024.918%203.232%2032.466%209.339%206.006%204.859%209.315%2011.311%209.315%2018.167%200%2012.302-10.941%2025.544-34.966%2025.544-4.173%200-7.554%203.38-7.554%207.554%200%204.173%203.381%207.553%207.554%207.553%2024.025%200%2034.966%2013.243%2034.966%2025.545%200%206.852-3.309%2013.305-9.315%2018.164-7.548%206.106-18.774%209.339-32.466%209.339-4.173%200-7.553%203.378-7.553%207.551%200%204.172%203.38%207.553%207.553%207.553zm-14.434-105.287c-2.045.003-4.08-.818-5.568-2.444l-62.627-68.15c-2.655-2.891-2.655-7.336%200-10.223l62.627-68.148c2.819-3.076%207.603-3.283%2010.676-.456%203.076%202.825%203.277%207.606.452%2010.679l-57.932%2063.037%2057.932%2063.038c2.825%203.073%202.624%207.855-.452%2010.679-1.45%201.334-3.284%201.988-5.108%201.988z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22nonzero%22%2F%3E%3Cpath%20d%3D%22m133.002%20135.511h-65.807c-16.467%200-29.82-13.354-29.82-29.825%200-16.465%2013.353-29.818%2029.82-29.818h65.807m-.001%2059.643h32.541c8.143%200%2014.746%206.604%2014.746%2014.747s-6.603%2014.745-14.746%2014.745h-32.541m-42.201%2043.396v-52.131c0-11.462%209.295-20.757%2020.758-20.757m115.025-89.468c0-16.466%2013.351-29.82%2029.82-29.82h65.806c16.47%200%2029.823%2013.354%2029.823%2029.82%200%2016.471-13.353%2029.824-29.823%2029.825h-65.806m-29.822-29.825c0%2016.471-13.352%2029.824-29.822%2029.825h-65.806c-16.468%200-29.821-13.354-29.821-29.825v-36.197m155.296%2085.829v-19.807m28.475-39.838v-19.807m-5.705%2062.176h72.834v.149m-185.385%2012.541v-61.789c0-15.463%2012.539-28.001%2028.003-28.001%2015.462%200%2028.001%2012.538%2028.001%2028.001v61.789m-56.004%200v30.554c0%207.645-6.201%2013.845-13.846%2013.845-7.647%200-13.846-6.2-13.846-13.845v-63.227m-55.183-6.952h63.385c10.763%200%2019.49%208.727%2019.49%2019.49m84.007%20108.003c15.463%200%2028.001%2012.538%2028.001%2028.001v61.79c0%2015.465-12.538%2028.002-28.001%2028.002-15.464%200-28.002-12.537-28.003-28.002v-61.79m28.003-28.002c-15.464%200-28.002-12.536-28.003-28.001v-61.79m-.026%2046.782.026%202.568h66.577m-85.176%2068.467h18.599m37.405%2026.737h18.599m-58.382-5.358v68.389h-.14%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.5%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: 124% center; }
  .ce.ce--vd_news_teaser .single-news-teaser.layout--logo__front_red__background_white .single-news-teaser__wrapper, .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_red__background_white .single-event-teaser__wrapper {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20clip-rule%3D%22evenodd%22%20fill-rule%3D%22evenodd%22%20stroke-linecap%3D%22round%22%20preserveAspectRatio%3D%22xMaxYMid%22%20stroke-miterlimit%3D%222%22%20viewBox%3D%220%200%20353%20297%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m22.368%2075.844c0-4.311-3.493-7.804-7.804-7.804-4.307%200-7.8%203.493-7.8%207.804%200%204.307%203.493%207.804%207.8%207.804%204.311%200%207.804-3.497%207.804-7.804zm66.325%200c0-4.311-3.493-7.804-7.804-7.804-4.307%200-7.801%203.493-7.801%207.804%200%204.307%203.494%207.804%207.801%207.804%204.311%200%207.804-3.497%207.804-7.804zm-.797%20143.601c-3.261%200-6.273-2.128-7.239-5.417l-32.932-111.606-32.929%20111.606c-1.176%204.003-5.38%206.308-9.379%205.107-4-1.18-6.288-5.383-5.106-9.383l40.173-136.162c.943-3.21%203.892-5.414%207.241-5.414%203.352%200%206.301%202.204%207.244%205.414l40.174%20136.162c1.179%204-1.104%208.203-5.106%209.383-.714.21-1.434.31-2.141.31zm107.57%2037.416c17.189%200%2031.704-4.389%2041.969-12.698%209.482-7.67%2014.919-18.572%2014.919-29.909%200-12.616-6.705-25.327-19.752-33.098%2013.047-7.77%2019.752-20.481%2019.752-33.098%200-11.336-5.437-22.24-14.919-29.915-10.265-8.306-24.78-12.696-41.969-12.696-4.173%200-7.553%203.381-7.553%207.551%200%204.173%203.38%207.554%207.553%207.554%2013.692%200%2024.918%203.232%2032.466%209.339%206.006%204.859%209.315%2011.311%209.315%2018.167%200%2012.302-10.941%2025.544-34.966%2025.544-4.173%200-7.554%203.38-7.554%207.554%200%204.173%203.381%207.553%207.554%207.553%2024.025%200%2034.966%2013.243%2034.966%2025.545%200%206.852-3.309%2013.305-9.315%2018.164-7.548%206.106-18.774%209.339-32.466%209.339-4.173%200-7.553%203.378-7.553%207.551%200%204.172%203.38%207.553%207.553%207.553zm-14.434-105.287c-2.045.003-4.08-.818-5.568-2.444l-62.627-68.15c-2.655-2.891-2.655-7.336%200-10.223l62.627-68.148c2.819-3.076%207.603-3.283%2010.676-.456%203.076%202.825%203.277%207.606.452%2010.679l-57.932%2063.037%2057.932%2063.038c2.825%203.073%202.624%207.855-.452%2010.679-1.45%201.334-3.284%201.988-5.108%201.988z%22%20fill%3D%22%23f15d57%22%20fill-rule%3D%22nonzero%22%2F%3E%3Cpath%20d%3D%22m133.002%20135.511h-65.807c-16.467%200-29.82-13.354-29.82-29.825%200-16.465%2013.353-29.818%2029.82-29.818h65.807m-.001%2059.643h32.541c8.143%200%2014.746%206.604%2014.746%2014.747s-6.603%2014.745-14.746%2014.745h-32.541m-42.201%2043.396v-52.131c0-11.462%209.295-20.757%2020.758-20.757m115.025-89.468c0-16.466%2013.351-29.82%2029.82-29.82h65.806c16.47%200%2029.823%2013.354%2029.823%2029.82%200%2016.471-13.353%2029.824-29.823%2029.825h-65.806m-29.822-29.825c0%2016.471-13.352%2029.824-29.822%2029.825h-65.806c-16.468%200-29.821-13.354-29.821-29.825v-36.197m155.296%2085.829v-19.807m28.475-39.838v-19.807m-5.705%2062.176h72.834v.149m-185.385%2012.541v-61.789c0-15.463%2012.539-28.001%2028.003-28.001%2015.462%200%2028.001%2012.538%2028.001%2028.001v61.789m-56.004%200v30.554c0%207.645-6.201%2013.845-13.846%2013.845-7.647%200-13.846-6.2-13.846-13.845v-63.227m-55.183-6.952h63.385c10.763%200%2019.49%208.727%2019.49%2019.49m84.007%20108.003c15.463%200%2028.001%2012.538%2028.001%2028.001v61.79c0%2015.465-12.538%2028.002-28.001%2028.002-15.464%200-28.002-12.537-28.003-28.002v-61.79m28.003-28.002c-15.464%200-28.002-12.536-28.003-28.001v-61.79m-.026%2046.782.026%202.568h66.577m-85.176%2068.467h18.599m37.405%2026.737h18.599m-58.382-5.358v68.389h-.14%22%20fill%3D%22none%22%20stroke%3D%22%23f15d57%22%20stroke-width%3D%22.5%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: 124% center; } }

.ce.ce--vd_text_teaser .vd-tile .header h1,
.ce.ce--vd_text_teaser .vd-tile .header h2,
.ce.ce--vd_text_teaser .vd-tile .header h3, .ce.ce--vd_text_teaser .vd-tile .header .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce.ce--vd_text_teaser .vd-tile .header legend,
.ce.ce--vd_text_teaser .vd-tile .header h4, .ce.ce--vd_text_teaser .vd-tile .header__subtitle, .ce.ce--vd_text_teaser .vd-tile .bodytext > *, .ce--vd_pages_teaser .vd-teaser .header {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto; }

.vd-filter-button, form button {
  font-family: Hind, "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  margin-left: 10px;
  margin-right: 10px;
  background-color: #015D7D;
  color: #fff;
  line-height: 33px;
  height: 50px;
  padding: 0.625rem 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.9px;
  font-weight: 700; }

.ce.ce--vd_department_card .contact-persons {
  list-style: none;
  padding-left: 0;
  margin-left: 0; }

:focus {
  outline: none !important; }

body.using-keyboard :focus {
  outline: 2px auto #f7b72d !important; }

.body__container {
  position: relative;
  /*
	padding-top: $header_height_mobile;

	@media only screen and (min-width: $header_breakpoint) {
		padding-top: $header_height_desktop;
	}
*/ }

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  color: #000;
  background-color: var(--c-bg-base); }

html * {
  line-height: 1; }

body {
  visibility: hidden;
  -webkit-font-feature-settings: "kern";
          font-feature-settings: "kern";
  -webkit-font-kerning: normal;
          font-kerning: normal;
  -webkit-font-variant-ligatures: common-ligatures;
          font-variant-ligatures: common-ligatures;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; }
  body.open_menu {
    overflow: hidden; }

svg {
  overflow: visible; }

h1, h2, h3, .ce.ce--vd_job_form fieldset legend, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
  color: #015D7D;
  -ms-hyphens: auto;
      hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto; }

h1,
.h1 {
  font-size: 36px;
  font-size: 2.25rem; }

h2,
.h2 {
  font-size: 30px;
  font-size: 1.875rem; }

h3, .ce.ce--vd_job_form fieldset legend,
.h3 {
  font-size: 25px;
  font-size: 1.5625rem; }

h4,
.h4 {
  font-size: 22px;
  font-size: 1.375rem; }

h5,
.h5 {
  font-size: 20px;
  font-size: 1.25rem; }

p, ul, ol {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3; }
  p.p-lg, ul.p-lg, ol.p-lg {
    font-size: 18px;
    font-size: 1.125rem; }

.subtitle {
  font-size: 22px;
  font-size: 1.375rem; }

@media only screen and (min-width: 768px) {
  h1,
  .h1 {
    font-size: 50px;
    font-size: 3.125rem; }
  h2,
  .h2 {
    font-size: 40px;
    font-size: 2.5rem; }
  h3, .ce.ce--vd_job_form fieldset legend,
  .h3 {
    font-size: 32px;
    font-size: 2rem; }
  h4 .h4 {
    font-size: 22px;
    font-size: 1.375rem; }
  h5 .h5 {
    font-size: 20px;
    font-size: 1.25rem; }
  p, ul, ol {
    font-size: 18px;
    font-size: 1.125rem; } }

a {
  text-decoration: none;
  color: #015D7D;
  font-weight: 700;
  line-height: 1.3; }

.vd-icon.vd-icon--svg svg {
  width: 100%;
  height: auto; }

.vd-image {
  position: relative; }
  .vd-image .vd-image__caption {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 5px 0 5px 34px;
    z-index: 1000;
    background-color: white;
    line-height: 24px;
    min-height: 34px;
    opacity: 0.8;
    cursor: pointer; }
    .vd-image .vd-image__caption p {
      line-height: 24px;
      display: none;
      color: rgba(0, 0, 0, 0.8);
      font-size: 75%; }
    .vd-image .vd-image__caption:before {
      content: "";
      position: absolute;
      z-index: 1001;
      left: 5px;
      top: 5px;
      width: 24px;
      height: 24px;
      background-size: 100% 100%;
      background-position: center center;
      background-repeat: no-repeat; }

/*
@mixin search-icon($color) {
    background-image: svg-inline('<svg id="loupe" xmlns="http://www.w3.org/2000/svg" width="17.23" height="17.23" viewBox="0 0 17.23 17.23"><g id="Gruppe_3135" data-name="Gruppe 3135"><path id="Pfad_1858" data-name="Pfad 1858" d="M9.38,0A7.846,7.846,0,0,0,3.287,12.8L0,16.082,1.149,17.23l3.287-3.287A7.849,7.849,0,1,0,9.38,0Zm0,14.077a6.226,6.226,0,1,1,6.226-6.226A6.234,6.234,0,0,1,9.38,14.077Z" fill="#015d7d"/></g></svg>');
}
@include search-icon($blue-dark);
*/
button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  /* Remove excess padding and border in Firefox 4+ */ }
  button::-moz-focus-inner {
    border: 0;
    padding: 0; }

.nav-toggle {
  border: none;
  background: none;
  padding: 0;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .nav-toggle__icon {
    position: relative;
    width: 36px;
    height: 22px; }
    .nav-toggle__icon > * {
      display: block;
      position: absolute;
      width: 100%;
      height: 4px;
      background-color: #015D7D;
      border-radius: 4px;
      left: 0;
      -webkit-transition: all 400ms ease-in-out;
      transition: all 400ms ease-in-out; }
    .nav-toggle__icon > :nth-child(1) {
      top: 0; }
    .nav-toggle__icon > :nth-child(2) {
      top: calc(22px / 2); }
    .nav-toggle__icon > :nth-child(3) {
      top: 22px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon > :nth-child(1) {
    top: calc(22px / 2);
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon > :nth-child(2) {
    left: -10px;
    opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon > :nth-child(3) {
    top: calc(22px / 2);
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg); }

.vd-button, #cookie_approval .button, .tx-sf-event-mgt .registration input[type="submit"] {
  display: inline-block;
  border: 2px solid #015D7D;
  font-size: 16px;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.625rem 1.875rem;
  cursor: pointer;
  -webkit-transition: all 230ms ease-in-out;
  transition: all 230ms ease-in-out;
  line-height: 29px;
  letter-spacing: 0.9px;
  border-radius: 50px;
  height: 50px;
  color: #fff;
  background-color: #015D7D; }
  .vd-button:hover, #cookie_approval .button:hover, .tx-sf-event-mgt .registration input:hover[type="submit"], .vd-button:focus, #cookie_approval .button:focus, .tx-sf-event-mgt .registration input:focus[type="submit"] {
    -webkit-transition: all 230ms ease-in-out;
    transition: all 230ms ease-in-out; }
  .vd-button--to-overview, .vd-button--readmore {
    padding-right: 80px;
    background-repeat: no-repeat;
    background-position: calc(100% - 30px) center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23fff'/%3E%3C/svg%3E"); }
  .vd-button--inverted {
    color: #015D7D;
    background-color: #fff;
    border-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23015D7D'/%3E%3C/svg%3E"); }
  .vd-button--text, #cookie_approval .button, .tx-sf-event-mgt .registration input[type="submit"] {
    background-color: #00848d;
    color: #ffffff;
    padding: 0.9375rem 3.125rem; }
    .vd-button--text:hover, #cookie_approval .button:hover, .tx-sf-event-mgt .registration input:hover[type="submit"], .vd-button--text:focus, #cookie_approval .button:focus, .tx-sf-event-mgt .registration input:focus[type="submit"] {
      -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
              box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07); }
  .vd-button--menu, .vd-button--submenu {
    width: 100%;
    color: #000000;
    background-color: #ffffff;
    padding: 0.9375rem 1.25rem;
    text-align: left;
    border-bottom: solid 2px transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .vd-button--menu:after, .vd-button--submenu:after {
      content: "";
      display: inline-block;
      width: 24px;
      height: 22px;
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224px%22%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M0%200h24v24H0V0z%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M10%206L8.59%207.41%2013.17%2012l-4.58%204.59L10%2018l6-6-6-6z%22%2F%3E%3C%2Fsvg%3E"); }
    .vd-button--menu:active, .vd-button--menu:focus, .vd-button--menu:hover, .vd-button--submenu:active, .vd-button--submenu:focus, .vd-button--submenu:hover {
      color: #00848d; }
  .vd-button--menu-back {
    width: 100%;
    color: #00848d;
    background-color: #ffffff;
    text-align: left;
    padding: 1.5625rem 1.25rem 0.9375rem; }
    .vd-button--menu-back:before {
      content: "";
      display: inline-block;
      content: '';
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2022%2012%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3Aserif%3D%22http%3A%2F%2Fwww.serif.com%2F%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%3B%22%3E%3Cpath%20d%3D%22M6%2C12l1%2C-1l-4.004%2C-4.403l19.004%2C-0l0%2C-1.244l-19.004%2C-0l4.004%2C-4.353l-1%2C-1l-6%2C6l6%2C6Z%22%20fill%3D%22%232a2a2a%22%20style%3D%22fill-rule%3Anonzero%3B%22%2F%3E%3C%2Fsvg%3E");
      background-size: 80% 80%;
      background-repeat: no-repeat;
      background-position: center center;
      width: 24px;
      height: 13px;
      margin-right: 7px; }
  .vd-button--ghost, #cookie_approval .button {
    color: #00848d;
    border: 2px solid #00848d;
    padding: 0.625rem 1.25rem;
    background-color: transparent; }
    .vd-button--ghost:hover, #cookie_approval .button:hover, .vd-button--ghost:focus, #cookie_approval .button:focus {
      background-color: #00848d !important;
      color: #fff !important; }
  .vd-button--ghost-white, .ce.ce--vd_cta.ce--bg_green__front_bright .vd-button--ghost, .ce.ce--vd_cta.ce--bg_green__front_bright #cookie_approval .button, #cookie_approval .ce.ce--vd_cta.ce--bg_green__front_bright .button {
    color: #fff;
    border: 2px solid #fff;
    padding: 0.625rem 1.25rem;
    background-color: transparent; }
    .vd-button--ghost-white:hover, .ce.ce--vd_cta.ce--bg_green__front_bright .vd-button--ghost:hover, .ce.ce--vd_cta.ce--bg_green__front_bright #cookie_approval .button:hover, #cookie_approval .ce.ce--vd_cta.ce--bg_green__front_bright .button:hover, .vd-button--ghost-white:focus, .ce.ce--vd_cta.ce--bg_green__front_bright .vd-button--ghost:focus, .ce.ce--vd_cta.ce--bg_green__front_bright #cookie_approval .button:focus, #cookie_approval .ce.ce--vd_cta.ce--bg_green__front_bright .button:focus {
      background-color: #fff;
      color: #00848d; }
  .vd-button--newsletter {
    background-color: #4da9af;
    color: #ffffff;
    height: 45px;
    white-space: nowrap; }
  .vd-button--scroll-down {
    background: none;
    padding: 0;
    width: 26px;
    height: 26px; }
    .vd-button--scroll-down svg {
      width: 26px;
      height: 26px; }
  .vd-button--print {
    background: none;
    border: none;
    padding: 0;
    width: 23px;
    height: 23px; }

.search-mask .actions .vd-button--text:not(.vd-button--ghost), .search-mask .actions #cookie_approval .button:not(.vd-button--ghost), #cookie_approval .search-mask .actions .button:not(.vd-button--ghost), .search-mask .actions .tx-sf-event-mgt .registration input:not(.vd-button--ghost)[type="submit"], .tx-sf-event-mgt .registration .search-mask .actions input:not(.vd-button--ghost)[type="submit"] {
  background-color: #00848d;
  color: #ffffff;
  border: 2px solid transparent; }

.search-mask .actions .vd-button--text.vd-button--ghost, .search-mask .actions #cookie_approval .button, #cookie_approval .search-mask .actions .button, .search-mask .actions .tx-sf-event-mgt .registration input.vd-button--ghost[type="submit"], .tx-sf-event-mgt .registration .search-mask .actions input.vd-button--ghost[type="submit"] {
  background-color: transparent;
  border-color: #00848d;
  color: #00848d; }

.search-mask .actions .vd-button--ghost, .search-mask .actions #cookie_approval .button, #cookie_approval .search-mask .actions .button {
  padding: 0.9375rem 3.125rem; }

@media only screen and (min-width: 768px) {
  .search-mask .actions .vd-button, .search-mask .actions #cookie_approval .button, #cookie_approval .search-mask .actions .button, .search-mask .actions .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .search-mask .actions input[type="submit"] {
    margin-right: 15px; } }

@media only screen and (min-width: 768px) {
  .vd-button, #cookie_approval .button, .tx-sf-event-mgt .registration input[type="submit"] {
    font-size: 18px;
    font-size: 1.125rem; }
    .vd-button--scroll-down {
      width: 44px;
      height: 44px; }
      .vd-button--scroll-down svg {
        width: 44px;
        height: 44px; } }

@media only screen and (min-width: 1200px) {
  .vd-button--menu.top {
    padding: 0;
    line-height: 1.2;
    display: inline-block;
    border-bottom: 2px solid transparent; }
    .vd-button--menu.top:hover, .vd-button--menu.top:focus, .vd-button--menu.top.active {
      color: #00848d;
      border-bottom: 2px solid #00848d; }
    .vd-button--menu.top:after {
      content: none;
      background-image: none; } }

@-webkit-keyframes bounce-1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes bounce-1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

.vd-result-list__item {
  position: relative; }
  .vd-result-list__item.reviewer .vd-actions {
    position: absolute;
    right: 10px;
    top: 20px;
    z-index: 100; }
    .vd-result-list__item.reviewer .vd-actions .vd-button--icon {
      height: 25px;
      width: 25px;
      padding: 0;
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat; }
      .vd-result-list__item.reviewer .vd-actions .vd-button--icon.vd-button--arrow-down {
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2037%2022%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m32.88%203.2-14.7%2015.5-14.98-15.5%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E");
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
      .vd-result-list__item.reviewer .vd-actions .vd-button--icon.vd-button--arrow-up {
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2037%2022%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m32.88%203.2-14.7%2015.5-14.98-15.5%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E");
        -webkit-transform: rotate(-180deg);
                transform: rotate(-180deg);
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }

.lazy {
  opacity: 0; }

.loaded {
  -webkit-animation: fadeInImage .75s;
          animation: fadeInImage .75s; }

@-webkit-keyframes fadeInImage {
  0% {
    opacity: 0;
    background-color: white; }
  50% {
    opacity: .25; }
  100% {
    opacity: 1;
    background-color: transparent; } }

@keyframes fadeInImage {
  0% {
    opacity: 0;
    background-color: white; }
  50% {
    opacity: .25; }
  100% {
    opacity: 1;
    background-color: transparent; } }

.footer__link {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  text-decoration: none; }
  .footer__link:hover, .footer__link:focus {
    text-decoration: underline; }
  .footer__link[href^="mailto:"] {
    text-decoration: underline; }
  .footer__link[href^="tel:"] {
    text-decoration: underline; }

.link--dotted, .link--download, .ce.ce--vd_social_wall .vd-feed__link {
  font-size: 18px;
  font-size: 1.125rem;
  text-decoration: none;
  border-bottom: 1px dotted #d50019; }
  .link--dotted:hover, .link--download:hover, .ce.ce--vd_social_wall .vd-feed__link:hover, .link--dotted:focus, .link--download:focus, .ce.ce--vd_social_wall .vd-feed__link:focus {
    border-color: transparent; }

.link--dotted-arrow, .vd-section--hero.version--extra-large .hero__front .textbox__wrapper a, .vd-section--hero.version--illustration .hero__front .textbox__wrapper a, #cookie_approval .text a, .tx-sf-event-mgt .registration a, .ce--sfeventmgt_pieventdetail .event ul a, .ce--sfeventmgt_pieventdetail .event a:not(.vd-button), .vd-form-wrapper.vd-form-wrapper--cleverreach form a, .ce.ce--vd_text .ce__bodytext p a, .ce.ce--table .ce__bodytext p a, .ce.ce--vd_news_detail .lead a, .ce.ce--vd_news_detail .news-text-wrap p a {
  font-size: 18px;
  font-size: 1.125rem;
  text-decoration: none;
  border-bottom: 1px dotted #d50019; }
  .link--dotted-arrow:before, .vd-section--hero.version--extra-large .hero__front .textbox__wrapper a:before, .vd-section--hero.version--illustration .hero__front .textbox__wrapper a:before, #cookie_approval .text a:before, .tx-sf-event-mgt .registration a:before, .ce--sfeventmgt_pieventdetail .event ul a:before, .ce--sfeventmgt_pieventdetail .event a:not(.vd-button):before, .vd-form-wrapper.vd-form-wrapper--cleverreach form a:before, .ce.ce--vd_text .ce__bodytext p a:before, .ce.ce--table .ce__bodytext p a:before, .ce.ce--vd_news_detail .lead a:before, .ce.ce--vd_news_detail .news-text-wrap p a:before {
    content: "\2192";
    margin-right: 0.25rem;
    font-size: 20px;
    font-size: 1.25rem; }
  .link--dotted-arrow:hover, .vd-section--hero.version--extra-large .hero__front .textbox__wrapper a:hover, .vd-section--hero.version--illustration .hero__front .textbox__wrapper a:hover, #cookie_approval .text a:hover, .tx-sf-event-mgt .registration a:hover, .ce--sfeventmgt_pieventdetail .event ul a:hover, .ce--sfeventmgt_pieventdetail .event a:hover:not(.vd-button), .vd-form-wrapper.vd-form-wrapper--cleverreach form a:hover, .ce.ce--vd_text .ce__bodytext p a:hover, .ce.ce--table .ce__bodytext p a:hover, .ce.ce--vd_news_detail .lead a:hover, .ce.ce--vd_news_detail .news-text-wrap p a:hover, .link--dotted-arrow:focus, .vd-section--hero.version--extra-large .hero__front .textbox__wrapper a:focus, .vd-section--hero.version--illustration .hero__front .textbox__wrapper a:focus, #cookie_approval .text a:focus, .tx-sf-event-mgt .registration a:focus, .ce--sfeventmgt_pieventdetail .event ul a:focus, .ce--sfeventmgt_pieventdetail .event a:focus:not(.vd-button), .vd-form-wrapper.vd-form-wrapper--cleverreach form a:focus, .ce.ce--vd_text .ce__bodytext p a:focus, .ce.ce--table .ce__bodytext p a:focus, .ce.ce--vd_news_detail .lead a:focus, .ce.ce--vd_news_detail .news-text-wrap p a:focus {
    border-color: transparent; }

.link--download:before {
  content: "\2193" !important;
  margin-right: 0.3125rem; }

.link--readmore {
  position: relative; }
  .link--readmore:after {
    content: '';
    height: 18px;
    width: 32px;
    display: inline-block;
    top: 4px;
    position: relative;
    margin-left: 13px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23015D7D'/%3E%3C/svg%3E"); }

.ce__bodytext ol.list-type.list-type--decimal {
  list-style-type: decimal; }

.ce__bodytext ol.list-type.list-type--decimal-leading-zero {
  list-style-type: decimal-leading-zero; }

.ce__bodytext ol.list-type.list-type--lower-latin {
  list-style-type: lower-latin; }

.ce__bodytext ol.list-type.list-type--lower-roman {
  list-style-type: lower-roman; }

.ce__bodytext ol.list-type.list-type--upper-latin {
  list-style-type: upper-latin; }

.ce__bodytext ol.list-type.list-type--upper-roman {
  list-style-type: upper-roman; }

.vd-language-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .vd-language-switch .language-link {
    font-size: 20px !important;
    font-size: 1.25rem !important;
    text-transform: uppercase; }
    .vd-language-switch .language-link.active {
      font-weight: 700; }
  .vd-language-switch .language-divider {
    width: 2px;
    height: 20px;
    background-color: var(--c-font-base);
    margin: 0 0.3125rem; }

.label--underline {
  text-decoration: underline; }

.top-label, .tag {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  /*
    &--white {
        background-color: #ffffff;
        color: $red-primary;
    }

    &--red {
        background-color: $red-primary;
        color: #ffffff;
        border: 1px solid $red-primary;
    }

    &--ghost {
        background-color: #ffffff;
        border: 1px solid $turquoise-primary;
        color: $turquoise-primary;
    }

    &--dark {
        background-color: #ffffff;
        border: 1px solid #000000;
        color: #000000;
    }
*/ }
  @media only screen and (min-width: 768px) {
    .top-label, .tag {
      font-size: 16px;
      font-size: 1rem; } }

.contact-label {
  display: inline-block;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.375rem;
  /**
     * Bubble 
     */
  background: transparent;
  color: #000;
  padding: 0;
  border-radius: 50%;
  font-size: 18px;
  font-size: 1.125rem;
  text-transform: uppercase;
  border: 1px solid #000;
  line-height: 22.5px;
  width: 22px;
  height: 22px;
  display: inline-block;
  text-align: center;
  margin-right: 0.5rem;
  margin-bottom: 0.375rem; }

.tag {
  text-transform: none;
  margin-right: 6px; }
  .tag--ghost {
    background-color: transparent; }
    .tag--ghost.tag--dark {
      border: 1px solid #000000;
      color: #000000; }

.vd-breadcrumb {
  /*
    margin-left: 20px;
    margin-right: 20px;
*/ }
  @media only screen and (max-width: 767px) {
    .vd-breadcrumb {
      display: none;
      /*
        margin-left: -10px;
        margin-right: -10px;
*/ } }
  .vd-breadcrumb .vd-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0 !important;
    padding-right: 0 !important; }
    .vd-breadcrumb .vd-nav__item {
      font-size: 16px;
      font-size: 1rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 0.3125rem;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 0.8px; }
      .vd-breadcrumb .vd-nav__item a {
        color: #000000;
        text-decoration: none; }
        .vd-breadcrumb .vd-nav__item a:hover, .vd-breadcrumb .vd-nav__item a:focus {
          color: #00848d;
          text-decoration: underline; }
      .vd-breadcrumb .vd-nav__item:not(:last-child):after {
        content: "";
        display: block;
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224px%22%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M0%200h24v24H0V0z%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M10%206L8.59%207.41%2013.17%2012l-4.58%204.59L10%2018l6-6-6-6z%22%2F%3E%3C%2Fsvg%3E");
        background-position: bottom;
        width: 34px;
        height: 22px;
        float: right; }

.template--startpage .vd-breadcrumb {
  display: none; }

.search-form {
  width: 100%; }
  .search-form__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 2px solid #00848d;
    padding-bottom: 0.3125rem;
    margin-bottom: 0.3125rem; }
  .search-form__input {
    position: relative;
    border: none;
    width: 100%;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0.9375rem 1.25rem;
    background-color: transparent;
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out; }
    .search-form__input::-webkit-input-placeholder {
      color: transparent; }
    .search-form__input::-moz-placeholder {
      color: transparent; }
    .search-form__input:-ms-input-placeholder {
      color: transparent; }
    .search-form__input::-ms-input-placeholder {
      color: transparent; }
    .search-form__input::placeholder {
      color: transparent; }
    .search-form__input:focus {
      background-color: #fff;
      -webkit-transition: all 250ms ease-in-out;
      transition: all 250ms ease-in-out; }
      .search-form__input:focus + .search-form__submit {
        -webkit-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out;
        background-color: #fff; }
  .search-form__submit {
    border: none;
    background-color: transparent;
    width: 50px;
    padding-right: 10px;
    background-size: 1.375rem;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2065%2065%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m55.47%2041.88a22%2022%200%200%201%20-31.53%200%2023.11%2023.11%200%200%201%200-32.2%2022%2022%200%200%201%2031.53%200%2023.12%2023.12%200%200%201%200%2032.2zm-52.47%2020.12%2020.89-20.22%22%20fill%3D%22none%22%20stroke%3D%22%2300848D%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out; }
  .search-form__label {
    color: #00848d;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0; }

#tx-solr-search .tx-solr-search-info {
  margin-top: 2.5rem; }

.page-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.25rem 0; }
  .page-navigation > p {
    display: none; }
  .page-navigation .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    list-style: none; }
    .page-navigation .pagination li {
      margin: 0 0.3125rem; }
      .page-navigation .pagination li > *:not(.disabled) {
        color: #000;
        font-weight: 600;
        font-size: 18px;
        font-size: 1.125rem;
        text-decoration: none; }
        .page-navigation .pagination li > *:not(.disabled):hover, .page-navigation .pagination li > *:not(.disabled):focus {
          text-decoration: underline;
          color: #00848d; }
      .page-navigation .pagination li.active > * {
        text-decoration: underline;
        color: #00848d; }
  .page-navigation .previous a,
  .page-navigation .next a {
    line-height: 0 !important;
    font-size: 0 !important;
    color: transparent !important;
    width: 20px;
    height: 20px;
    display: block;
    background-repeat: no-repeat; }
  .page-navigation .previous {
    margin-right: 0.9375rem !important; }
    .page-navigation .previous a {
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2022%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m18.7%2032.88-15.5-14.7%2015.5-14.98%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E"); }
  .page-navigation .next {
    margin-left: 0.9375rem !important; }
    .page-navigation .next a {
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2022%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m3.2%2032.88%2015.5-14.7-15.5-14.98%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E"); }

.grid-container .grid-column .ce.ce--vd_text .vd-wrapper, .grid-container .grid-column .ce.ce--table .vd-wrapper {
  padding-right: 0;
  padding-left: 0; }

.grid-container .grid-column .ce.ce--vd_image .vd-wrapper {
  padding-right: 0;
  padding-left: 0; }

.grid-container .grid-column .ce.ce--vd_quotation {
  padding-right: 0;
  padding-left: 0; }

.grid-container .grid-column .ce.ce--vd_info_box {
  padding-right: 0;
  padding-left: 0; }

.grid-container .grid-column .ce.ce--vd_link_list {
  padding-right: 0;
  padding-left: 0; }

.grid-container .grid-column .ce.ce--vd_contact_card, .grid-container .grid-column .ce.ce--vd_department_card {
  padding-right: 0;
  padding-left: 0; }

.grid-container .grid-column .ce.ce--vd_accordion .ce__title,
.grid-container .grid-column .ce.ce--vd_accordion .container,
.grid-container .grid-column .ce.ce--vd_accordion .vd-breadcrumb,
.grid-container .grid-column .ce.ce--vd_accordion .vd-breadcrumb .vd-nav,
.vd-breadcrumb .grid-container .grid-column .ce.ce--vd_accordion .vd-nav,
.grid-container .grid-column .ce.ce--vd_accordion #tx-solr-search,
.grid-container .grid-column .ce.ce--vd_accordion .vd-filter-container,
.grid-container .grid-column .ce.ce--vd_accordion .vd-section--header .header__bottom .vd-wrapper,
.vd-section--header .header__bottom .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .vd-section--header .header__navigation--buttons,
.vd-section--header .grid-container .grid-column .ce.ce--vd_accordion .header__navigation--buttons,
.grid-container .grid-column .ce.ce--vd_accordion body:not(.template--startpage) .vd-section--header .vd-wrapper,
body:not(.template--startpage) .vd-section--header .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion body:not(.template--startpage) .vd-section .header__navigation--buttons,
body:not(.template--startpage) .vd-section .grid-container .grid-column .ce.ce--vd_accordion .header__navigation--buttons,
.grid-container .grid-column .ce.ce--vd_accordion body.template--startpage .vd-section--hero .vd-wrapper,
body.template--startpage .vd-section--hero .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .content-element.gutachter-list,
.grid-container .grid-column .ce.ce--vd_accordion .vd-section--main .vd-message,
.vd-section--main .grid-container .grid-column .ce.ce--vd_accordion .vd-message,
.grid-container .grid-column .ce.ce--vd_accordion .vd-section--header .header__top .vd-wrapper,
.vd-section--header .header__top .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_event_calendar .vd-wrapper,
.ce.ce--vd_event_calendar .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_events_list > .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_events_search > .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_event_registration .vd-wrapper,
.ce.ce--vd_event_registration .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce--sfeventmgt_pieventdetail .vd-wrapper,
.ce--sfeventmgt_pieventdetail .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce--vd_event_list > .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce--vd_event_search > .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_press_mailing_list_subscription .vd-wrapper,
.ce.ce--vd_press_mailing_list_subscription .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_newsletter_registration,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_services_teaser .vd-wrapper,
.ce.ce--vd_services_teaser .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_news_teaser .single-news-teaser,
.ce.ce--vd_news_teaser .grid-container .grid-column .ce.ce--vd_accordion .single-news-teaser,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_news_list .icon,
.ce.ce--vd_news_list .grid-container .grid-column .ce.ce--vd_accordion .icon,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_news_list .vd-actions,
.ce.ce--vd_news_list .grid-container .grid-column .ce.ce--vd_accordion .vd-actions,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_news_list .news__cta,
.ce.ce--vd_news_list .grid-container .grid-column .ce.ce--vd_accordion .news__cta,
.grid-container .grid-column .ce.ce--vd_accordion .ce__title,
.grid-container .grid-column .ce.ce--vd_accordion .ce__content .ce__bodytext,
.ce--vd_downloads .ce__content .grid-container .grid-column .ce.ce--vd_accordion .ce__bodytext,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper,
.ce.ce--vd_carousel.ce--bg_green__front_bright .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper,
.ce.ce--vd_carousel.ce--bg_grey .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .vd-slick-dots,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_image .vd-wrapper,
.ce.ce--vd_image .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_text .vd-wrapper,
.ce.ce--vd_text .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--table .vd-wrapper,
.ce.ce--table .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--html .vd-wrapper,
.ce.ce--html .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_link_list,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_quotation,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_video .vd-wrapper,
.ce.ce--vd_video .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--form_formframework .vd-wrapper,
.ce.ce--form_formframework .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_info_box,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_magazines .vd-wrapper,
.ce.ce--vd_magazines .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .content-element-directories .text,
.content-element-directories .grid-container .grid-column .ce.ce--vd_accordion .text,
.grid-container .grid-column .ce.ce--vd_accordion .content-element-directories #directories_filter__form,
.content-element-directories .grid-container .grid-column .ce.ce--vd_accordion #directories_filter__form,
.grid-container .grid-column .ce.ce--vd_accordion .content-element-directories .directories-results,
.content-element-directories .grid-container .grid-column .ce.ce--vd_accordion .directories-results,
.grid-container .grid-column .ce.ce--vd_accordion #tx-solr-search .vd-wrapper,
#tx-solr-search .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion main > .ce.ce--vd_event_teaser .single-event-teaser,
main > .ce.ce--vd_event_teaser .grid-container .grid-column .ce.ce--vd_accordion .single-event-teaser,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper,
.ce.ce--vd_contact_card:not(.ce-layout--aside-box) .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper,
.ce.ce--vd_department_card:not(.ce-layout--aside-box) .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_job_form,
.grid-container .grid-column .ce.ce--vd_accordion .ce--vd_downloads .vd-wrapper,
.ce--vd_downloads .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce--vd_download .ce__content,
.ce--vd_download .grid-container .grid-column .ce.ce--vd_accordion .ce__content,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_menu_teaser .vd-wrapper,
.ce.ce--vd_menu_teaser .grid-container .grid-column .ce.ce--vd_accordion .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_accordion .ce.ce--vd_news_carousel > .vd-wrapper {
  padding-right: 0;
  padding-left: 0; }

.grid-container .grid-column .ce.ce--vd_accordion .accordion {
  max-width: auto; }

.grid-container .grid-column .ce.ce--vd_text_teaser .ce__title,
.grid-container .grid-column .ce.ce--vd_text_teaser .container,
.grid-container .grid-column .ce.ce--vd_text_teaser .vd-breadcrumb,
.grid-container .grid-column .ce.ce--vd_text_teaser .vd-breadcrumb .vd-nav,
.vd-breadcrumb .grid-container .grid-column .ce.ce--vd_text_teaser .vd-nav,
.grid-container .grid-column .ce.ce--vd_text_teaser #tx-solr-search,
.grid-container .grid-column .ce.ce--vd_text_teaser .vd-filter-container,
.grid-container .grid-column .ce.ce--vd_text_teaser .vd-section--header .header__bottom .vd-wrapper,
.vd-section--header .header__bottom .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .vd-section--header .header__navigation--buttons,
.vd-section--header .grid-container .grid-column .ce.ce--vd_text_teaser .header__navigation--buttons,
.grid-container .grid-column .ce.ce--vd_text_teaser body:not(.template--startpage) .vd-section--header .vd-wrapper,
body:not(.template--startpage) .vd-section--header .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser body:not(.template--startpage) .vd-section .header__navigation--buttons,
body:not(.template--startpage) .vd-section .grid-container .grid-column .ce.ce--vd_text_teaser .header__navigation--buttons,
.grid-container .grid-column .ce.ce--vd_text_teaser body.template--startpage .vd-section--hero .vd-wrapper,
body.template--startpage .vd-section--hero .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .content-element.gutachter-list,
.grid-container .grid-column .ce.ce--vd_text_teaser .vd-section--main .vd-message,
.vd-section--main .grid-container .grid-column .ce.ce--vd_text_teaser .vd-message,
.grid-container .grid-column .ce.ce--vd_text_teaser .vd-section--header .header__top .vd-wrapper,
.vd-section--header .header__top .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_event_calendar .vd-wrapper,
.ce.ce--vd_event_calendar .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_events_list > .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_events_search > .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_event_registration .vd-wrapper,
.ce.ce--vd_event_registration .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce--sfeventmgt_pieventdetail .vd-wrapper,
.ce--sfeventmgt_pieventdetail .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce--vd_event_list > .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce--vd_event_search > .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_press_mailing_list_subscription .vd-wrapper,
.ce.ce--vd_press_mailing_list_subscription .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_newsletter_registration,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_services_teaser .vd-wrapper,
.ce.ce--vd_services_teaser .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce__title,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_news_teaser .single-news-teaser,
.ce.ce--vd_news_teaser .grid-container .grid-column .ce.ce--vd_text_teaser .single-news-teaser,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_news_list .icon,
.ce.ce--vd_news_list .grid-container .grid-column .ce.ce--vd_text_teaser .icon,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_news_list .vd-actions,
.ce.ce--vd_news_list .grid-container .grid-column .ce.ce--vd_text_teaser .vd-actions,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_news_list .news__cta,
.ce.ce--vd_news_list .grid-container .grid-column .ce.ce--vd_text_teaser .news__cta,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce--vd_accordion .ce__content .ce__bodytext,
.ce--vd_accordion .ce__content .grid-container .grid-column .ce.ce--vd_text_teaser .ce__bodytext,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce--vd_downloads .ce__content .ce__bodytext,
.ce--vd_downloads .ce__content .grid-container .grid-column .ce.ce--vd_text_teaser .ce__bodytext,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_carousel .ce__content > .ce__bodytext,
.ce.ce--vd_carousel .grid-container .grid-column .ce.ce--vd_text_teaser .ce__content > .ce__bodytext,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper,
.ce.ce--vd_carousel.ce--bg_green__front_bright .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper,
.ce.ce--vd_carousel.ce--bg_grey .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .vd-slick-dots,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_image .vd-wrapper,
.ce.ce--vd_image .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_text .vd-wrapper,
.ce.ce--vd_text .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--table .vd-wrapper,
.ce.ce--table .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--html .vd-wrapper,
.ce.ce--html .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_link_list,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_quotation,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_video .vd-wrapper,
.ce.ce--vd_video .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--form_formframework .vd-wrapper,
.ce.ce--form_formframework .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_info_box,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_magazines .vd-wrapper,
.ce.ce--vd_magazines .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .content-element-directories .text,
.content-element-directories .grid-container .grid-column .ce.ce--vd_text_teaser .text,
.grid-container .grid-column .ce.ce--vd_text_teaser .content-element-directories #directories_filter__form,
.content-element-directories .grid-container .grid-column .ce.ce--vd_text_teaser #directories_filter__form,
.grid-container .grid-column .ce.ce--vd_text_teaser .content-element-directories .directories-results,
.content-element-directories .grid-container .grid-column .ce.ce--vd_text_teaser .directories-results,
.grid-container .grid-column .ce.ce--vd_text_teaser #tx-solr-search .vd-wrapper,
#tx-solr-search .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser main > .ce.ce--vd_event_teaser .single-event-teaser,
main > .ce.ce--vd_event_teaser .grid-container .grid-column .ce.ce--vd_text_teaser .single-event-teaser,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper,
.ce.ce--vd_contact_card:not(.ce-layout--aside-box) .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper,
.ce.ce--vd_department_card:not(.ce-layout--aside-box) .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_job_form,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce--vd_downloads .vd-wrapper,
.ce--vd_downloads .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce--vd_download .ce__content,
.ce--vd_download .grid-container .grid-column .ce.ce--vd_text_teaser .ce__content,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_menu_teaser .vd-wrapper,
.ce.ce--vd_menu_teaser .grid-container .grid-column .ce.ce--vd_text_teaser .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_text_teaser .ce.ce--vd_news_carousel > .vd-wrapper {
  padding-right: 0;
  padding-left: 0; }

.grid-container .grid-column .ce.ce--vd_news_list .ce__title,
.grid-container .grid-column .ce.ce--vd_news_list .container,
.grid-container .grid-column .ce.ce--vd_news_list .vd-breadcrumb,
.grid-container .grid-column .ce.ce--vd_news_list .vd-breadcrumb .vd-nav,
.vd-breadcrumb .grid-container .grid-column .ce.ce--vd_news_list .vd-nav,
.grid-container .grid-column .ce.ce--vd_news_list #tx-solr-search,
.grid-container .grid-column .ce.ce--vd_news_list .vd-filter-container,
.grid-container .grid-column .ce.ce--vd_news_list .vd-section--header .header__bottom .vd-wrapper,
.vd-section--header .header__bottom .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .vd-section--header .header__navigation--buttons,
.vd-section--header .grid-container .grid-column .ce.ce--vd_news_list .header__navigation--buttons,
.grid-container .grid-column .ce.ce--vd_news_list body:not(.template--startpage) .vd-section--header .vd-wrapper,
body:not(.template--startpage) .vd-section--header .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list body:not(.template--startpage) .vd-section .header__navigation--buttons,
body:not(.template--startpage) .vd-section .grid-container .grid-column .ce.ce--vd_news_list .header__navigation--buttons,
.grid-container .grid-column .ce.ce--vd_news_list body.template--startpage .vd-section--hero .vd-wrapper,
body.template--startpage .vd-section--hero .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .content-element.gutachter-list,
.grid-container .grid-column .ce.ce--vd_news_list .vd-section--main .vd-message,
.vd-section--main .grid-container .grid-column .ce.ce--vd_news_list .vd-message,
.grid-container .grid-column .ce.ce--vd_news_list .vd-section--header .header__top .vd-wrapper,
.vd-section--header .header__top .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_event_calendar .vd-wrapper,
.ce.ce--vd_event_calendar .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_events_list > .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_events_search > .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_event_registration .vd-wrapper,
.ce.ce--vd_event_registration .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce--sfeventmgt_pieventdetail .vd-wrapper,
.ce--sfeventmgt_pieventdetail .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce--vd_event_list > .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce--vd_event_search > .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_press_mailing_list_subscription .vd-wrapper,
.ce.ce--vd_press_mailing_list_subscription .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_newsletter_registration,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_services_teaser .vd-wrapper,
.ce.ce--vd_services_teaser .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_news_teaser .single-news-teaser,
.ce.ce--vd_news_teaser .grid-container .grid-column .ce.ce--vd_news_list .single-news-teaser,
.grid-container .grid-column .ce.ce--vd_news_list .ce__title,
.grid-container .grid-column .ce.ce--vd_news_list .icon,
.grid-container .grid-column .ce.ce--vd_news_list .vd-actions,
.grid-container .grid-column .ce.ce--vd_news_list .news__cta,
.grid-container .grid-column .ce.ce--vd_news_list .ce--vd_accordion .ce__content .ce__bodytext,
.ce--vd_accordion .ce__content .grid-container .grid-column .ce.ce--vd_news_list .ce__bodytext,
.grid-container .grid-column .ce.ce--vd_news_list .ce--vd_downloads .ce__content .ce__bodytext,
.ce--vd_downloads .ce__content .grid-container .grid-column .ce.ce--vd_news_list .ce__bodytext,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_carousel .ce__content > .ce__bodytext,
.ce.ce--vd_carousel .grid-container .grid-column .ce.ce--vd_news_list .ce__content > .ce__bodytext,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper,
.ce.ce--vd_carousel.ce--bg_green__front_bright .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper,
.ce.ce--vd_carousel.ce--bg_grey .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .vd-slick-dots,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_image .vd-wrapper,
.ce.ce--vd_image .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_text .vd-wrapper,
.ce.ce--vd_text .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--table .vd-wrapper,
.ce.ce--table .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--html .vd-wrapper,
.ce.ce--html .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_link_list,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_quotation,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_video .vd-wrapper,
.ce.ce--vd_video .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--form_formframework .vd-wrapper,
.ce.ce--form_formframework .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_info_box,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_magazines .vd-wrapper,
.ce.ce--vd_magazines .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .content-element-directories .text,
.content-element-directories .grid-container .grid-column .ce.ce--vd_news_list .text,
.grid-container .grid-column .ce.ce--vd_news_list .content-element-directories #directories_filter__form,
.content-element-directories .grid-container .grid-column .ce.ce--vd_news_list #directories_filter__form,
.grid-container .grid-column .ce.ce--vd_news_list .content-element-directories .directories-results,
.content-element-directories .grid-container .grid-column .ce.ce--vd_news_list .directories-results,
.grid-container .grid-column .ce.ce--vd_news_list #tx-solr-search .vd-wrapper,
#tx-solr-search .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list main > .ce.ce--vd_event_teaser .single-event-teaser,
main > .ce.ce--vd_event_teaser .grid-container .grid-column .ce.ce--vd_news_list .single-event-teaser,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper,
.ce.ce--vd_contact_card:not(.ce-layout--aside-box) .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper,
.ce.ce--vd_department_card:not(.ce-layout--aside-box) .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_job_form,
.grid-container .grid-column .ce.ce--vd_news_list .ce--vd_downloads .vd-wrapper,
.ce--vd_downloads .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce--vd_download .ce__content,
.ce--vd_download .grid-container .grid-column .ce.ce--vd_news_list .ce__content,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_menu_teaser .vd-wrapper,
.ce.ce--vd_menu_teaser .grid-container .grid-column .ce.ce--vd_news_list .vd-wrapper,
.grid-container .grid-column .ce.ce--vd_news_list .ce.ce--vd_news_carousel > .vd-wrapper {
  padding-right: 0;
  padding-left: 0; }

.grid-container .grid-column .ce.ce--vd_video .vd-wrapper {
  padding-right: 0;
  padding-left: 0; }

.grid-container .grid-column .ce--vd_downloads .vd-wrapper {
  padding-left: 0px !important;
  padding-right: 0px !important; }

.grid-container .grid-column .ce--vd_downloads .accordion {
  max-width: calc((100% / 12) * 12) !important; }

.grid-container .grid-column .ce--vd_accordion .accordion,
.grid-container .grid-column .ce--vd_downloads .accordion {
  max-width: calc((100% / 12) * 12) !important; }

.grid-container .grid-column .ce--vd_download .ce__title,
.grid-container .grid-column .ce--vd_download .ce__content {
  padding-left: 0px !important;
  padding-right: 0px !important; }

.grid-container .grid-column.grid-column-1 .ce .container, .grid-container .grid-column.grid-column-1 .ce .vd-breadcrumb, .grid-container .grid-column.grid-column-1 .ce .vd-breadcrumb .vd-nav, .vd-breadcrumb .grid-container .grid-column.grid-column-1 .ce .vd-nav, .grid-container .grid-column.grid-column-1 .ce #tx-solr-search, .grid-container .grid-column.grid-column-1 .ce .vd-filter-container, .grid-container .grid-column.grid-column-1 .ce .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__bottom .grid-container .grid-column.grid-column-1 .ce .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce .vd-section--header .header__navigation--buttons, .vd-section--header .grid-container .grid-column.grid-column-1 .ce .header__navigation--buttons, .grid-container .grid-column.grid-column-1 .ce body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section--header .grid-container .grid-column.grid-column-1 .ce .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce body:not(.template--startpage) .vd-section .header__navigation--buttons, body:not(.template--startpage) .vd-section .grid-container .grid-column.grid-column-1 .ce .header__navigation--buttons, .grid-container .grid-column.grid-column-1 .ce body.template--startpage .vd-section--hero .vd-wrapper, body.template--startpage .vd-section--hero .grid-container .grid-column.grid-column-1 .ce .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce .content-element.gutachter-list, .grid-container .grid-column.grid-column-1 .ce .vd-section--main .vd-message, .vd-section--main .grid-container .grid-column.grid-column-1 .ce .vd-message, .grid-container .grid-column.grid-column-1 .ce .vd-section--header .header__top .vd-wrapper, .vd-section--header .header__top .grid-container .grid-column.grid-column-1 .ce .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce.ce--vd_event_calendar .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce.ce--vd_events_list > .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce.ce--vd_events_search > .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce.ce--vd_event_registration .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--sfeventmgt_pieventdetail .grid-container .grid-column.grid-column-1 .ce .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce .ce--vd_event_list > .vd-wrapper,
.grid-container .grid-column.grid-column-1 .ce .ce--vd_event_search > .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce .ce.ce--vd_newsletter_registration, .grid-container .grid-column.grid-column-1 .ce.ce--vd_services_teaser .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce.ce--vd_text_teaser .ce__title, .grid-container .grid-column.grid-column-1 .ce.ce--vd_news_teaser .single-news-teaser, .grid-container .grid-column.grid-column-1 .ce.ce--vd_news_list .ce__title, .grid-container .grid-column.grid-column-1 .ce.ce--vd_news_list .icon, .grid-container .grid-column.grid-column-1 .ce.ce--vd_news_list .vd-actions, .grid-container .grid-column.grid-column-1 .ce.ce--vd_news_list .news__cta, .grid-container .grid-column.grid-column-1 .ce .ce--vd_accordion .ce__title, .ce--vd_accordion .grid-container .grid-column.grid-column-1 .ce .ce__title,
.grid-container .grid-column.grid-column-1 .ce .ce--vd_downloads .ce__title, .ce--vd_downloads .grid-container .grid-column.grid-column-1 .ce .ce__title, .grid-container .grid-column.grid-column-1 .ce .ce--vd_accordion .ce__content .ce__bodytext, .ce--vd_accordion .ce__content .grid-container .grid-column.grid-column-1 .ce .ce__bodytext,
.grid-container .grid-column.grid-column-1 .ce .ce--vd_downloads .ce__content .ce__bodytext, .ce--vd_downloads .ce__content .grid-container .grid-column.grid-column-1 .ce .ce__bodytext, .grid-container .grid-column.grid-column-1 .ce.ce--vd_carousel .ce__content > .ce__bodytext, .grid-container .grid-column.grid-column-1 .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce .vd-slick-dots, .grid-container .grid-column.grid-column-1 .ce.ce--vd_image .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce.ce--vd_text .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce.ce--table .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce.ce--html .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce.ce--vd_text_images .ce__title, .grid-container .grid-column.grid-column-1 .ce .ce.ce--vd_link_list, .grid-container .grid-column.grid-column-1 .ce .ce.ce--vd_quotation, .grid-container .grid-column.grid-column-1 .ce .ce--vd_pages_teaser .ce__title, .ce--vd_pages_teaser .grid-container .grid-column.grid-column-1 .ce .ce__title, .grid-container .grid-column.grid-column-1 .ce.ce--vd_video .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce.ce--form_formframework .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce .ce.ce--vd_info_box, .grid-container .grid-column.grid-column-1 .ce.ce--vd_magazines .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce.ce--vd_list_offers .ce__title, .grid-container .grid-column.grid-column-1 .ce .content-element-directories .text, .content-element-directories .grid-container .grid-column.grid-column-1 .ce .text, .grid-container .grid-column.grid-column-1 .ce .content-element-directories #directories_filter__form, .content-element-directories .grid-container .grid-column.grid-column-1 .ce #directories_filter__form, .grid-container .grid-column.grid-column-1 .ce .content-element-directories .directories-results, .content-element-directories .grid-container .grid-column.grid-column-1 .ce .directories-results, .grid-container .grid-column.grid-column-1 .ce #tx-solr-search .vd-wrapper, #tx-solr-search .grid-container .grid-column.grid-column-1 .ce .vd-wrapper, .grid-container .grid-column.grid-column-1 main > .ce.ce--vd_event_teaser .single-event-teaser, .grid-container .grid-column.grid-column-1 .ce.ce--vd_departments_list .ce__title, .grid-container .grid-column.grid-column-1 .ce.ce--vd_divisions_list .ce__title, .grid-container .grid-column.grid-column-1 .ce.ce--vd_persons_list .ce__title, .grid-container .grid-column.grid-column-1 .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce .ce.ce--vd_job_form, .grid-container .grid-column.grid-column-1 .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .grid-container .grid-column.grid-column-1 .ce .ce--vd_downloads .vd-wrapper, .ce--vd_downloads .grid-container .grid-column.grid-column-1 .ce .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce .ce--vd_download .ce__title, .ce--vd_download .grid-container .grid-column.grid-column-1 .ce .ce__title, .grid-container .grid-column.grid-column-1 .ce .ce--vd_download .ce__content, .ce--vd_download .grid-container .grid-column.grid-column-1 .ce .ce__content, .grid-container .grid-column.grid-column-1 .ce.ce--vd_menu_teaser .vd-wrapper, .grid-container .grid-column.grid-column-1 .ce.ce--vd_news_carousel > .vd-wrapper {
  padding-right: 0;
  padding-left: 0; }

.grid-container .grid-column.grid-column-2 .ce .ce__title {
  margin-bottom: 1.25rem !important; }

.grid-container .grid-column.grid-column-2 .ce .row {
  margin-left: 0px !important;
  margin-right: 0px !important; }

.grid-container .grid-column.grid-column-2 .ce .vd-links .header * {
  font-size: 22px !important;
  font-size: 1.375rem !important; }

.grid-container .grid-column.grid-column-2 .ce .vd-links .link--readmore {
  display: block !important;
  margin-top: 5px; }

.grid-container .grid-column.grid-column-2 .ce .vd-links .row .vd-link {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 100% !important;
          flex: 0 0 100% !important;
  max-width: 100% !important; }

.grid-container .grid-column.grid-column-2 .ce.ce--vd_link_list {
  -webkit-box-shadow: 0px 0px 6px #00000029;
          box-shadow: 0px 0px 6px #00000029; }
  .grid-container .grid-column.grid-column-2 .ce.ce--vd_link_list.ce--color-sheme {
    -webkit-box-shadow: none;
            box-shadow: none; }

.lightbox {
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 300;
  background-color: rgba(0, 0, 0, 0.8); }
  .lightbox__inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .lightbox__inner img {
      width: 100%;
      height: auto;
      opacity: 0;
      -webkit-transform: scale(0.4);
              transform: scale(0.4);
      -webkit-animation-name: scale;
              animation-name: scale;
      -webkit-animation-duration: 350ms;
              animation-duration: 350ms;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards;
      -o-object-fit: cover;
         object-fit: cover; }
      .lightbox__inner img[data-format="landscape"] {
        width: 90vw;
        height: auto; }
        @media only screen and (min-width: 768px) {
          .lightbox__inner img[data-format="landscape"] {
            width: 900px; } }
      .lightbox__inner img[data-format="portrait"] {
        padding: 1em;
        width: 100%;
        max-height: 80vh; }
        @media only screen and (min-width: 768px) {
          .lightbox__inner img[data-format="portrait"] {
            padding: 0;
            width: auto;
            max-height: 85vh; } }
  .lightbox__close {
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px; }

@-webkit-keyframes scale {
  from {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 0; }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

@keyframes scale {
  from {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 0; }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

.ce--vd_job_form form.tx_vdjobboard button.vd-button--text, .ce--vd_job_form form.tx_vdjobboard #cookie_approval button.button, #cookie_approval .ce--vd_job_form form.tx_vdjobboard button.button {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important; }

.ce--vd_job_form form.tx_vdjobboard button.vd-button--text, .ce--vd_job_form form.tx_vdjobboard #cookie_approval button.button, #cookie_approval .ce--vd_job_form form.tx_vdjobboard button.button {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important; }

.ce.ce--vd_text .ce__content, .ce.ce--table .ce__content {
  max-width: 100%; }
  .ce.ce--vd_text .ce__content.has-table, .ce.ce--table .ce__content.has-table {
    max-width: 100% !important; }
  .ce.ce--vd_text .ce__content .table-wrapper, .ce.ce--table .ce__content .table-wrapper {
    max-width: 100%;
    overflow-x: scroll;
    background: -webkit-gradient(linear, left top, right top, from(white), to(white)), -webkit-gradient(linear, left top, right top, from(white), to(white)) right, radial-gradient(at left, rgba(0, 0, 0, 0.2), transparent 70%), radial-gradient(at right, rgba(0, 0, 0, 0.2), transparent 70%) right;
    background: linear-gradient(to right, white, white), linear-gradient(to right, white, white) right, radial-gradient(at left, rgba(0, 0, 0, 0.2), transparent 70%), radial-gradient(at right, rgba(0, 0, 0, 0.2), transparent 70%) right;
    background-repeat: no-repeat;
    background-size: 20px 100%, 20px 100%, 10px 100%, 10px 100%;
    background-attachment: local, local, scroll, scroll; }
    @media only screen and (min-width: 1200px) {
      .ce.ce--vd_text .ce__content .table-wrapper, .ce.ce--table .ce__content .table-wrapper {
        overflow-x: auto; } }

.contenttable {
  table-layout: fixed;
  width: 100%; }
  .contenttable td,
  .contenttable th {
    text-align: left;
    line-height: 1.2;
    border-collapse: collapse;
    max-width: 600px; }
  .contenttable td.text-align-right,
  .contenttable th.text-align-right {
    text-align: right; }
  .contenttable td.text-align-justify,
  .contenttable th.text-align-justify {
    text-align: justify; }
  .contenttable td.text-align-center,
  .contenttable th.text-align-center {
    text-align: center; }
  .contenttable thead tr {
    border-bottom: 2px solid #00848d; }
  .contenttable thead th {
    padding: 0.625rem 0.3125rem;
    font-size: 16px;
    font-size: 1rem; }
    @media only screen and (min-width: 991px) {
      .contenttable thead th {
        padding: 1.25rem 0.625rem;
        font-size: 20px;
        font-size: 1.25rem; } }
  .contenttable:not(.ce-table--has-header) tbody tr:nth-child(1) {
    background-color: #015D7D;
    color: #fff;
    font-weight: 700; }
  .contenttable thead tr {
    background-color: #015D7D;
    color: #fff;
    font-weight: 700; }
  .contenttable tbody tr,
  .contenttable tfoot tr {
    border-bottom: 1px solid #00848d; }
  .contenttable tbody td,
  .contenttable tfoot td {
    padding: 0.625rem 0.3125rem;
    vertical-align: top;
    font-size: 18px;
    font-size: 1.125rem; }
    @media only screen and (min-width: 991px) {
      .contenttable tbody td,
      .contenttable tfoot td {
        padding: 1.25rem 0.625rem;
        font-size: 18px;
        font-size: 1.125rem; } }
    .contenttable tbody td p,
    .contenttable tfoot td p {
      margin: 0; }
  .contenttable tfoot td {
    font-weight: 700; }

figure {
  padding: 0;
  margin: 0;
  position: relative; }
  figure picture {
    display: block; }
  figure figcaption {
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    height: 60px; }
  figure .figure__caption__toggle {
    position: absolute;
    padding: 0;
    bottom: 15px;
    right: 10px;
    height: 26px;
    width: 26px;
    border: none;
    background: none;
    opacity: 0.7; }
    figure .figure__caption__toggle img {
      height: 100%;
      width: 100%;
      -o-object-fit: contain !important;
         object-fit: contain !important; }

.vd-section--hero.version--extra-large .hero__back figure figcaption {
  top: 0px;
  right: 20px;
  width: 75%; }
  .vd-section--hero.version--extra-large .hero__back figure figcaption .figure__caption__toggle img {
    height: 100%;
    width: 100%; }

.ce.ce--vd_carousel .vd-slide--image-gallery .vd-slide__image figure[data-format="portrait"] figcaption {
  max-width: 420px !important;
  margin: 0 auto;
  left: 0; }

.vd-tooltip {
  display: none; }

[data-tippy-root] {
  max-width: calc(100vw - 10px); }

.tippy-box {
  position: relative;
  background-color: white;
  color: white;
  border-radius: 4px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
  outline: 0;
  -webkit-transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, -webkit-transform;
  transition-property: transform, visibility, opacity;
  transition-property: transform, visibility, opacity, -webkit-transform; }
  .tippy-box p {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 0; }
  .tippy-box p:last-child {
    margin-bottom: 0; }
  .tippy-box[data-placement^='top'] > .tippy-arrow {
    bottom: 0; }
    .tippy-box[data-placement^='top'] > .tippy-arrow::before {
      bottom: -7px;
      left: 0;
      border-width: 8px 8px 0;
      border-top-color: initial;
      -webkit-transform-origin: center top;
              transform-origin: center top; }
  .tippy-box[data-placement^='bottom'] > .tippy-arrow {
    top: 0; }
    .tippy-box[data-placement^='bottom'] > .tippy-arrow::before {
      top: -7px;
      left: 0;
      border-width: 0 8px 8px;
      border-bottom-color: initial;
      -webkit-transform-origin: center bottom;
              transform-origin: center bottom; }
  .tippy-box[data-placement^='left'] > .tippy-arrow {
    right: 0; }
    .tippy-box[data-placement^='left'] > .tippy-arrow::before {
      border-width: 8px 0 8px 8px;
      border-left-color: initial;
      right: -7px;
      -webkit-transform-origin: center left;
              transform-origin: center left; }
  .tippy-box[data-placement^='right'] > .tippy-arrow {
    left: 0; }
    .tippy-box[data-placement^='right'] > .tippy-arrow::before {
      left: -7px;
      border-width: 8px 8px 8px 0;
      border-right-color: initial;
      -webkit-transform-origin: center right;
              transform-origin: center right; }
  .tippy-box[data-inertia][data-state='visible'] {
    -webkit-transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
            transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11); }

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: white; }

.tippy-arrow::before {
  content: '';
  position: absolute;
  border-color: transparent;
  border-style: solid; }

.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1; }

.tippy-box[data-theme~='light'] {
  color: #26323d;
  -webkit-box-shadow: 0 0 20px 4px rgba(154, 161, 177, 0.15), 0 4px 80px -8px rgba(36, 40, 47, 0.25), 0 4px 4px -2px rgba(91, 94, 105, 0.15);
          box-shadow: 0 0 20px 4px rgba(154, 161, 177, 0.15), 0 4px 80px -8px rgba(36, 40, 47, 0.25), 0 4px 4px -2px rgba(91, 94, 105, 0.15);
  background-color: white; }
  .tippy-box[data-theme~='light'][data-placement^='top'] > .tippy-arrow::before {
    border-top-color: white; }
  .tippy-box[data-theme~='light'][data-placement^='bottom'] > .tippy-arrow::before {
    border-bottom-color: white; }
  .tippy-box[data-theme~='light'][data-placement^='left'] > .tippy-arrow::before {
    border-left-color: white; }
  .tippy-box[data-theme~='light'][data-placement^='right'] > .tippy-arrow::before {
    border-right-color: white; }
  .tippy-box[data-theme~='light'] > .tippy-backdrop {
    background-color: white; }
  .tippy-box[data-theme~='light'] > .tippy-svg-arrow {
    fill: white; }

.tippy-box[data-animation='shift-away'][data-state='hidden'] {
  opacity: 0; }
  .tippy-box[data-animation='shift-away'][data-state='hidden'][data-placement^='top'] {
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  .tippy-box[data-animation='shift-away'][data-state='hidden'][data-placement^='bottom'] {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  .tippy-box[data-animation='shift-away'][data-state='hidden'][data-placement^='left'] {
    -webkit-transform: translateX(10px);
            transform: translateX(10px); }
  .tippy-box[data-animation='shift-away'][data-state='hidden'][data-placement^='right'] {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); }

.svg-container {
  max-width: 1000px;
  margin: 0 auto; }

svg#berlin_map a {
  display: inline-block;
  color: #000;
  cursor: pointer; }
  svg#berlin_map a path,
  svg#berlin_map a text {
    cursor: pointer;
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out; }
  svg#berlin_map a:hover path, svg#berlin_map a:focus path {
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    fill: #000 !important; }
  svg#berlin_map a:hover text, svg#berlin_map a:focus text {
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    fill: #fff; }

.vd-filter-container > button {
  margin-bottom: 48px; }

.vd-filter-container button {
  margin-left: 0px !important;
  margin-right: 0px !important; }

.vd-filter-container .vd-filter {
  display: block; }
  .vd-filter-container .vd-filter .actions .form-navigation {
    float: left;
    margin-right: 20px; }
  .vd-filter-container .vd-filter .container, .vd-filter-container .vd-filter .vd-breadcrumb, .vd-filter-container .vd-filter .vd-breadcrumb .vd-nav, .vd-breadcrumb .vd-filter-container .vd-filter .vd-nav, .vd-filter-container .vd-filter #tx-solr-search, .vd-filter-container .vd-filter .vd-filter-container, .vd-filter-container .vd-filter .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__bottom .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .vd-section--header .header__navigation--buttons, .vd-section--header .vd-filter-container .vd-filter .header__navigation--buttons, .vd-filter-container .vd-filter body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section--header .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter body:not(.template--startpage) .vd-section .header__navigation--buttons, body:not(.template--startpage) .vd-section .vd-filter-container .vd-filter .header__navigation--buttons, .vd-filter-container .vd-filter body.template--startpage .vd-section--hero .vd-wrapper, body.template--startpage .vd-section--hero .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .content-element.gutachter-list, .vd-filter-container .vd-filter .vd-section--main .vd-message, .vd-section--main .vd-filter-container .vd-filter .vd-message, .vd-filter-container .vd-filter .vd-section--header .header__top .vd-wrapper, .vd-section--header .header__top .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_event_calendar .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--vd_events_list > .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--vd_events_search > .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--vd_event_registration .vd-wrapper, .ce.ce--vd_event_registration .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--sfeventmgt_pieventdetail .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce--vd_event_list > .vd-wrapper,
  .vd-filter-container .vd-filter .ce--vd_event_search > .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--vd_newsletter_registration, .vd-filter-container .vd-filter .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_services_teaser .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_text_teaser .vd-filter-container .vd-filter .ce__title, .vd-filter-container .vd-filter .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_teaser .vd-filter-container .vd-filter .single-news-teaser, .vd-filter-container .vd-filter .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .vd-filter-container .vd-filter .ce__title, .vd-filter-container .vd-filter .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list .vd-filter-container .vd-filter .icon, .vd-filter-container .vd-filter .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .vd-filter-container .vd-filter .vd-actions, .vd-filter-container .vd-filter .ce.ce--vd_news_list .news__cta, .ce.ce--vd_news_list .vd-filter-container .vd-filter .news__cta, .vd-filter-container .vd-filter .ce--vd_accordion .ce__title, .ce--vd_accordion .vd-filter-container .vd-filter .ce__title,
  .vd-filter-container .vd-filter .ce--vd_downloads .ce__title, .ce--vd_downloads .vd-filter-container .vd-filter .ce__title, .vd-filter-container .vd-filter .ce--vd_accordion .ce__content .ce__bodytext, .ce--vd_accordion .ce__content .vd-filter-container .vd-filter .ce__bodytext,
  .vd-filter-container .vd-filter .ce--vd_downloads .ce__content .ce__bodytext, .ce--vd_downloads .ce__content .vd-filter-container .vd-filter .ce__bodytext, .vd-filter-container .vd-filter .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel .vd-filter-container .vd-filter .ce__content > .ce__bodytext, .vd-filter-container .vd-filter .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .vd-slick-dots, .vd-filter-container .vd-filter .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_image .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--vd_text .vd-wrapper, .ce.ce--vd_text .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--table .vd-wrapper, .ce.ce--table .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--html .vd-wrapper, .ce.ce--html .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--vd_text_images .ce__title, .ce.ce--vd_text_images .vd-filter-container .vd-filter .ce__title, .vd-filter-container .vd-filter .ce.ce--vd_link_list, .vd-filter-container .vd-filter .ce.ce--vd_quotation, .vd-filter-container .vd-filter .ce--vd_pages_teaser .ce__title, .ce--vd_pages_teaser .vd-filter-container .vd-filter .ce__title, .vd-filter-container .vd-filter .ce.ce--vd_video .vd-wrapper, .ce.ce--vd_video .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--form_formframework .vd-wrapper, .ce.ce--form_formframework .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--vd_info_box, .vd-filter-container .vd-filter .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_magazines .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--vd_list_offers .ce__title, .ce.ce--vd_list_offers .vd-filter-container .vd-filter .ce__title, .vd-filter-container .vd-filter .content-element-directories .text, .content-element-directories .vd-filter-container .vd-filter .text, .vd-filter-container .vd-filter .content-element-directories #directories_filter__form, .content-element-directories .vd-filter-container .vd-filter #directories_filter__form, .vd-filter-container .vd-filter .content-element-directories .directories-results, .content-element-directories .vd-filter-container .vd-filter .directories-results, .vd-filter-container .vd-filter #tx-solr-search .vd-wrapper, #tx-solr-search .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter main > .ce.ce--vd_event_teaser .single-event-teaser, main > .ce.ce--vd_event_teaser .vd-filter-container .vd-filter .single-event-teaser, .vd-filter-container .vd-filter .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_departments_list .vd-filter-container .vd-filter .ce__title, .vd-filter-container .vd-filter .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_divisions_list .vd-filter-container .vd-filter .ce__title, .vd-filter-container .vd-filter .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_persons_list .vd-filter-container .vd-filter .ce__title, .vd-filter-container .vd-filter .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--vd_job_form, .vd-filter-container .vd-filter .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .vd-filter-container .vd-filter .ce--vd_downloads .vd-wrapper, .ce--vd_downloads .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce--vd_download .ce__title, .ce--vd_download .vd-filter-container .vd-filter .ce__title, .vd-filter-container .vd-filter .ce--vd_download .ce__content, .ce--vd_download .vd-filter-container .vd-filter .ce__content, .vd-filter-container .vd-filter .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_menu_teaser .vd-filter-container .vd-filter .vd-wrapper, .vd-filter-container .vd-filter .ce.ce--vd_news_carousel > .vd-wrapper {
    padding-left: 0;
    padding-right: 0; }
  .vd-filter-container .vd-filter__select-box * {
    font-size: 18px !important;
    font-size: 1.125rem !important;
    font-weight: 400 !important; }
  .vd-filter-container .vd-filter__select-box .control-label {
    margin-bottom: 10px;
    color: #000 !important; }
  .vd-filter-container .vd-filter__select-box .input {
    border: none !important; }
  .vd-filter-container .vd-filter__select-box select {
    background-color: #fff;
    border: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.416' height='22.75' viewBox='0 0 17.416 22.75'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H9v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(124.916 -9) rotate(90)' fill='%23005d7d'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center; }
  .vd-filter-container .vd-filter-button--text {
    line-height: 33px !important;
    font-size: 18px !important;
    font-size: 1.125rem !important;
    text-decoration: underline;
    background-color: transparent !important;
    color: #015D7D !important; }

.vd-filter-container.status--closed .vd-filter {
  display: none; }

.vd-filter-container.status--open .vd-filter {
  display: block;
  -webkit-animation-name: filterSlideDown;
          animation-name: filterSlideDown;
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
  -webkit-animation-direction: normal;
          animation-direction: normal; }

@-webkit-keyframes filterSlideDown {
  from {
    opacity: 0;
    height: 0; }
  to {
    height: auto;
    opacity: 1; } }

@keyframes filterSlideDown {
  from {
    opacity: 0;
    height: 0; }
  to {
    height: auto;
    opacity: 1; } }

.vd-filter-button {
  position: relative;
  display: inline-block;
  cursor: pointer; }
  .vd-filter-button--icon {
    padding-left: 50px; }
    .vd-filter-button--icon:before {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 50px;
      z-index: 1;
      content: '';
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20id%3D%22filter%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22m16%20133.612h260.513c7.186%2029.034%2033.45%2050.627%2064.673%2050.627s57.487-21.593%2064.673-50.627h90.141c8.836%200%2016-7.164%2016-16s-7.164-16-16-16h-90.142c-7.185-29.034-33.449-50.628-64.673-50.628s-57.488%2021.594-64.673%2050.628h-260.512c-8.836%200-16%207.164-16%2016s7.164%2016%2016%2016zm325.186-50.628c19.094%200%2034.628%2015.534%2034.628%2034.627%200%2019.094-15.534%2034.628-34.628%2034.628s-34.628-15.534-34.628-34.628c0-19.093%2015.534-34.627%2034.628-34.627zm-325.186%20189.016h90.142c7.186%2029.034%2033.449%2050.627%2064.673%2050.627s57.487-21.593%2064.673-50.627h260.512c8.836%200%2016-7.164%2016-16s-7.164-16-16-16h-260.513c-7.186-29.034-33.449-50.628-64.673-50.628s-57.487%2021.594-64.673%2050.628h-90.141c-8.836%200-16%207.164-16%2016s7.163%2016%2016%2016zm154.814-50.628c19.094%200%2034.628%2015.534%2034.628%2034.628%200%2019.093-15.534%2034.627-34.628%2034.627s-34.628-15.534-34.628-34.627c0-19.094%2015.534-34.628%2034.628-34.628zm325.186%20157.016h-90.142c-7.186-29.034-33.449-50.628-64.673-50.628s-57.487%2021.594-64.673%2050.628h-260.512c-8.836%200-16%207.164-16%2016s7.164%2016%2016%2016h260.513c7.186%2029.034%2033.449%2050.628%2064.673%2050.628s57.487-21.594%2064.673-50.628h90.141c8.836%200%2016-7.164%2016-16s-7.163-16-16-16zm-154.814%2050.628c-19.094%200-34.628-15.534-34.628-34.628s15.534-34.628%2034.628-34.628%2034.628%2015.534%2034.628%2034.628-15.534%2034.628-34.628%2034.628z%22%2F%3E%3C%2Fsvg%3E");
      background-size: 80% 80%;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 24px 24px; }

.vd-list--teaser {
  background-color: #efefef;
  padding: 48px 0; }
  .vd-list--teaser .vd-teaser {
    background-color: white;
    margin-top: 16px;
    margin-bottom: 32px;
    padding: 24px; }
    .vd-list--teaser .vd-teaser h2 {
      font-size: 30px;
      font-size: 1.875rem;
      margin: 0; }
    .vd-list--teaser .vd-teaser__title .meta {
      padding-top: 16px; }
      .vd-list--teaser .vd-teaser__title .meta:before, .vd-list--teaser .vd-teaser__title .meta:after, .vd-list--teaser .vd-teaser__title .meta::before, .vd-list--teaser .vd-teaser__title .meta::after {
        content: "";
        display: block; }
      .vd-list--teaser .vd-teaser__title .meta:after, .vd-list--teaser .vd-teaser__title .meta::after {
        clear: both; }
      .vd-list--teaser .vd-teaser__title .meta__date_location {
        float: left;
        width: 50%; }
      .vd-list--teaser .vd-teaser__title .meta__type {
        float: left;
        width: 50%;
        text-align: right;
        font-weight: 600; }
      .vd-list--teaser .vd-teaser__title .meta date {
        font-weight: 600; }
    .vd-list--teaser .vd-teaser__content {
      padding-top: 24px; }
    .vd-list--teaser .vd-teaser__cta {
      text-align: right; }

@media only screen and (min-width: 992px) {
  .vd-list--events h2,
  .vd-list--events h3,
  .vd-list--events .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .vd-list--events legend {
    width: calc(100% - 230px);
    float: left; } }

.vd-list--events .vd-teaser__title {
  display: inline-block;
  width: 100%;
  padding-bottom: 24px; }
  .vd-list--events .vd-teaser__title .meta {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.9px;
    color: #000;
    font-weight: 500 !important; }
    @media only screen and (min-width: 992px) {
      .vd-list--events .vd-teaser__title .meta {
        width: 230px;
        float: left; } }
    .vd-list--events .vd-teaser__title .meta__date_location {
      width: 100%;
      display: none; }
      .vd-list--events .vd-teaser__title .meta__date_location date {
        font-weight: 500 !important; }
      .vd-list--events .vd-teaser__title .meta__date_location span {
        display: block; }
      @media only screen and (min-width: 992px) {
        .vd-list--events .vd-teaser__title .meta__date_location {
          text-align: right; } }
    .vd-list--events .vd-teaser__title .meta__type {
      width: 100%;
      text-align: left;
      color: #015D7D; }
      @media only screen and (min-width: 992px) {
        .vd-list--events .vd-teaser__title .meta__type {
          text-align: right; } }

.vd-list--events .vd-teaser__content {
  padding-top: 0px !important; }

.vd-section--header.fixed {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out; }

.vd-section--header .brand {
  width: 178px;
  height: auto; }
  .vd-section--header .brand a {
    display: block;
    color: #000000;
    position: relative;
    top: -15px;
    z-index: 9; }
  .vd-section--header .brand svg {
    min-width: 120px;
    overflow: visible; }
    @media only screen and (max-width: 991px) {
      .vd-section--header .brand svg {
        max-width: 120px; } }

.vd-section--header .header__bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media only screen and (max-width: 1199px) {
    .vd-section--header .header__bottom {
      margin-right: auto;
      margin-left: auto;
      max-width: 960px; } }
  @media only screen and (max-width: 991px) {
    .vd-section--header .header__bottom {
      max-width: 720px; } }
  @media only screen and (max-width: 767px) {
    .vd-section--header .header__bottom {
      max-width: 540px; } }

.vd-section--header .header__navigation {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto; }
  @media only screen and (max-width: 991px) {
    .vd-section--header .header__navigation {
      top: 10px; } }

.vd-section--header #navigation-main {
  position: fixed;
  height: auto;
  background: #fff;
  width: 100%;
  top: 128px;
  left: 0px;
  z-index: 12; }
  @media only screen and (max-width: 991px) {
    .vd-section--header #navigation-main {
      -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.35);
              box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.35);
      -webkit-transition: -webkit-transform 300ms ease-in-out;
      transition: -webkit-transform 300ms ease-in-out;
      transition: transform 300ms ease-in-out;
      transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out; } }
  @media only screen and (min-width: 992px) {
    .vd-section--header #navigation-main {
      top: -14px;
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }
  .vd-section--header #navigation-main > ul {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (min-width: 992px) {
      .vd-section--header #navigation-main > ul {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; } }
    @media only screen and (min-width: 992px) {
      .vd-section--header #navigation-main > ul.vd-menu--main > li {
        margin-top: 0px;
        margin-bottom: 0px; } }
    @media only screen and (max-width: 1199px) {
      .vd-section--header #navigation-main > ul.vd-menu--main > li {
        margin-right: 1.5625rem; } }
    .vd-section--header #navigation-main > ul:not(.vd-submenu) > li > .vd-menu__button,
    .vd-section--header #navigation-main > ul:not(.vd-submenu) > li > a {
      font-size: 18px;
      font-size: 1.125rem;
      font-weight: 600; }
    .vd-section--header #navigation-main > ul:not(.vd-submenu) > li.state--active > .vd-menu__button,
    .vd-section--header #navigation-main > ul:not(.vd-submenu) > li.state--active > a {
      position: relative; }
      .vd-section--header #navigation-main > ul:not(.vd-submenu) > li.state--active > .vd-menu__button:after,
      .vd-section--header #navigation-main > ul:not(.vd-submenu) > li.state--active > a:after {
        content: '';
        background-color: #36B0A5;
        height: 10px;
        width: 100%;
        display: inline-block;
        position: absolute;
        bottom: -5px;
        left: 0px; }
    @media only screen and (max-width: 991px) {
      .vd-section--header #navigation-main > ul:not(.vd-submenu) > li:last-child.state--active {
        padding-bottom: 2.5rem; } }
  @media only screen and (max-width: 991px) {
    .vd-section--header #navigation-main.open_menu {
      -webkit-transform: translateY(0%);
              transform: translateY(0%);
      -webkit-transition: -webkit-transform 300ms ease-in-out;
      transition: -webkit-transform 300ms ease-in-out;
      transition: transform 300ms ease-in-out;
      transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out; } }
  .vd-section--header #navigation-main.open_menu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

.vd-section--header .nav-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  border: none;
  background-color: transparent;
  height: 22px;
  width: 25px;
  margin-top: -23px;
  background-image: url("data:image/svg+xml,%3Csvg id='loupe' xmlns='http://www.w3.org/2000/svg' width='17.23' height='17.23' viewBox='0 0 17.23 17.23'%3E%3Cg id='Gruppe_3135' data-name='Gruppe 3135'%3E%3Cpath id='Pfad_1858' data-name='Pfad 1858' d='M9.38,0A7.846,7.846,0,0,0,3.287,12.8L0,16.082,1.149,17.23l3.287-3.287A7.849,7.849,0,1,0,9.38,0Zm0,14.077a6.226,6.226,0,1,1,6.226-6.226A6.234,6.234,0,0,1,9.38,14.077Z' fill='%23015d7d'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2; }
  @media only screen and (min-width: 992px) {
    .vd-section--header .nav-search {
      margin-top: 0px; } }
  .vd-section--header .nav-search:hover svg path {
    stroke: #00848d; }

.vd-section--header .nav-toggle {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-left: 1.25rem;
  position: relative;
  top: -14px; }
  @media only screen and (min-width: 992px) {
    .vd-section--header .nav-toggle {
      display: none; } }

.vd-section--header .link_mitgliederportal {
  margin-top: -23px;
  margin-right: 20px; }
  @media only screen and (min-width: 992px) {
    .vd-section--header .link_mitgliederportal {
      display: none; } }
  .vd-section--header .link_mitgliederportal svg {
    height: 20px;
    width: 20px; }
  .vd-section--header .link_mitgliederportal .label {
    display: none; }

.vd-section--header .vd-nav--meta {
  width: 100%; }
  .vd-section--header .vd-nav--meta ul {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-flow: row-reverse;
        flex-flow: row-reverse; }
    .vd-section--header .vd-nav--meta ul > * a {
      color: #015D7D;
      font-size: 18px;
      font-size: 1.125rem;
      text-decoration: none;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-weight: 600; }
      .vd-section--header .vd-nav--meta ul > * a .icon {
        display: inline-block;
        width: 22px;
        margin-right: 0.375rem;
        margin-left: auto;
        text-align: center;
        margin-top: -4px; }
      .vd-section--header .vd-nav--meta ul > * a:hover, .vd-section--header .vd-nav--meta ul > * a:focus {
        text-decoration: underline; }

@media only screen and (min-width: 992px) {
  .vd-section--header #menu-mega {
    margin-right: 50px; } }

.vd-section--header .header__navigation--buttons {
  position: absolute; }
  @media only screen and (max-width: 991px) {
    .vd-section--header .header__navigation--buttons {
      top: 70px;
      margin-left: -40px; } }
  @media only screen and (min-width: 992px) {
    .vd-section--header .header__navigation--buttons {
      position: absolute;
      display: inline-block;
      width: 100%;
      height: 30px;
      left: 0;
      top: 37px; }
      .vd-section--header .header__navigation--buttons .nav-search {
        float: right; } }
    @media only screen and (min-width: 992px) and (min-width: 992px) {
      .vd-section--header .header__navigation--buttons .nav-search {
        margin-top: 0px;
        margin-right: 50px; } }

body.template--startpage .vd-section--header {
  width: 100%;
  background-color: #E5EEF2; }
  body.template--startpage .vd-section--header .vd-wrapper .vd-wrapper__background {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--c-bg-base);
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 2.5rem; }
    @media only screen and (min-width: 768px) {
      body.template--startpage .vd-section--header .vd-wrapper .vd-wrapper__background {
        padding-right: 3.125rem;
        padding-left: calc(3.125rem / 2); } }
  body.template--startpage .vd-section--header .header__top {
    height: 33px; }
    @media only screen and (min-width: 992px) {
      body.template--startpage .vd-section--header .header__top {
        height: 90px; } }
    @media only screen and (min-width: 992px) {
      body.template--startpage .vd-section--header .header__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        -ms-flex-line-pack: end;
            align-content: flex-end;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse; } }
    body.template--startpage .vd-section--header .header__top .vd-nav {
      display: none; }
      @media only screen and (min-width: 992px) {
        body.template--startpage .vd-section--header .header__top .vd-nav {
          display: block; } }
  @media only screen and (min-width: 992px) {
    body.template--startpage .vd-section--header .header__navigation--buttons {
      right: 0; } }

body:not(.template--startpage) .vd-section--header {
  padding-top: 52px;
  padding-bottom: 52px; }
  body:not(.template--startpage) .vd-section--header .vd-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  body:not(.template--startpage) .vd-section--header .brand {
    width: 120px;
    height: auto; }
    body:not(.template--startpage) .vd-section--header .brand a {
      top: 0; }
  body:not(.template--startpage) .vd-section--header .vd-nav--meta ul > * a .icon {
    margin-top: 5px; }
    body:not(.template--startpage) .vd-section--header .vd-nav--meta ul > * a .icon svg {
      width: 22px;
      height: 22px; }
  body:not(.template--startpage) .vd-section--header .nav-search {
    margin-top: -20px;
    margin-right: 2.5rem; }
    @media only screen and (min-width: 992px) {
      body:not(.template--startpage) .vd-section--header .nav-search {
        margin-top: 8px; } }
    @media only screen and (max-width: 1199px) {
      body:not(.template--startpage) .vd-section--header .nav-search {
        margin-right: 1.5625rem; } }
  body:not(.template--startpage) .vd-section--header #navigation-header-meta li {
    width: 25px;
    overflow: hidden; }
    @media only screen and (max-width: 991px) {
      body:not(.template--startpage) .vd-section--header #navigation-header-meta li {
        margin-top: -27px;
        margin-right: 10px; } }
    body:not(.template--startpage) .vd-section--header #navigation-header-meta li span.label {
      text-indent: -1000px; }
  body:not(.template--startpage) .vd-section--header .vd-nav--meta {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    top: -5px;
    position: relative;
    right: 20px; }
    @media only screen and (max-width: 991px) {
      body:not(.template--startpage) .vd-section--header .vd-nav--meta {
        display: none; } }
  body:not(.template--startpage) .vd-section--header #navigation-main > ul {
    margin: 0;
    top: 17px;
    position: relative; }
    @media only screen and (max-width: 991px) {
      body:not(.template--startpage) .vd-section--header #navigation-main > ul {
        padding-bottom: 30px; } }

@media only screen and (min-width: 992px) {
  body:not(.template--startpage) .vd-section #menu-mega {
    margin-right: 100px;
    top: 32px; } }

body:not(.template--startpage) .vd-section .header__navigation--buttons {
  position: absolute; }
  @media only screen and (max-width: 991px) {
    body:not(.template--startpage) .vd-section .header__navigation--buttons {
      top: 32px; } }
  @media only screen and (min-width: 992px) {
    body:not(.template--startpage) .vd-section .header__navigation--buttons {
      position: absolute;
      display: inline-block;
      width: 100%;
      height: 30px;
      right: 0;
      top: 37px; } }
  body:not(.template--startpage) .vd-section .header__navigation--buttons .nav-search {
    float: right; }
    @media only screen and (max-width: 767px) {
      body:not(.template--startpage) .vd-section .header__navigation--buttons .nav-search {
        margin-top: -23px !important;
        margin-right: 0px !important; } }
    @media only screen and (min-width: 992px) {
      body:not(.template--startpage) .vd-section .header__navigation--buttons .nav-search {
        margin-top: 0px !important;
        margin-right: 0px !important; } }

/*
.vd-section--header.mobile.open {
  visibility: visible;
  left: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.vd-section--header.mobile.open #navigation-main {
    transform: translateY(0%);
    
    .vd-menu {
        width: 320px;
    }
    
}
*/
body.template--startpage .vd-section--hero {
  background-color: #E5EEF2;
  padding-bottom: 5.625rem; }
  body.template--startpage .vd-section--hero .ce__content {
    background-color: #fff;
    position: relative;
    z-index: 3;
    overflow: visible; }
    body.template--startpage .vd-section--hero .ce__content:after {
      content: '';
      height: 80%;
      width: 79%;
      display: inline-block;
      position: absolute;
      z-index: -1;
      right: -11px;
      bottom: -11px;
      background-position: right bottom;
      background-repeat: no-repeat;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='476' height='392' viewBox='0 0 476 392'%3E%3Cg id='puenktchen' transform='translate(23131 14468)'%3E%3Cg id='Gruppe_4124' data-name='Gruppe 4124'%3E%3Ccircle id='Ellipse_152' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-2' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-2' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-2' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-2' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-2' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-2' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-2' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-2' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-2' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-2' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-3' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-3' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-3' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-3' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-3' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-3' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-3' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-3' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-3' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-3' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-4' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-4' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-4' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-4' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-4' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-4' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-4' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-4' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-4' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-4' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4128' data-name='Gruppe 4128' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-5' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-5' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-5' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-5' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-5' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-5' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-5' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-5' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-5' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-5' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-6' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-6' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-6' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-6' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-6' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-6' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-6' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-6' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-6' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-6' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-7' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-7' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-7' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-7' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-7' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-7' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-7' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-7' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-7' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-7' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-8' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-8' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-8' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-8' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-8' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-8' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-8' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-8' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-8' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-8' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4126' data-name='Gruppe 4126' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-9' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-9' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-9' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-9' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-9' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-9' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-9' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-9' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-9' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-9' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-10' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-10' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-10' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-10' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-10' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-10' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-10' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-10' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-10' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-10' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-11' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-11' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-11' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-11' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-11' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-11' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-11' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-11' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-11' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-11' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-12' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-12' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-12' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-12' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-12' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-12' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-12' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-12' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-12' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-12' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4129' data-name='Gruppe 4129' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-13' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-13' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-13' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-13' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-13' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-13' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-13' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-13' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-13' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-13' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-14' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-14' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-14' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-14' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-14' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-14' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-14' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-14' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-14' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-14' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-15' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-15' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-15' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-15' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-15' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-15' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-15' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-15' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-15' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-15' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-16' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-16' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-16' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-16' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-16' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-16' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-16' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-16' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-16' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-16' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4133' data-name='Gruppe 4133' transform='translate(-84)'%3E%3Ccircle id='Ellipse_152-17' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-17' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-17' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-17' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-17' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-17' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-17' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-17' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-17' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-17' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-18' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-18' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-18' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-18' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-18' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-18' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-18' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-18' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-18' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-18' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-19' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-19' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-19' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-19' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-19' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-19' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-19' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-19' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-19' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-19' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-20' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-20' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-20' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-20' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-20' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-20' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-20' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-20' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-20' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-20' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4134' data-name='Gruppe 4134' transform='translate(-96)'%3E%3Ccircle id='Ellipse_152-21' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-21' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-21' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-21' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-21' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-21' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-21' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-21' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-21' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-21' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-22' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-22' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-22' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-22' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-22' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-22' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-22' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-22' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-22' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-22' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-23' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-23' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-23' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-23' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-23' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-23' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-23' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-23' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-23' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-23' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-24' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-24' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-24' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-24' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-24' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-24' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-24' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-24' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-24' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-24' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4135' data-name='Gruppe 4135' transform='translate(-108)'%3E%3Ccircle id='Ellipse_152-25' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-25' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-25' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-25' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-25' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-25' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-25' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-25' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-25' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-25' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-26' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-26' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-26' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-26' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-26' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-26' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-26' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-26' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-26' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-26' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-27' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-27' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-27' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-27' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-27' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-27' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-27' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-27' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-27' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-27' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-28' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-28' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-28' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-28' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-28' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-28' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-28' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-28' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-28' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-28' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4136' data-name='Gruppe 4136' transform='translate(-120)'%3E%3Ccircle id='Ellipse_152-29' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-29' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-29' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-29' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-29' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-29' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-29' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-29' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-29' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-29' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-30' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-30' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-30' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-30' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-30' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-30' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-30' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-30' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-30' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-30' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-31' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-31' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-31' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-31' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-31' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-31' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-31' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-31' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-31' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-31' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-32' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-32' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-32' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-32' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-32' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-32' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-32' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-32' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-32' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-32' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4137' data-name='Gruppe 4137' transform='translate(-132)'%3E%3Ccircle id='Ellipse_152-33' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-33' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-33' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-33' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-33' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-33' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-33' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-33' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-33' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-33' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-34' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-34' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-34' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-34' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-34' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-34' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-34' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-34' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-34' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-34' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-35' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-35' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-35' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-35' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-35' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-35' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-35' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4138' data-name='Gruppe 4138' transform='translate(-144)'%3E%3Ccircle id='Ellipse_152-35' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-36' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-35' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-36' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-35' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-36' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-36' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-36' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-36' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-36' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-36' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-37' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-36' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-37' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-36' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-37' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-37' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-37' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-37' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-37' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-38' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-38' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-38' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-38' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-38' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-38' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-38' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4139' data-name='Gruppe 4139' transform='translate(-156)'%3E%3Ccircle id='Ellipse_152-37' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-39' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-37' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-39' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-37' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-39' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-39' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-39' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-39' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-39' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-38' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-40' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-38' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-40' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-38' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-40' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-40' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-40' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-40' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-40' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-41' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-41' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-41' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-41' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-41' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-41' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-41' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4140' data-name='Gruppe 4140' transform='translate(-168)'%3E%3Ccircle id='Ellipse_152-39' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-42' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-39' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-42' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-39' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-42' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-42' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-42' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-42' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-42' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-40' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-43' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-40' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-43' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-40' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-43' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-43' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-43' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-43' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-43' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-44' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-44' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-44' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-44' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-44' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-44' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-44' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4141' data-name='Gruppe 4141' transform='translate(-180)'%3E%3Ccircle id='Ellipse_152-41' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-45' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-41' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-45' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-41' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-45' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-45' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-45' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-45' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-45' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-42' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-46' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-42' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-46' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-42' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-46' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-46' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-46' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-46' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-46' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-47' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-47' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-47' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-47' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-47' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-47' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-47' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4142' data-name='Gruppe 4142' transform='translate(-192)'%3E%3Ccircle id='Ellipse_152-43' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-48' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-43' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-48' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-43' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-48' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-48' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-48' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-48' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-48' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-44' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-49' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-44' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-49' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-44' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-49' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-49' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-49' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-49' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-49' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-50' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-50' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-50' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-50' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-50' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-50' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-50' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4143' data-name='Gruppe 4143' transform='translate(-204)'%3E%3Ccircle id='Ellipse_152-45' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-51' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-45' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-51' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-45' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-51' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-51' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-51' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-51' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-51' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-46' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-52' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-46' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-52' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-46' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-52' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-52' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-52' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-52' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-52' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-53' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-53' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-53' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-53' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-53' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-53' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-53' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4144' data-name='Gruppe 4144' transform='translate(-216)'%3E%3Ccircle id='Ellipse_152-47' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-54' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-47' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-54' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-47' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-54' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-54' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-54' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-54' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-54' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-48' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-55' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-48' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-55' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-48' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-55' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-55' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-55' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-55' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-55' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-56' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-56' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-56' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-56' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-56' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-56' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-56' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4145' data-name='Gruppe 4145' transform='translate(-228)'%3E%3Ccircle id='Ellipse_152-49' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-57' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-49' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-57' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-49' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-57' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-57' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-57' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-57' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-57' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-50' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-58' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-50' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-58' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-50' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-58' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-58' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-58' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-58' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-58' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-59' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-59' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-59' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-59' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-59' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-59' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-59' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4146' data-name='Gruppe 4146' transform='translate(-240)'%3E%3Ccircle id='Ellipse_152-51' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-60' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-51' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-60' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-51' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-60' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-60' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-60' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-60' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-60' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-52' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-61' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-52' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-61' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-52' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-61' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-61' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-61' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-61' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-61' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-62' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-62' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-62' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-62' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-62' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-62' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-62' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4147' data-name='Gruppe 4147' transform='translate(-252)'%3E%3Ccircle id='Ellipse_152-53' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-63' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-53' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-63' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-53' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-63' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-63' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-63' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-63' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-63' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-54' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-64' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-54' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-64' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-54' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-64' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-64' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-64' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-64' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-64' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-65' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-65' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-65' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-65' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-65' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-65' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-65' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4148' data-name='Gruppe 4148' transform='translate(-264)'%3E%3Ccircle id='Ellipse_152-55' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-66' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-55' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-66' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-55' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-66' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-66' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-66' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-66' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-66' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-56' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-67' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-56' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-67' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-56' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-67' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-67' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-67' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-67' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-67' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-68' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-68' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-68' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-68' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-68' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-68' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-68' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4149' data-name='Gruppe 4149' transform='translate(-276)'%3E%3Ccircle id='Ellipse_152-57' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-69' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-57' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-69' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-57' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-69' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-69' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-69' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-69' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-69' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-58' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-70' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-58' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-70' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-58' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-70' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-70' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-70' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-70' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-70' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-71' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-71' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-71' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-71' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-71' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-71' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-71' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4150' data-name='Gruppe 4150' transform='translate(-288)'%3E%3Ccircle id='Ellipse_152-59' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-72' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-59' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-72' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-59' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-72' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-72' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-72' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-72' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-72' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-60' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-73' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-60' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-73' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-60' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-73' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-73' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-73' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-73' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-73' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-74' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-74' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-74' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-74' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-74' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-74' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-74' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4151' data-name='Gruppe 4151' transform='translate(-300)'%3E%3Ccircle id='Ellipse_152-61' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-75' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-61' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-75' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-61' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-75' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-75' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-75' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-75' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-75' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-62' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-76' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-62' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-76' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-62' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-76' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-76' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-76' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-76' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-76' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-77' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-77' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-77' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-77' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-77' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-77' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-77' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4152' data-name='Gruppe 4152' transform='translate(-312)'%3E%3Ccircle id='Ellipse_152-63' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-78' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-63' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-78' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-63' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-78' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-78' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-78' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-78' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-78' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-64' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-79' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-64' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-79' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-64' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-79' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-79' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-79' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-79' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-79' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-80' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-80' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-80' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-80' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-80' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-80' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-80' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4153' data-name='Gruppe 4153' transform='translate(-324)'%3E%3Ccircle id='Ellipse_152-65' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-81' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-65' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-81' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-65' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-81' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-81' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-81' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-81' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-81' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-66' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-82' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-66' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-82' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-66' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-82' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-82' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-82' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-82' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-82' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-83' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-83' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-83' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-83' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-83' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-83' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-83' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4154' data-name='Gruppe 4154' transform='translate(-336)'%3E%3Ccircle id='Ellipse_152-67' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-84' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-67' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-84' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-67' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-84' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-84' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-84' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-84' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-84' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-68' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-85' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-68' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-85' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-68' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-85' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-85' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-85' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-85' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-85' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-86' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-86' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-86' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-86' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-86' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-86' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-86' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4155' data-name='Gruppe 4155' transform='translate(-348)'%3E%3Ccircle id='Ellipse_152-69' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-87' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-69' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-87' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-69' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-87' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-87' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-87' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-87' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-87' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-70' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-88' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-70' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-88' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-70' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-88' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-88' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-88' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-88' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-88' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-89' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-89' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-89' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-89' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-89' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-89' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-89' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4156' data-name='Gruppe 4156' transform='translate(-360)'%3E%3Ccircle id='Ellipse_152-71' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-90' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-71' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-90' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-71' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-90' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-90' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-90' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-90' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-90' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-72' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-91' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-72' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-91' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-72' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-91' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-91' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-91' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-91' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-91' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-92' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-92' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-92' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-92' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-92' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-92' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-92' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4123' data-name='Gruppe 4123'%3E%3Ccircle id='Ellipse_152-73' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-93' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-73' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-93' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-73' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-93' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-93' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-93' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-93' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-93' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-74' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-94' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-74' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-94' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-74' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-94' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-94' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-94' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-94' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-94' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-75' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-95' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-75' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-95' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-75' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-95' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-95' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-95' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-95' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-95' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-76' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-96' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-76' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-96' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-76' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-96' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-96' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-96' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-96' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-96' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4127' data-name='Gruppe 4127' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-77' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-97' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-77' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-97' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-77' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-97' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-97' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-97' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-97' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-97' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-78' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-98' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-78' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-98' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-78' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-98' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-98' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-98' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-98' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-98' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-79' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-99' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-79' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-99' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-79' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-99' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-99' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-99' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-99' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-99' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-80' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-100' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-80' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-100' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-80' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-100' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-100' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-100' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-100' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-100' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4125' data-name='Gruppe 4125' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-81' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-101' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-81' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-101' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-81' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-101' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-101' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-101' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-101' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-101' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-82' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-102' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-82' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-102' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-82' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-102' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-102' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-102' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-102' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-102' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-83' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-103' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-83' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-103' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-83' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-103' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-103' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-103' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-103' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-103' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-84' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-104' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-84' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-104' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-84' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-104' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-104' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-104' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-104' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-104' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4130' data-name='Gruppe 4130' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-85' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-105' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-85' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-105' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-85' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-105' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-105' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-105' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-105' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-105' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-86' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-106' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-86' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-106' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-86' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-106' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-106' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-106' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-106' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-106' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-87' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-107' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-87' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-107' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-87' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-107' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-107' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-107' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-107' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-107' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-88' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-108' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-88' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-108' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-88' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-108' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-108' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-108' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-108' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-108' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4131' data-name='Gruppe 4131' transform='translate(96)'%3E%3Cg id='Gruppe_4124-2' data-name='Gruppe 4124'%3E%3Ccircle id='Ellipse_152-89' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-109' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-89' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-109' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-89' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-109' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-109' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-109' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-109' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-109' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-90' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-110' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-90' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-110' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-90' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-110' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-110' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-110' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-110' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-110' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-91' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-111' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-91' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-111' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-91' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-111' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-111' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-111' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-111' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-111' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-92' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-112' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-92' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-112' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-92' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-112' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-112' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-112' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-112' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-112' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4128-2' data-name='Gruppe 4128' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-93' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-113' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-93' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-113' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-93' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-113' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-113' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-113' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-113' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-113' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-94' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-114' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-94' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-114' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-94' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-114' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-114' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-114' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-114' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-114' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-95' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-115' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-95' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-115' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-95' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-115' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-115' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-115' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-115' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-115' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-96' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-116' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-96' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-116' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-96' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-116' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-116' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-116' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-116' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-116' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4126-2' data-name='Gruppe 4126' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-97' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-117' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-97' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-117' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-97' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-117' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-117' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-117' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-117' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-117' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-98' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-118' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-98' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-118' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-98' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-118' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-118' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-118' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-118' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-118' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-99' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-119' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-99' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-119' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-99' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-119' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-119' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-119' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-119' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-119' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-100' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-120' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-100' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-120' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-100' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-120' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-120' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-120' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-120' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-120' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4129-2' data-name='Gruppe 4129' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-101' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-121' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-101' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-121' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-101' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-121' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-121' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-121' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-121' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-121' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-102' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-122' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-102' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-122' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-102' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-122' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-122' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-122' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-122' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-122' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-103' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-123' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-103' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-123' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-103' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-123' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-123' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-123' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-123' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-123' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-104' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-124' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-104' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-124' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-104' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-124' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-124' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-124' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-124' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-124' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4123-2' data-name='Gruppe 4123'%3E%3Ccircle id='Ellipse_152-105' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-125' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-105' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-125' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-105' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-125' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-125' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-125' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-125' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-125' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-106' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-126' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-106' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-126' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-106' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-126' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-126' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-126' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-126' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-126' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-107' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-127' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-107' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-127' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-107' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-127' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-127' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-127' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-127' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-127' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-108' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-128' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-108' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-128' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-108' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-128' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-128' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-128' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-128' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-128' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4127-2' data-name='Gruppe 4127' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-109' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-129' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-109' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-129' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-109' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-129' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-129' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-129' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-129' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-129' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-110' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-130' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-110' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-130' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-110' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-130' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-130' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-130' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-130' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-130' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-111' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-131' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-111' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-131' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-111' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-131' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-131' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-131' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-131' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-131' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-112' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-132' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-112' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-132' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-112' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-132' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-132' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-132' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-132' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-132' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4125-2' data-name='Gruppe 4125' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-113' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-133' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-113' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-133' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-113' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-133' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-133' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-133' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-133' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-133' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-114' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-134' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-114' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-134' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-114' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-134' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-134' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-134' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-134' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-134' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-115' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-135' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-115' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-135' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-115' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-135' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-135' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-135' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-135' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-135' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-116' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-136' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-116' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-136' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-116' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-136' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-136' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-136' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-136' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-136' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4130-2' data-name='Gruppe 4130' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-117' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-137' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-117' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-137' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-117' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-137' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-137' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-137' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-137' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-137' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-118' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-138' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-118' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-138' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-118' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-138' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-138' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-138' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-138' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-138' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-119' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-139' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-119' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-139' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-119' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-139' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-139' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-139' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-139' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-139' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-120' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-140' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-120' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-140' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-120' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-140' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-140' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-140' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-140' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-140' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A"); }
      @media only screen and (min-width: 992px) {
        body.template--startpage .vd-section--hero .ce__content:after {
          height: 100%;
          width: 100%;
          right: -33px;
          bottom: -33px; } }
    body.template--startpage .vd-section--hero .ce__content > .news {
      background-color: #fff;
      position: relative;
      z-index: 33;
      overflow: visible;
      padding-bottom: 30px; }
      @media only screen and (min-width: 992px) {
        body.template--startpage .vd-section--hero .ce__content > .news .container, body.template--startpage .vd-section--hero .ce__content > .news .vd-breadcrumb, body.template--startpage .vd-section--hero .ce__content > .news .vd-breadcrumb .vd-nav, .vd-breadcrumb body.template--startpage .vd-section--hero .ce__content > .news .vd-nav, body.template--startpage .vd-section--hero .ce__content > .news #tx-solr-search, body.template--startpage .vd-section--hero .ce__content > .news .vd-filter-container, body.template--startpage .vd-section--hero .ce__content > .news .vd-section--header .header__navigation--buttons, .vd-section--header body.template--startpage .vd-section--hero .ce__content > .news .header__navigation--buttons, body.template--startpage .vd-section--hero .ce__content > .news body:not(.template--startpage) .vd-section .header__navigation--buttons, body:not(.template--startpage) .vd-section body.template--startpage .vd-section--hero .ce__content > .news .header__navigation--buttons, body.template--startpage .vd-section--hero .ce__content > .news .vd-wrapper, body.template--startpage .vd-section--hero .ce__content > .news .content-element.gutachter-list, body.template--startpage .vd-section--hero .ce__content > .news .vd-section--main .vd-message, .vd-section--main body.template--startpage .vd-section--hero .ce__content > .news .vd-message, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_newsletter_registration, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_text_teaser body.template--startpage .vd-section--hero .ce__content > .news .ce__title, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_teaser body.template--startpage .vd-section--hero .ce__content > .news .single-news-teaser, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list body.template--startpage .vd-section--hero .ce__content > .news .ce__title, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list body.template--startpage .vd-section--hero .ce__content > .news .icon, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list body.template--startpage .vd-section--hero .ce__content > .news .vd-actions, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_news_list .news__cta, .ce.ce--vd_news_list body.template--startpage .vd-section--hero .ce__content > .news .news__cta, body.template--startpage .vd-section--hero .ce__content > .news .ce--vd_accordion .ce__title, .ce--vd_accordion body.template--startpage .vd-section--hero .ce__content > .news .ce__title,
        body.template--startpage .vd-section--hero .ce__content > .news .ce--vd_downloads .ce__title, .ce--vd_downloads body.template--startpage .vd-section--hero .ce__content > .news .ce__title, body.template--startpage .vd-section--hero .ce--vd_accordion .ce__content > .news .ce__bodytext, .ce--vd_accordion body.template--startpage .vd-section--hero .ce__content > .news .ce__bodytext,
        body.template--startpage .vd-section--hero .ce--vd_downloads .ce__content > .news .ce__bodytext, .ce--vd_downloads body.template--startpage .vd-section--hero .ce__content > .news .ce__bodytext, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel body.template--startpage .vd-section--hero .ce__content > .news .ce__content > .ce__bodytext, body.template--startpage .vd-section--hero .ce__content > .news .vd-slick-dots, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_text_images .ce__title, .ce.ce--vd_text_images body.template--startpage .vd-section--hero .ce__content > .news .ce__title, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_link_list, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_quotation, body.template--startpage .vd-section--hero .ce__content > .news .ce--vd_pages_teaser .ce__title, .ce--vd_pages_teaser body.template--startpage .vd-section--hero .ce__content > .news .ce__title, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_info_box, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_list_offers .ce__title, .ce.ce--vd_list_offers body.template--startpage .vd-section--hero .ce__content > .news .ce__title, body.template--startpage .vd-section--hero .ce__content > .news .content-element-directories .text, .content-element-directories body.template--startpage .vd-section--hero .ce__content > .news .text, body.template--startpage .vd-section--hero .ce__content > .news .content-element-directories #directories_filter__form, .content-element-directories body.template--startpage .vd-section--hero .ce__content > .news #directories_filter__form, body.template--startpage .vd-section--hero .ce__content > .news .content-element-directories .directories-results, .content-element-directories body.template--startpage .vd-section--hero .ce__content > .news .directories-results, body.template--startpage .vd-section--hero .ce__content > .news #tx-solr-search .vd-wrapper, #tx-solr-search body.template--startpage .vd-section--hero .ce__content > .news .vd-wrapper, body.template--startpage .vd-section--hero .ce__content > .news main > .ce.ce--vd_event_teaser .single-event-teaser, main > .ce.ce--vd_event_teaser body.template--startpage .vd-section--hero .ce__content > .news .single-event-teaser, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_departments_list body.template--startpage .vd-section--hero .ce__content > .news .ce__title, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_divisions_list body.template--startpage .vd-section--hero .ce__content > .news .ce__title, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_persons_list body.template--startpage .vd-section--hero .ce__content > .news .ce__title, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_job_form, body.template--startpage .vd-section--hero .ce__content > .news .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, body.template--startpage .vd-section--hero .ce__content > .news .ce--vd_download .ce__title, .ce--vd_download body.template--startpage .vd-section--hero .ce__content > .news .ce__title, body.template--startpage .vd-section--hero .ce__content > .news .ce--vd_download .ce__content, .ce--vd_download body.template--startpage .vd-section--hero .ce__content > .news .ce__content {
          padding-left: 3.125rem;
          padding-right: 3.125rem; } }
      body.template--startpage .vd-section--hero .ce__content > .news .ce__title h1,
      body.template--startpage .vd-section--hero .ce__content > .news .ce__title h2,
      body.template--startpage .vd-section--hero .ce__content > .news .ce__title .h1,
      body.template--startpage .vd-section--hero .ce__content > .news .ce__title .h2 {
        font-size: 40px;
        font-size: 2.5rem;
        line-height: 1.2;
        font-weight: 700;
        color: #015D7D;
        margin-top: 0.9375rem;
        -ms-hyphens: auto;
            hyphens: auto;
        -moz-hyphens: auto;
        -webkit-hyphens: auto; }
      body.template--startpage .vd-section--hero .ce__content > .news .vd-slide__image img {
        max-height: 450px;
        -o-object-fit: cover;
           object-fit: cover; }
    @media only screen and (max-width: 991px) {
      body.template--startpage .vd-section--hero .ce__content .vd-slide__content {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        -webkit-box-flex: 0 !important;
            -ms-flex: 0 0 100% !important;
                flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-top: 2.5rem;
        margin-bottom: 1.25rem; }
      body.template--startpage .vd-section--hero .ce__content .vd-slide__image {
        -webkit-box-flex: 0 !important;
            -ms-flex: 0 0 100% !important;
                flex: 0 0 100% !important;
        max-width: 100% !important;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; } }

.vd-section--hero.version--extra-large, .vd-section--hero.version--illustration {
  position: relative;
  height: 100%; }
  .vd-section--hero.version--extra-large .hero, .vd-section--hero.version--illustration .hero {
    position: fixed;
    width: 100%;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    display: grid;
    grid-template-rows: repeat(auto-fill, minmax(100px, 100vh));
    grid-template-columns: 100%;
    height: 100%; }
    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
      .vd-section--hero.version--extra-large .hero, .vd-section--hero.version--illustration .hero {
        position: relative; } }
    .vd-section--hero.version--extra-large .hero .brand, .vd-section--hero.version--illustration .hero .brand {
      width: 100%;
      position: absolute;
      top: 20px;
      z-index: 2; }
      .vd-section--hero.version--extra-large .hero .brand__logo, .vd-section--hero.version--illustration .hero .brand__logo {
        width: 70px;
        height: auto; }
        .vd-section--hero.version--extra-large .hero .brand__logo.colorize--bright svg path, .vd-section--hero.version--illustration .hero .brand__logo.colorize--bright svg path {
          fill: #ffffff; }
        .vd-section--hero.version--extra-large .hero .brand__logo.colorize--dark svg path, .vd-section--hero.version--illustration .hero .brand__logo.colorize--dark svg path {
          fill: #000000; }
        .vd-section--hero.version--extra-large .hero .brand__logo.colorize--red svg path, .vd-section--hero.version--illustration .hero .brand__logo.colorize--red svg path {
          fill: #ea534e; }
        .vd-section--hero.version--extra-large .hero .brand__logo.colorize--green svg path, .vd-section--hero.version--illustration .hero .brand__logo.colorize--green svg path {
          fill: #00848d; }
    .vd-section--hero.version--extra-large .hero__front, .vd-section--hero.version--illustration .hero__front {
      grid-row: 2;
      grid-column: 1; }
      .vd-section--hero.version--extra-large .hero__front .textbox__wrapper, .vd-section--hero.version--illustration .hero__front .textbox__wrapper {
        padding-top: 1.25rem;
        padding-bottom: 0.625rem; }
        .vd-section--hero.version--extra-large .hero__front .textbox__wrapper a, .vd-section--hero.version--illustration .hero__front .textbox__wrapper a {
          font-size: 22px !important;
          font-size: 1.375rem !important;
          line-height: 1.3; }
          .vd-section--hero.version--extra-large .hero__front .textbox__wrapper a:before, .vd-section--hero.version--illustration .hero__front .textbox__wrapper a:before {
            font-size: 22px !important;
            font-size: 1.375rem !important; }
        .vd-section--hero.version--extra-large .hero__front .textbox__wrapper p, .vd-section--hero.version--illustration .hero__front .textbox__wrapper p {
          margin: 0 0 0.5rem 0;
          font-size: 22px;
          font-size: 1.375rem;
          line-height: 1.3; }
        .vd-section--hero.version--extra-large .hero__front .textbox__wrapper > :last-child, .vd-section--hero.version--illustration .hero__front .textbox__wrapper > :last-child {
          text-align: center; }
      .vd-section--hero.version--extra-large .hero__front .textbox.colorize--bright, .vd-section--hero.version--illustration .hero__front .textbox.colorize--bright {
        background-color: white;
        color: #000000; }
        @media only screen and (min-width: 992px) {
          .vd-section--hero.version--extra-large .hero__front .textbox.colorize--bright, .vd-section--hero.version--illustration .hero__front .textbox.colorize--bright {
            background-color: white; } }
        .vd-section--hero.version--extra-large .hero__front .textbox.colorize--bright a, .vd-section--hero.version--illustration .hero__front .textbox.colorize--bright a {
          color: #d50019;
          border-color: #d50019; }
        .vd-section--hero.version--extra-large .hero__front .textbox.colorize--bright .vd-button--scroll-down svg g, .vd-section--hero.version--illustration .hero__front .textbox.colorize--bright .vd-button--scroll-down svg g {
          stroke: #000000; }
      .vd-section--hero.version--extra-large .hero__front .textbox.colorize--dark, .vd-section--hero.version--illustration .hero__front .textbox.colorize--dark {
        background-color: black;
        color: #ffffff; }
        @media only screen and (min-width: 992px) {
          .vd-section--hero.version--extra-large .hero__front .textbox.colorize--dark, .vd-section--hero.version--illustration .hero__front .textbox.colorize--dark {
            background-color: black; } }
        .vd-section--hero.version--extra-large .hero__front .textbox.colorize--dark a, .vd-section--hero.version--illustration .hero__front .textbox.colorize--dark a {
          color: #ffffff;
          border-color: #ffffff; }
        .vd-section--hero.version--extra-large .hero__front .textbox.colorize--dark .vd-button--scroll-down svg g, .vd-section--hero.version--illustration .hero__front .textbox.colorize--dark .vd-button--scroll-down svg g {
          stroke: #ffffff; }
      .vd-section--hero.version--extra-large .hero__front .textbox.colorize--red, .vd-section--hero.version--illustration .hero__front .textbox.colorize--red {
        background-color: #ea534e;
        color: #ffffff; }
        @media only screen and (min-width: 992px) {
          .vd-section--hero.version--extra-large .hero__front .textbox.colorize--red, .vd-section--hero.version--illustration .hero__front .textbox.colorize--red {
            background-color: #ea534e; } }
        .vd-section--hero.version--extra-large .hero__front .textbox.colorize--red a, .vd-section--hero.version--illustration .hero__front .textbox.colorize--red a {
          color: #ffffff;
          border-color: #ffffff; }
        .vd-section--hero.version--extra-large .hero__front .textbox.colorize--red .vd-button--scroll-down svg g, .vd-section--hero.version--illustration .hero__front .textbox.colorize--red .vd-button--scroll-down svg g {
          stroke: #ffffff; }
      .vd-section--hero.version--extra-large .hero__front .textbox.colorize--green, .vd-section--hero.version--illustration .hero__front .textbox.colorize--green {
        background-color: #00848d;
        color: #ffffff; }
        @media only screen and (min-width: 992px) {
          .vd-section--hero.version--extra-large .hero__front .textbox.colorize--green, .vd-section--hero.version--illustration .hero__front .textbox.colorize--green {
            background-color: #00848d; } }
        .vd-section--hero.version--extra-large .hero__front .textbox.colorize--green a, .vd-section--hero.version--illustration .hero__front .textbox.colorize--green a {
          color: #ffffff;
          border-color: #ffffff; }
        .vd-section--hero.version--extra-large .hero__front .textbox.colorize--green .vd-button--scroll-down svg g, .vd-section--hero.version--illustration .hero__front .textbox.colorize--green .vd-button--scroll-down svg g {
          stroke: #ffffff; }
    .vd-section--hero.version--extra-large .hero__back, .vd-section--hero.version--illustration .hero__back {
      height: 100%;
      grid-row: 1;
      grid-column: 1; }
      .vd-section--hero.version--extra-large .hero__back .vd-image, .vd-section--hero.version--illustration .hero__back .vd-image {
        height: 100%; }
        .vd-section--hero.version--extra-large .hero__back .vd-image img, .vd-section--hero.version--illustration .hero__back .vd-image img {
          height: 100%; }
      .vd-section--hero.version--extra-large .hero__back .vd-image-container,
      .vd-section--hero.version--extra-large .hero__back figure,
      .vd-section--hero.version--extra-large .hero__back picture, .vd-section--hero.version--illustration .hero__back .vd-image-container,
      .vd-section--hero.version--illustration .hero__back figure,
      .vd-section--hero.version--illustration .hero__back picture {
        height: 100%; }
      .vd-section--hero.version--extra-large .hero__back picture img, .vd-section--hero.version--illustration .hero__back picture img {
        -o-object-fit: cover;
           object-fit: cover;
        width: 100%;
        height: 100%; }
      .vd-section--hero.version--extra-large .hero__back img, .vd-section--hero.version--illustration .hero__back img {
        -o-object-fit: cover;
           object-fit: cover; }
      .vd-section--hero.version--extra-large .hero__back .vd-image--landscape, .vd-section--hero.version--illustration .hero__back .vd-image--landscape {
        display: none; }

.vd-section--hero.version--illustration {
  position: relative;
  height: 100%; }
  .vd-section--hero.version--illustration.colorize--primary-red .hero {
    background-color: #ea534e; }
  .vd-section--hero.version--illustration.colorize--primary-red .cta__title {
    color: #ffffff; }
  .vd-section--hero.version--illustration.colorize--primary-red .cta__content > * {
    color: #ffffff; }
  .vd-section--hero.version--illustration.colorize--primary-red .brand svg path {
    fill: #ffffff !important; }
  .vd-section--hero.version--illustration.colorize--primary-red .top-label, .vd-section--hero.version--illustration.colorize--primary-red .tag {
    color: #000; }
  .vd-section--hero.version--illustration.colorize--light-red .hero {
    background-color: #FCE5E5; }
  .vd-section--hero.version--illustration.colorize--light-red .cta__title {
    color: #00848d; }
  .vd-section--hero.version--illustration.colorize--light-red .cta__content > * {
    color: #000000; }
  .vd-section--hero.version--illustration.colorize--light-red .brand svg path {
    fill: #ea534e !important; }
  .vd-section--hero.version--illustration.colorize--light-red .top-label, .vd-section--hero.version--illustration.colorize--light-red .tag {
    background-color: #ea534e;
    color: #fff; }
  .vd-section--hero.version--illustration.colorize--primary-green .hero {
    background-color: #00848d; }
  .vd-section--hero.version--illustration.colorize--primary-green .cta__title {
    color: #ffffff; }
  .vd-section--hero.version--illustration.colorize--primary-green .cta__content > * {
    color: #ffffff; }
  .vd-section--hero.version--illustration.colorize--primary-green .brand svg path {
    fill: #ffffff !important; }
  .vd-section--hero.version--illustration.colorize--primary-green .top-label, .vd-section--hero.version--illustration.colorize--primary-green .tag {
    color: #000; }
  .vd-section--hero.version--illustration.colorize--light-green .hero {
    background-color: #D9EDEE; }
  .vd-section--hero.version--illustration.colorize--light-green .cta__title {
    color: #00848d; }
  .vd-section--hero.version--illustration.colorize--light-green .cta__content > * {
    color: #000000; }
  .vd-section--hero.version--illustration.colorize--light-green .brand svg path {
    fill: #ea534e !important; }
  .vd-section--hero.version--illustration.colorize--light-green .top-label, .vd-section--hero.version--illustration.colorize--light-green .tag {
    background-color: #ea534e;
    color: #fff; }
  .vd-section--hero.version--illustration .hero {
    height: 100%; }
    .vd-section--hero.version--illustration .hero .brand {
      position: relative;
      top: auto;
      margin-top: 1.25rem; }
    .vd-section--hero.version--illustration .hero__back {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 100%; }
      .vd-section--hero.version--illustration .hero__back > :nth-child(2) {
        margin-top: auto;
        margin-bottom: auto; }
    .vd-section--hero.version--illustration .hero__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      height: 100%; }
    .vd-section--hero.version--illustration .hero__image {
      width: 60%;
      max-width: 300px;
      margin: auto; }
    .vd-section--hero.version--illustration .hero__front {
      margin-top: auto; }
    .vd-section--hero.version--illustration .hero__cta {
      margin: 1.875rem 0; }
    .vd-section--hero.version--illustration .hero .cta__title h1,
    .vd-section--hero.version--illustration .hero .cta__title h2,
    .vd-section--hero.version--illustration .hero .cta__title h3,
    .vd-section--hero.version--illustration .hero .cta__title .ce.ce--vd_job_form fieldset legend,
    .ce.ce--vd_job_form fieldset .vd-section--hero.version--illustration .hero .cta__title legend,
    .vd-section--hero.version--illustration .hero .cta__title h4 {
      margin: 1.25rem 0 0.625rem 0; }
    .vd-section--hero.version--illustration .hero .cta__content > * {
      font-size: 18px;
      font-size: 1.125rem; }

.vd-section--hero.version--large.colorize--primary-red .hero, .vd-section--hero.version--medium.colorize--primary-red .hero {
  background-color: #ea534e; }

.vd-section--hero.version--large.colorize--primary-red .cta__title h1,
.vd-section--hero.version--large.colorize--primary-red .cta__title h2,
.vd-section--hero.version--large.colorize--primary-red .cta__title h3,
.vd-section--hero.version--large.colorize--primary-red .cta__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .vd-section--hero.version--large.colorize--primary-red .cta__title legend,
.vd-section--hero.version--large.colorize--primary-red .cta__title h4, .vd-section--hero.version--medium.colorize--primary-red .cta__title h1,
.vd-section--hero.version--medium.colorize--primary-red .cta__title h2,
.vd-section--hero.version--medium.colorize--primary-red .cta__title h3,
.vd-section--hero.version--medium.colorize--primary-red .cta__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .vd-section--hero.version--medium.colorize--primary-red .cta__title legend,
.vd-section--hero.version--medium.colorize--primary-red .cta__title h4 {
  color: #fff; }

.vd-section--hero.version--large.colorize--primary-red .cta__content > *, .vd-section--hero.version--medium.colorize--primary-red .cta__content > * {
  color: #fff; }

.vd-section--hero.version--large.colorize--primary-red .vd-button, .vd-section--hero.version--large.colorize--primary-red #cookie_approval .button, #cookie_approval .vd-section--hero.version--large.colorize--primary-red .button, .vd-section--hero.version--large.colorize--primary-red .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .vd-section--hero.version--large.colorize--primary-red input[type="submit"], .vd-section--hero.version--medium.colorize--primary-red .vd-button, .vd-section--hero.version--medium.colorize--primary-red #cookie_approval .button, #cookie_approval .vd-section--hero.version--medium.colorize--primary-red .button, .vd-section--hero.version--medium.colorize--primary-red .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .vd-section--hero.version--medium.colorize--primary-red input[type="submit"] {
  background-color: #fff;
  color: #ea534e; }

.vd-section--hero.version--large.colorize--light-red .hero, .vd-section--hero.version--medium.colorize--light-red .hero {
  background-color: #FCE5E5; }

.vd-section--hero.version--large.colorize--light-red .cta__title h1,
.vd-section--hero.version--large.colorize--light-red .cta__title h2,
.vd-section--hero.version--large.colorize--light-red .cta__title h3,
.vd-section--hero.version--large.colorize--light-red .cta__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .vd-section--hero.version--large.colorize--light-red .cta__title legend,
.vd-section--hero.version--large.colorize--light-red .cta__title h4, .vd-section--hero.version--medium.colorize--light-red .cta__title h1,
.vd-section--hero.version--medium.colorize--light-red .cta__title h2,
.vd-section--hero.version--medium.colorize--light-red .cta__title h3,
.vd-section--hero.version--medium.colorize--light-red .cta__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .vd-section--hero.version--medium.colorize--light-red .cta__title legend,
.vd-section--hero.version--medium.colorize--light-red .cta__title h4 {
  color: #00848d; }

.vd-section--hero.version--large.colorize--light-red .cta__content > *, .vd-section--hero.version--medium.colorize--light-red .cta__content > * {
  color: #000; }

.vd-section--hero.version--large.colorize--light-red .vd-button, .vd-section--hero.version--large.colorize--light-red #cookie_approval .button, #cookie_approval .vd-section--hero.version--large.colorize--light-red .button, .vd-section--hero.version--large.colorize--light-red .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .vd-section--hero.version--large.colorize--light-red input[type="submit"], .vd-section--hero.version--medium.colorize--light-red .vd-button, .vd-section--hero.version--medium.colorize--light-red #cookie_approval .button, #cookie_approval .vd-section--hero.version--medium.colorize--light-red .button, .vd-section--hero.version--medium.colorize--light-red .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .vd-section--hero.version--medium.colorize--light-red input[type="submit"] {
  background-color: #ea534e;
  color: #fff; }

.vd-section--hero.version--large.colorize--primary-green .hero, .vd-section--hero.version--medium.colorize--primary-green .hero {
  background-color: #00848d; }

.vd-section--hero.version--large.colorize--primary-green .cta__title h1,
.vd-section--hero.version--large.colorize--primary-green .cta__title h2,
.vd-section--hero.version--large.colorize--primary-green .cta__title h3,
.vd-section--hero.version--large.colorize--primary-green .cta__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .vd-section--hero.version--large.colorize--primary-green .cta__title legend,
.vd-section--hero.version--large.colorize--primary-green .cta__title h4, .vd-section--hero.version--medium.colorize--primary-green .cta__title h1,
.vd-section--hero.version--medium.colorize--primary-green .cta__title h2,
.vd-section--hero.version--medium.colorize--primary-green .cta__title h3,
.vd-section--hero.version--medium.colorize--primary-green .cta__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .vd-section--hero.version--medium.colorize--primary-green .cta__title legend,
.vd-section--hero.version--medium.colorize--primary-green .cta__title h4 {
  color: #fff; }

.vd-section--hero.version--large.colorize--primary-green .cta__content > *, .vd-section--hero.version--medium.colorize--primary-green .cta__content > * {
  color: #fff; }

.vd-section--hero.version--large.colorize--primary-green .vd-button, .vd-section--hero.version--large.colorize--primary-green #cookie_approval .button, #cookie_approval .vd-section--hero.version--large.colorize--primary-green .button, .vd-section--hero.version--large.colorize--primary-green .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .vd-section--hero.version--large.colorize--primary-green input[type="submit"], .vd-section--hero.version--medium.colorize--primary-green .vd-button, .vd-section--hero.version--medium.colorize--primary-green #cookie_approval .button, #cookie_approval .vd-section--hero.version--medium.colorize--primary-green .button, .vd-section--hero.version--medium.colorize--primary-green .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .vd-section--hero.version--medium.colorize--primary-green input[type="submit"] {
  background-color: #fff;
  color: #00848d; }

.vd-section--hero.version--large.colorize--light-green .hero, .vd-section--hero.version--medium.colorize--light-green .hero {
  background-color: #D9EDEE; }

.vd-section--hero.version--large.colorize--light-green .cta__title h1,
.vd-section--hero.version--large.colorize--light-green .cta__title h2,
.vd-section--hero.version--large.colorize--light-green .cta__title h3,
.vd-section--hero.version--large.colorize--light-green .cta__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .vd-section--hero.version--large.colorize--light-green .cta__title legend,
.vd-section--hero.version--large.colorize--light-green .cta__title h4, .vd-section--hero.version--medium.colorize--light-green .cta__title h1,
.vd-section--hero.version--medium.colorize--light-green .cta__title h2,
.vd-section--hero.version--medium.colorize--light-green .cta__title h3,
.vd-section--hero.version--medium.colorize--light-green .cta__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .vd-section--hero.version--medium.colorize--light-green .cta__title legend,
.vd-section--hero.version--medium.colorize--light-green .cta__title h4 {
  color: #00848d; }

.vd-section--hero.version--large.colorize--light-green .cta__content > *, .vd-section--hero.version--medium.colorize--light-green .cta__content > * {
  color: #000; }

.vd-section--hero.version--large.colorize--light-green .vd-button, .vd-section--hero.version--large.colorize--light-green #cookie_approval .button, #cookie_approval .vd-section--hero.version--large.colorize--light-green .button, .vd-section--hero.version--large.colorize--light-green .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .vd-section--hero.version--large.colorize--light-green input[type="submit"], .vd-section--hero.version--medium.colorize--light-green .vd-button, .vd-section--hero.version--medium.colorize--light-green #cookie_approval .button, #cookie_approval .vd-section--hero.version--medium.colorize--light-green .button, .vd-section--hero.version--medium.colorize--light-green .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .vd-section--hero.version--medium.colorize--light-green input[type="submit"] {
  background-color: #00848d;
  color: #fff; }

.vd-section--hero.version--large .hero, .vd-section--hero.version--medium .hero {
  padding: 2.5rem 0 2.5rem 0;
  margin-bottom: 3.75rem; }
  .vd-section--hero.version--large .hero__image, .vd-section--hero.version--medium .hero__image {
    margin-bottom: -5rem;
    margin-top: 1.25rem; }
    .vd-section--hero.version--large .hero__image img, .vd-section--hero.version--medium .hero__image img {
      width: 100%;
      height: auto; }
    .vd-section--hero.version--large .hero__image .vd-image--svg, .vd-section--hero.version--medium .hero__image .vd-image--svg {
      max-width: 250px;
      margin: 1.875rem auto 0 auto; }
  .vd-section--hero.version--large .hero .cta__title h1,
  .vd-section--hero.version--large .hero .cta__title h2,
  .vd-section--hero.version--large .hero .cta__title h3,
  .vd-section--hero.version--large .hero .cta__title .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .vd-section--hero.version--large .hero .cta__title legend,
  .vd-section--hero.version--large .hero .cta__title h4, .vd-section--hero.version--medium .hero .cta__title h1,
  .vd-section--hero.version--medium .hero .cta__title h2,
  .vd-section--hero.version--medium .hero .cta__title h3,
  .vd-section--hero.version--medium .hero .cta__title .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .vd-section--hero.version--medium .hero .cta__title legend,
  .vd-section--hero.version--medium .hero .cta__title h4 {
    margin-top: 0rem;
    margin-bottom: 0rem;
    line-height: 1.2; }
  .vd-section--hero.version--large .hero .cta__content > *, .vd-section--hero.version--medium .hero .cta__content > * {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 600; }
  .vd-section--hero.version--large .hero .vd-button:hover, .vd-section--hero.version--large .hero #cookie_approval .button:hover, #cookie_approval .vd-section--hero.version--large .hero .button:hover, .vd-section--hero.version--large .hero .tx-sf-event-mgt .registration input:hover[type="submit"], .tx-sf-event-mgt .registration .vd-section--hero.version--large .hero input:hover[type="submit"], .vd-section--hero.version--large .hero .vd-button.focus, .vd-section--hero.version--large .hero #cookie_approval .focus.button, #cookie_approval .vd-section--hero.version--large .hero .focus.button, .vd-section--hero.version--large .hero .tx-sf-event-mgt .registration input.focus[type="submit"], .tx-sf-event-mgt .registration .vd-section--hero.version--large .hero input.focus[type="submit"], .vd-section--hero.version--medium .hero .vd-button:hover, .vd-section--hero.version--medium .hero #cookie_approval .button:hover, #cookie_approval .vd-section--hero.version--medium .hero .button:hover, .vd-section--hero.version--medium .hero .tx-sf-event-mgt .registration input:hover[type="submit"], .tx-sf-event-mgt .registration .vd-section--hero.version--medium .hero input:hover[type="submit"], .vd-section--hero.version--medium .hero .vd-button.focus, .vd-section--hero.version--medium .hero #cookie_approval .focus.button, #cookie_approval .vd-section--hero.version--medium .hero .focus.button, .vd-section--hero.version--medium .hero .tx-sf-event-mgt .registration input.focus[type="submit"], .tx-sf-event-mgt .registration .vd-section--hero.version--medium .hero input.focus[type="submit"] {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07); }

.vd-section--hero.version--medium.has-services .hero {
  margin-bottom: 10.625rem; }
  .vd-section--hero.version--medium.has-services .hero--searchbox-included {
    margin-bottom: 23.125rem; }

.vd-section--hero.version--medium.has-services .hero__services {
  margin-bottom: -10.625rem; }
  .vd-section--hero.version--medium.has-services .hero__services .vd-flex > :nth-child(1) {
    margin-right: 0.625rem; }
  .vd-section--hero.version--medium.has-services .hero__services--searchbox-included {
    margin-bottom: -23.125rem; }
    .vd-section--hero.version--medium.has-services .hero__services--searchbox-included .vd-flex > :nth-child(2) {
      margin-right: 0.625rem; }

.vd-section--hero.version--medium .hero__services {
  margin-top: 1.25rem; }
  .vd-section--hero.version--medium .hero__services .box {
    background-color: var(--c-bg-base);
    padding: 1.25rem 0.625rem 1.875rem 0.625rem;
    -webkit-box-shadow: 0px 3px 6px #00000029;
            box-shadow: 0px 3px 6px #00000029; }
    .vd-section--hero.version--medium .hero__services .box__link {
      display: block;
      width: 100%;
      height: 100%;
      text-decoration: none;
      color: #00848d; }
    .vd-section--hero.version--medium .hero__services .box__icon {
      width: 20px;
      height: auto;
      margin-bottom: 0.5rem; }
      .vd-section--hero.version--medium .hero__services .box__icon svg path {
        stroke: #00848d; }
    .vd-section--hero.version--medium .hero__services .box__title {
      color: #00848d;
      font-size: 22px;
      font-size: 1.375rem;
      -webkit-hyphens: auto;
          -ms-hyphens: auto;
              hyphens: auto;
      margin-bottom: 0.625rem;
      font-weight: 600;
      line-height: 1.2; }
    .vd-section--hero.version--medium .hero__services .box__subline {
      font-size: 14px;
      font-size: 0.875rem;
      margin: 0.3125rem 0 0 0;
      color: #00848d; }
  .vd-section--hero.version--medium .hero__services .service-finder {
    width: 100%;
    margin-bottom: 0.625rem; }
  .vd-section--hero.version--medium .hero__services .service-link {
    width: calc(50% - 10px);
    min-height: 210px; }

html[data-page-id]:not([data-page-id="1"]) .vd-section--hero.version--illustration {
  height: auto; }
  html[data-page-id]:not([data-page-id="1"]) .vd-section--hero.version--illustration .brand {
    display: none; }
  html[data-page-id]:not([data-page-id="1"]) .vd-section--hero.version--illustration .hero {
    position: relative;
    height: auto; }
    html[data-page-id]:not([data-page-id="1"]) .vd-section--hero.version--illustration .hero__inner {
      padding: 2.5rem 0; }
    html[data-page-id]:not([data-page-id="1"]) .vd-section--hero.version--illustration .hero__image {
      max-width: 80%; }

@media only screen and (min-width: 992px) {
  .vd-section--hero.version--extra-large .hero .brand__logo, .vd-section--hero.version--illustration .hero .brand__logo {
    width: 100px; }
  .vd-section--hero.version--extra-large .hero__front .textbox, .vd-section--hero.version--illustration .hero__front .textbox {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2; }
    .vd-section--hero.version--extra-large .hero__front .textbox__wrapper, .vd-section--hero.version--illustration .hero__front .textbox__wrapper {
      padding-bottom: 1.25rem; }
      .vd-section--hero.version--extra-large .hero__front .textbox__wrapper a, .vd-section--hero.version--illustration .hero__front .textbox__wrapper a {
        font-size: 33px !important;
        font-size: 2.0625rem !important; }
        .vd-section--hero.version--extra-large .hero__front .textbox__wrapper a:before, .vd-section--hero.version--illustration .hero__front .textbox__wrapper a:before {
          font-size: 33px !important;
          font-size: 2.0625rem !important; }
      .vd-section--hero.version--extra-large .hero__front .textbox__wrapper p, .vd-section--hero.version--illustration .hero__front .textbox__wrapper p {
        margin-bottom: 0.625rem;
        font-size: 33px;
        font-size: 2.0625rem; }
      .vd-section--hero.version--extra-large .hero__front .textbox__wrapper > :last-child, .vd-section--hero.version--illustration .hero__front .textbox__wrapper > :last-child {
        text-align: center; }
  .vd-section--hero.version--extra-large .hero__back .vd-image--landscape, .vd-section--hero.version--illustration .hero__back .vd-image--landscape {
    display: block; }
  .vd-section--hero.version--extra-large .hero__back .vd-image--portrait, .vd-section--hero.version--illustration .hero__back .vd-image--portrait {
    display: none; }
  .vd-section--hero.version--illustration .hero .brand__logo {
    width: 100px; }
  .vd-section--hero.version--illustration .hero__front .textbox {
    position: relative;
    left: auto;
    bottom: auto; }
  .vd-section--hero.version--illustration .hero__cta {
    margin-bottom: 0; }
  .vd-section--hero.version--illustration .hero__image {
    width: 100%;
    max-width: 350px;
    margin: auto; } }
  @media only screen and (min-width: 992px) and (min-height: 1080px) {
    .vd-section--hero.version--illustration .hero__image {
      max-width: 400px; } }

@media only screen and (min-width: 992px) {
  .vd-section--hero.version--illustration .hero .cta__content > * {
    font-size: 22px;
    font-size: 1.375rem; }
  .vd-section--hero.version--large .hero, .vd-section--hero.version--medium .hero {
    margin-bottom: 0;
    min-height: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .vd-section--hero.version--large .hero__cta, .vd-section--hero.version--medium .hero__cta {
      padding: 0;
      margin: 0;
      max-width: 450px; }
    .vd-section--hero.version--large .hero__inner, .vd-section--hero.version--medium .hero__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .vd-section--hero.version--large .hero__image, .vd-section--hero.version--medium .hero__image {
      max-width: 600px;
      margin: 0 0 0 1.875rem; }
      .vd-section--hero.version--large .hero__image .vd-image--svg, .vd-section--hero.version--medium .hero__image .vd-image--svg {
        max-width: none;
        margin: auto; }
    .vd-section--hero.version--large .hero .cta__title h1,
    .vd-section--hero.version--large .hero .cta__title h2,
    .vd-section--hero.version--large .hero .cta__title h3,
    .vd-section--hero.version--large .hero .cta__title .ce.ce--vd_job_form fieldset legend,
    .ce.ce--vd_job_form fieldset .vd-section--hero.version--large .hero .cta__title legend,
    .vd-section--hero.version--large .hero .cta__title h4, .vd-section--hero.version--medium .hero .cta__title h1,
    .vd-section--hero.version--medium .hero .cta__title h2,
    .vd-section--hero.version--medium .hero .cta__title h3,
    .vd-section--hero.version--medium .hero .cta__title .ce.ce--vd_job_form fieldset legend,
    .ce.ce--vd_job_form fieldset .vd-section--hero.version--medium .hero .cta__title legend,
    .vd-section--hero.version--medium .hero .cta__title h4 {
      margin-top: 0rem; }
    .vd-section--hero.version--large .hero .cta__content > *, .vd-section--hero.version--medium .hero .cta__content > * {
      font-size: 22px;
      font-size: 1.375rem;
      font-weight: 600; }
  .vd-section--hero.version--medium.has-services .hero {
    margin-bottom: 5.3125rem;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto; }
  .vd-section--hero.version--medium.has-services .hero__services {
    margin-bottom: 0; }
  .vd-section--hero.version--medium.has-services .hero__cta {
    margin-bottom: 9.375rem; }
  .vd-section--hero.version--medium .hero {
    min-height: 450px; }
    .vd-section--hero.version--medium .hero__services {
      position: absolute;
      bottom: -3.4375rem;
      left: 0;
      right: 0; }
      .vd-section--hero.version--medium .hero__services .vd-flex {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap; }
        .vd-section--hero.version--medium .hero__services .vd-flex > :first-child {
          margin-left: auto; }
      .vd-section--hero.version--medium .hero__services .box {
        height: 210px;
        margin-right: 0.625rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem; }
        .vd-section--hero.version--medium .hero__services .box__link {
          display: block;
          width: 100%;
          height: 100%;
          text-decoration: none;
          color: #00848d; }
        .vd-section--hero.version--medium .hero__services .box__icon {
          width: 20px;
          height: auto;
          margin-bottom: 0.5rem; }
          .vd-section--hero.version--medium .hero__services .box__icon svg path {
            stroke: #00848d; }
        .vd-section--hero.version--medium .hero__services .box__title {
          color: #00848d;
          font-size: 22px;
          font-size: 1.375rem;
          margin-bottom: 0.625rem;
          font-weight: 600;
          line-height: 1.2; }
          .vd-section--hero.version--medium .hero__services .box__title span {
            -webkit-hyphens: auto;
                -ms-hyphens: auto;
                    hyphens: auto; }
        .vd-section--hero.version--medium .hero__services .box__subline {
          font-size: 14px;
          font-size: 0.875rem;
          margin: 0.3125rem 0 0 0;
          color: #00848d; }
      .vd-section--hero.version--medium .hero__services .service-finder {
        width: 400px;
        margin-bottom: 0; } }
      @media only screen and (min-width: 992px) and (max-width: 1200px) {
        .vd-section--hero.version--medium .hero__services .service-finder {
          margin-left: 0; } }

@media only screen and (min-width: 992px) {
      .vd-section--hero.version--medium .hero__services .service-link {
        width: 240px; } }

body.template--overview .hero-colorize.hero-colorize--blue, body.template--detail .hero-colorize.hero-colorize--blue, body.template--controllerDetail .hero-colorize.hero-colorize--blue {
  background-color: #015D7D;
  color: #fff; }
  body.template--overview .hero-colorize.hero-colorize--blue *, body.template--detail .hero-colorize.hero-colorize--blue *, body.template--controllerDetail .hero-colorize.hero-colorize--blue * {
    color: #fff; }
  body.template--overview .hero-colorize.hero-colorize--blue a, body.template--detail .hero-colorize.hero-colorize--blue a, body.template--controllerDetail .hero-colorize.hero-colorize--blue a {
    color: #fff; }

body.template--overview .hero-colorize.hero-colorize--mint, body.template--detail .hero-colorize.hero-colorize--mint, body.template--controllerDetail .hero-colorize.hero-colorize--mint {
  background-color: #36AFA4;
  color: #fff; }
  body.template--overview .hero-colorize.hero-colorize--mint *, body.template--detail .hero-colorize.hero-colorize--mint *, body.template--controllerDetail .hero-colorize.hero-colorize--mint * {
    color: #fff; }
  body.template--overview .hero-colorize.hero-colorize--mint a, body.template--detail .hero-colorize.hero-colorize--mint a, body.template--controllerDetail .hero-colorize.hero-colorize--mint a {
    color: #fff; }

body.template--overview .hero-colorize.hero-colorize--purple, body.template--detail .hero-colorize.hero-colorize--purple, body.template--controllerDetail .hero-colorize.hero-colorize--purple {
  background-color: #54237F;
  color: #fff; }
  body.template--overview .hero-colorize.hero-colorize--purple *, body.template--detail .hero-colorize.hero-colorize--purple *, body.template--controllerDetail .hero-colorize.hero-colorize--purple * {
    color: #fff; }
  body.template--overview .hero-colorize.hero-colorize--purple a, body.template--detail .hero-colorize.hero-colorize--purple a, body.template--controllerDetail .hero-colorize.hero-colorize--purple a {
    color: #fff; }

body.template--overview .hero-colorize.hero-colorize--blue--tone, body.template--detail .hero-colorize.hero-colorize--blue--tone, body.template--controllerDetail .hero-colorize.hero-colorize--blue--tone {
  background-color: #E5EEF2;
  color: #015D7D; }
  body.template--overview .hero-colorize.hero-colorize--blue--tone *, body.template--detail .hero-colorize.hero-colorize--blue--tone *, body.template--controllerDetail .hero-colorize.hero-colorize--blue--tone * {
    color: #015D7D; }
  body.template--overview .hero-colorize.hero-colorize--blue--tone a, body.template--detail .hero-colorize.hero-colorize--blue--tone a, body.template--controllerDetail .hero-colorize.hero-colorize--blue--tone a {
    color: #015D7D; }

body.template--overview .hero-colorize.hero-colorize--mint--tone, body.template--detail .hero-colorize.hero-colorize--mint--tone, body.template--controllerDetail .hero-colorize.hero-colorize--mint--tone {
  background-color: #EEF8F7;
  color: #36AFA4; }
  body.template--overview .hero-colorize.hero-colorize--mint--tone *, body.template--detail .hero-colorize.hero-colorize--mint--tone *, body.template--controllerDetail .hero-colorize.hero-colorize--mint--tone * {
    color: #36AFA4; }
  body.template--overview .hero-colorize.hero-colorize--mint--tone a, body.template--detail .hero-colorize.hero-colorize--mint--tone a, body.template--controllerDetail .hero-colorize.hero-colorize--mint--tone a {
    color: #36AFA4; }

body.template--overview .hero-colorize.hero-colorize--purple--tone, body.template--detail .hero-colorize.hero-colorize--purple--tone, body.template--controllerDetail .hero-colorize.hero-colorize--purple--tone {
  background-color: #EDE8F2;
  color: #54237F; }
  body.template--overview .hero-colorize.hero-colorize--purple--tone *, body.template--detail .hero-colorize.hero-colorize--purple--tone *, body.template--controllerDetail .hero-colorize.hero-colorize--purple--tone * {
    color: #54237F; }
  body.template--overview .hero-colorize.hero-colorize--purple--tone a, body.template--detail .hero-colorize.hero-colorize--purple--tone a, body.template--controllerDetail .hero-colorize.hero-colorize--purple--tone a {
    color: #54237F; }

body.template--overview #hero, body.template--detail #hero, body.template--controllerDetail #hero {
  padding-top: 1.875rem;
  padding-bottom: 5rem; }
  @media only screen and (max-width: 991px) {
    body.template--overview #hero, body.template--detail #hero, body.template--controllerDetail #hero {
      padding-top: 1.875rem; } }
  @media only screen and (max-width: 991px) {
    body.template--overview #hero .hero__inner .col-sm-8, body.template--detail #hero .hero__inner .col-sm-8, body.template--controllerDetail #hero .hero__inner .col-sm-8 {
      -webkit-box-flex: 0 !important;
          -ms-flex: 0 0 100% !important;
              flex: 0 0 100% !important;
      max-width: 100% !important; } }
  body.template--overview #hero.hasImage .hero__inner, body.template--detail #hero.hasImage .hero__inner, body.template--controllerDetail #hero.hasImage .hero__inner {
    padding-top: 3.125rem; }
    @media only screen and (max-width: 991px) {
      body.template--overview #hero.hasImage .hero__inner, body.template--detail #hero.hasImage .hero__inner, body.template--controllerDetail #hero.hasImage .hero__inner {
        padding-top: 1.875rem; } }
    body.template--overview #hero.hasImage .hero__inner .hero__content, body.template--detail #hero.hasImage .hero__inner .hero__content, body.template--controllerDetail #hero.hasImage .hero__inner .hero__content {
      padding-right: calc((100% / 12) * 2); }
      @media only screen and (max-width: 991px) {
        body.template--overview #hero.hasImage .hero__inner .hero__content, body.template--detail #hero.hasImage .hero__inner .hero__content, body.template--controllerDetail #hero.hasImage .hero__inner .hero__content {
          padding-right: 0px; } }
    @media only screen and (max-width: 991px) {
      body.template--overview #hero.hasImage .hero__inner .col-sm-6, body.template--detail #hero.hasImage .hero__inner .col-sm-6, body.template--controllerDetail #hero.hasImage .hero__inner .col-sm-6 {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%; } }
    @media only screen and (max-width: 991px) {
      body.template--overview #hero.hasImage .hero__inner .col-sm-6.col-first, body.template--detail #hero.hasImage .hero__inner .col-sm-6.col-first, body.template--controllerDetail #hero.hasImage .hero__inner .col-sm-6.col-first {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        margin-top: 1.25rem; } }
    @media only screen and (max-width: 991px) {
      body.template--overview #hero.hasImage .hero__inner .col-sm-6.col-last, body.template--detail #hero.hasImage .hero__inner .col-sm-6.col-last, body.template--controllerDetail #hero.hasImage .hero__inner .col-sm-6.col-last {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; } }

body.template--overview .hero__title > *, body.template--detail .hero__title > *, body.template--controllerDetail .hero__title > * {
  margin: 0;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 50px; }

body.template--overview .hero__title .hero__title__meta span, body.template--detail .hero__title .hero__title__meta span, body.template--controllerDetail .hero__title .hero__title__meta span {
  font-size: 16px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important; }
  body.template--overview .hero__title .hero__title__meta span.news-list-category:before, body.template--detail .hero__title .hero__title__meta span.news-list-category:before, body.template--controllerDetail .hero__title .hero__title__meta span.news-list-category:before {
    content: " - "; }

body.template--overview .hero__title .top-label, body.template--overview .hero__title .tag, body.template--detail .hero__title .top-label, body.template--detail .hero__title .tag, body.template--controllerDetail .hero__title .top-label, body.template--controllerDetail .hero__title .tag {
  font-size: 16px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important; }

body.template--overview .hero__content > *, body.template--detail .hero__content > *, body.template--controllerDetail .hero__content > * {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 30px;
  font-weight: 500; }

body.template--overview .vd-breadcrumb .vd-nav__item:not(:last-child)::after, body.template--detail .vd-breadcrumb .vd-nav__item:not(:last-child)::after, body.template--controllerDetail .vd-breadcrumb .vd-nav__item:not(:last-child)::after {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224px%22%20fill%3D%22%23ffffff%22%3E%3Cpath%20d%3D%22M0%200h24v24H0V0z%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M10%206L8.59%207.41%2013.17%2012l-4.58%204.59L10%2018l6-6-6-6z%22%2F%3E%3C%2Fsvg%3E"); }

body.template--overview .hero-colorize--blue--tone .hero__title > *, body.template--detail .hero-colorize--blue--tone .hero__title > *, body.template--controllerDetail .hero-colorize--blue--tone .hero__title > * {
  color: #015D7D !important; }

body.template--overview .hero-colorize--blue--tone .vd-breadcrumb a > *, body.template--detail .hero-colorize--blue--tone .vd-breadcrumb a > *, body.template--controllerDetail .hero-colorize--blue--tone .vd-breadcrumb a > * {
  color: #015D7D !important; }

body.template--overview .hero-colorize--blue--tone .vd-breadcrumb li > *, body.template--detail .hero-colorize--blue--tone .vd-breadcrumb li > *, body.template--controllerDetail .hero-colorize--blue--tone .vd-breadcrumb li > * {
  color: #015D7D !important; }

body.template--overview .hero-colorize--blue--tone .hero__content p, body.template--detail .hero-colorize--blue--tone .hero__content p, body.template--controllerDetail .hero-colorize--blue--tone .hero__content p {
  color: #000 !important; }

body.template--overview .hero-colorize--blue--tone .vd-breadcrumb .vd-nav__item:not(:last-child)::after, body.template--detail .hero-colorize--blue--tone .vd-breadcrumb .vd-nav__item:not(:last-child)::after, body.template--controllerDetail .hero-colorize--blue--tone .vd-breadcrumb .vd-nav__item:not(:last-child)::after {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224px%22%20fill%3D%22%23015D7D%22%3E%3Cpath%20d%3D%22M0%200h24v24H0V0z%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M10%206L8.59%207.41%2013.17%2012l-4.58%204.59L10%2018l6-6-6-6z%22%2F%3E%3C%2Fsvg%3E"); }

.vd-section--footer {
  background-color: #015D7D;
  padding: 1.25rem 0 2.5rem 0; }
  .vd-section--footer > * {
    color: #fff !important; }
  .vd-section--footer .footer__navigation {
    padding-top: 1.5625rem;
    overflow-x: hidden;
    overflow-y: visible; }
    .vd-section--footer .footer__navigation [class*="col-"] {
      margin-top: 1.25rem;
      margin-bottom: 0.3125rem; }
    .vd-section--footer .footer__navigation .footer__title {
      display: inline-block;
      font-size: 30px;
      font-size: 1.875rem;
      font-weight: 700;
      padding-bottom: 20px;
      font-family: Livvic, "Lucida Sans Unicode", "Lucida Grande", sans-serif;
      margin-top: 20px; }
    .vd-section--footer .footer__navigation .divider {
      display: block;
      width: calc(100% - 1em);
      height: 1px;
      margin: 0 auto;
      padding: 0 1em; }
    @media only screen and (max-width: 991px) {
      .vd-section--footer .footer__navigation .col-md-4 {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%; } }
  .vd-section--footer .footer__content a {
    font-weight: 400; }
  .vd-section--footer .footer__content ul {
    padding-left: 0;
    list-style: none;
    margin: 0.9375rem 0; }
    .vd-section--footer .footer__content ul li {
      margin-bottom: 0.9375rem;
      font-size: 22px;
      font-size: 1.375rem; }
      .vd-section--footer .footer__content ul li a {
        display: inline-block;
        font-weight: 600;
        font-size: 22px;
        font-size: 1.375rem;
        line-height: 1.3;
        padding-left: 45px;
        position: relative; }
        .vd-section--footer .footer__content ul li a:before {
          content: '';
          position: absolute;
          top: 3px;
          left: 0;
          width: 30px;
          height: 20px;
          display: inline-block;
          background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23fff'/%3E%3C/svg%3E");
          background-repeat: no-repeat;
          background-position: left center;
          background-size: 30px;
          -webkit-transform: rotate(0.06534deg);
                  transform: rotate(0.06534deg); }
  .vd-section--footer .footer__content .label {
    display: inline-block;
    font-weight: 700; }
  .vd-section--footer .footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 1.5625rem; }
    @media only screen and (max-width: 767px) {
      .vd-section--footer .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    @media only screen and (max-width: 991px) {
      .vd-section--footer .footer__bottom .col-md-4 {
        display: block;
        width: 100%; } }
    .vd-section--footer .footer__bottom .brand__logo {
      width: 70px;
      height: auto; }
    .vd-section--footer .footer__bottom .footer__meta > a {
      font-size: 16px;
      font-size: 1rem;
      font-weight: 600;
      display: block;
      margin-bottom: 0.625rem;
      text-decoration: underline;
      margin-top: 20px; }
  .vd-section--footer .copyright {
    font-size: 16px;
    font-size: 1rem;
    margin: 0;
    margin-right: 40px;
    position: relative;
    top: 2px;
    font-weight: 600; }
    @media only screen and (max-width: 991px) {
      .vd-section--footer .copyright {
        margin: 0.9375rem 3.75rem 0 0; } }

@media only screen and (min-width: 992px) {
  .vd-section--footer .footer__navigation {
    padding-top: 3.125rem; }
    .vd-section--footer .footer__navigation .footer__title {
      font-size: 40px;
      font-size: 2.5rem; }
    .vd-section--footer .footer__navigation .divider {
      display: none; }
  .vd-section--footer .footer__bottom {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 3.125rem; }
    .vd-section--footer .footer__bottom .brand__logo {
      width: 120px; }
      .vd-section--footer .footer__bottom .brand__logo svg {
        height: 90px; }
    .vd-section--footer .footer__bottom .footer__meta > a {
      display: inline-block;
      margin: 0 1.875rem 0 0; }
    .vd-section--footer .footer__bottom .footer__meta > :last-child {
      margin-right: 0; } }

.hero .form {
  border-bottom: 2px solid #00848d;
  padding-bottom: 0.3125rem; }
  .hero .form__input-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 50px; }
    @media only screen and (min-width: 768px) {
      .hero .form__input-container {
        height: 60px; } }
    .hero .form__input-container input {
      font-size: 18px;
      font-size: 1.125rem;
      width: 100%;
      height: 100%;
      border: none;
      background-color: #D9EDEE;
      padding-left: 1.25rem; }
      @media only screen and (min-width: 768px) {
        .hero .form__input-container input {
          font-size: 22px;
          font-size: 1.375rem; } }
  .hero .form__cta {
    background-color: #D9EDEE;
    border: none;
    padding-right: 0.625rem; }
    .hero .form__cta svg {
      width: 25px;
      height: auto; }
      .hero .form__cta svg path {
        stroke: #00848d; }

form {
  display: inline-block;
  padding: 1.875rem;
  background-color: #F0F0F0;
  margin-left: -10px;
  margin-right: -10px; }
  form button {
    cursor: pointer; }

.filter .label {
  display: block;
  margin-bottom: 10px; }

.filter.input {
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% - 20px);
  margin-bottom: 1.875rem; }
  .filter.input input {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 0;
    position: relative;
    z-index: 1;
    border: none;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 0 0 1.25rem;
    margin-bottom: .3125rem;
    background-color: #fff;
    width: 100%;
    height: 69px;
    -webkit-transition: background-color .35s ease-in-out;
    transition: background-color .35s ease-in-out; }

.filter.select {
  width: calc(50% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  float: left;
  margin-bottom: 1.875rem; }
  .filter.select select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 0;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border: none;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 0 0 1.25rem;
    margin-bottom: .3125rem;
    background-color: #fff;
    width: 100%;
    height: 69px;
    -webkit-transition: background-color .35s ease-in-out;
    transition: background-color .35s ease-in-out; }

.filter.date {
  width: calc(50% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  float: left;
  margin-bottom: 1.875rem; }
  .filter.date .field-date {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 0;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border: none;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 0 0 1.25rem;
    margin-bottom: .3125rem;
    background-color: #fff;
    width: 100%;
    height: 69px;
    -webkit-transition: background-color .35s ease-in-out;
    transition: background-color .35s ease-in-out; }

.vd-social-media-sharing {
  margin-top: 1.25rem; }
  .vd-social-media-sharing .media-sharing__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .vd-social-media-sharing .channels {
    min-width: 250px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    .vd-social-media-sharing .channels__options {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      right: 0;
      -webkit-transition: all 300ms ease-in-out;
      transition: all 300ms ease-in-out; }
      .vd-social-media-sharing .channels__options > *:not(:last-child) {
        margin-right: 0.9375rem; }
      .vd-social-media-sharing .channels__options.show {
        right: 150px;
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out; }
    .vd-social-media-sharing .channels__cta {
      border: none;
      background: #fff;
      height: 35px;
      cursor: pointer;
      color: #00848d;
      font-weight: 600;
      font-size: 18px;
      font-size: 1.125rem;
      z-index: 1;
      padding: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .vd-social-media-sharing .channels__cta svg {
        width: 20px;
        height: 20px;
        margin-right: 0.3125rem;
        vertical-align: top; }
    .vd-social-media-sharing .channels__channel {
      padding: 0;
      border: none;
      background: none;
      width: 28px;
      height: 28px;
      cursor: pointer;
      -webkit-transition: -webkit-transform 200ms ease-in-out;
      transition: -webkit-transform 200ms ease-in-out;
      transition: transform 200ms ease-in-out;
      transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out; }
      .vd-social-media-sharing .channels__channel:hover {
        -webkit-transform: scale(1.06);
                transform: scale(1.06);
        -webkit-transition: -webkit-transform 200ms ease-in-out;
        transition: -webkit-transform 200ms ease-in-out;
        transition: transform 200ms ease-in-out;
        transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out; }
      .vd-social-media-sharing .channels__channel svg {
        width: 100%;
        height: 100%; }
        .vd-social-media-sharing .channels__channel svg .cls-1 {
          stroke-width: 2; }

.vd-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10001; }
  .vd-dialog__front, .vd-dialog__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; }
  .vd-dialog__overlay {
    background-color: rgba(0, 0, 0, 0.75);
    z-index: -1; }
  .vd-dialog__front {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .vd-dialog__content {
    background-color: #fff;
    max-width: 600px;
    max-height: calc(100% - 64px);
    -webkit-box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 2rem; }
  .vd-dialog__title {
    padding: 1rem 1.5rem; }
    .vd-dialog__title h1,
    .vd-dialog__title h2,
    .vd-dialog__title h3,
    .vd-dialog__title .ce.ce--vd_job_form fieldset legend,
    .ce.ce--vd_job_form fieldset .vd-dialog__title legend,
    .vd-dialog__title h4 {
      margin: 0;
      font-size: 22px;
      font-size: 1.375rem; }
  .vd-dialog__body {
    padding: 0.5rem 1.5625rem; }
    .vd-dialog__body p {
      margin: 0;
      font-size: 18px;
      font-size: 1.125rem;
      color: rgba(0, 0, 0, 0.54); }
  .vd-dialog__actions {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .vd-dialog__button {
    border: none;
    background: none;
    text-decoration: none;
    font-size: 16px;
    font-size: 1rem;
    color: #00848d;
    font-weight: 600;
    line-height: 1.75;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    cursor: pointer; }
    @media only screen and (max-width: 325px) {
      .vd-dialog__button {
        font-size: 14px;
        font-size: 0.875rem; } }

.vd-message {
  color: #636363; }
  .vd-message .vd-message__wrapper {
    background-color: #ededed;
    padding: 30px 40px; }
  .vd-message--tiny {
    padding: 10px 20px; }
  .vd-message__tag {
    background-color: #636363;
    color: #ededed;
    padding: 0 5px;
    border-radius: 3px; }
    .vd-message__tag:not(:last-child) {
      margin-right: 5px; }
  .vd-message__content p {
    line-height: 1.25; }
  .vd-message__content:not(:last-child) {
    padding-bottom: 15px; }
  .vd-message__value {
    font-weight: 700; }
  .vd-message.vd-message--ok {
    background-color: #D9EDEE; }
    .vd-message.vd-message--ok * {
      color: #00848d; }
    .vd-message.vd-message--ok .vd-message__tag {
      background-color: #00848d;
      color: #D9EDEE; }
  .vd-message.vd-message--error .vd-message__wrapper {
    background-color: #F9CBCA;
    padding: 0; }
  .vd-message.vd-message--error .vd-message__title, .vd-message.vd-message--error .vd-message__content, .vd-message.vd-message--error .vd-message__info {
    padding: 30px 40px 0; }
  .vd-message.vd-message--error .vd-message__title h2 {
    margin: 0; }
  .vd-message.vd-message--error .vd-message__content p {
    margin: 0; }
    .vd-message.vd-message--error .vd-message__content p:not(:last-child) {
      margin-bottom: 16px; }
  .vd-message.vd-message--error.vd-message--has-info .vd-message__content {
    padding-bottom: 30px; }
  .vd-message.vd-message--error.vd-message--has-info .vd-message__info {
    padding: 12px 40px; }
  .vd-message.vd-message--error * {
    color: #ea534e; }
  .vd-message.vd-message--error .vd-message__tag {
    background-color: #ea534e;
    color: #F9CBCA; }
  .vd-message.vd-message--error .vd-message__info {
    background-color: #2a2a2a; }
    .vd-message.vd-message--error .vd-message__info * {
      color: #efefef; }
    .vd-message.vd-message--error .vd-message__info ol,
    .vd-message.vd-message--error .vd-message__info ul {
      list-style: none;
      padding: 0;
      margin: 0; }
      .vd-message.vd-message--error .vd-message__info ol li,
      .vd-message.vd-message--error .vd-message__info ul li {
        padding: 0;
        margin: 0; }
  .vd-message.vd-message--warning {
    background-color: #FCE5E5; }
    .vd-message.vd-message--warning * {
      color: #ea534e; }
    .vd-message.vd-message--warning .vd-message__tag {
      background-color: #ea534e;
      color: #FCE5E5; }

.form-group .vd-message {
  padding: 24px 40px;
  margin-bottom: 24px; }

.vd-section--main .vd-message {
  background-color: #ededed !important;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  color: #000; }

.toggle-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 2.5rem; }
  .toggle-bar__button {
    display: inline-block;
    font-size: 22px;
    font-size: 1.375rem;
    width: 100%;
    padding: 0.625rem 1.25rem;
    color: #ea534e;
    text-decoration: none;
    border: 1px solid #ea534e;
    -webkit-transition: background-color 250ms ease-in-out;
    transition: background-color 250ms ease-in-out; }
    .toggle-bar__button.active {
      background-color: #ea534e;
      color: #ffffff;
      font-weight: 700;
      -webkit-transition: background-color 250ms ease-in-out;
      transition: background-color 250ms ease-in-out; }
    .toggle-bar__button:hover, .toggle-bar__button:focus {
      background-color: #ed6965;
      border-color: #ed6965 !important;
      color: #ffffff;
      font-weight: 700;
      -webkit-transition: background-color 250ms ease-in-out;
      transition: background-color 250ms ease-in-out; }
  .toggle-bar > :nth-child(odd) {
    border-bottom: none; }

@media only screen and (min-width: 768px) {
  .toggle-bar__button {
    width: 50%; }
  .toggle-bar > :nth-child(odd) {
    border-bottom: 1px solid #ea534e;
    border-right: none; } }

#cookie_approval {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  #cookie_approval .backdrop {
    position: fixed;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: -1; }
  #cookie_approval .inside {
    background-color: #fff;
    color: rgba(0, 0, 0, 0.87);
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 11px 15px -7px, rgba(0, 0, 0, 0.14) 0px 24px 38px 3px, rgba(0, 0, 0, 0.12) 0px 9px 46px 8px;
            box-shadow: rgba(0, 0, 0, 0.2) 0px 11px 15px -7px, rgba(0, 0, 0, 0.14) 0px 24px 38px 3px, rgba(0, 0, 0, 0.12) 0px 9px 46px 8px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.875rem 1.25rem;
    margin: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 800px;
    max-height: 65vh; }
    @media only screen and (min-width: 768px) {
      #cookie_approval .inside {
        padding: 2.5rem 1.875rem;
        max-height: 80vh;
        min-height: 475px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  #cookie_approval .text {
    max-height: 60%;
    overflow-y: auto;
    margin-bottom: 1.25rem; }
    @media only screen and (min-width: 768px) {
      #cookie_approval .text {
        max-height: 80%;
        overflow-y: visible; } }
    #cookie_approval .text p {
      margin: 0; }
  #cookie_approval .group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    #cookie_approval .group > * {
      margin-bottom: 0.625rem; }

[hidden] {
  display: none !important; }

/* VIEW SELECTION */
.cookie.view-selection .feature-list,
.cookie.view-selection .cookie-list {
  list-style: none;
  margin: 0;
  padding: 0; }

.cookie.view-selection .feature-list_item {
  margin-bottom: 3.125em;
  /*border-bottom: 1px solid var(--cookie-selection-color-border);*/ }

.cookie.view-selection .feature-list_item:last-child {
  margin-bottom: 0;
  border-bottom: none; }

.cookie.view-selection .cookie-list_item {
  margin-bottom: 1.5em; }

.cookie.view-selection .feature_switch-label {
  cursor: pointer;
  font-weight: 700; }

.cookie.view-selection .feature_switch {
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 0 0 0.5em;
  border: none;
  width: 3em;
  height: 1.7em;
  font-weight: 700;
  font-size: inherit;
  line-height: inherit;
  background-color: transparent;
  text-align: left; }

.cookie.view-selection .feature_switch-label.is-disabled,
.cookie.view-selection .feature_switch:disabled {
  cursor: not-allowed;
  color: var(--cookie-selection-color-disabled); }

.cookie.view-selection .feature_switch-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--cookie-selection-color-switch_slider);
  border-radius: 1.7em; }

.cookie.view-selection .feature_switch-slider:before {
  content: '';
  position: absolute;
  bottom: 0.2em;
  left: 0.2em;
  width: 1.3em;
  height: 1.3em;
  border-radius: 50%;
  background-color: var(--cookie-selection-color-switch_dot);
  -webkit-transition: all .45s ease-in-out;
  transition: all .45s ease-in-out; }

.cookie.view-selection .feature_switch[aria-checked=true] .feature_switch-slider:before {
  left: 1.5em;
  background-color: var(--cookie-selection-color-switch_dot-highlight); }

.cookie.view-selection .feature_switch-text {
  position: relative;
  left: 3em; }

.cookie.view-selection .description-list {
  clear: both;
  margin: 0; }

.cookie.view-selection .description-term {
  float: left;
  margin: 0 .25em 0 0;
  min-width: 5em;
  line-height: 1.5em;
  font-weight: bold; }

.cookie.view-selection .description-data {
  overflow: hidden;
  line-height: 1.5em; }

.vd-tag {
  display: inline-block;
  background: #015D7D;
  padding: 6px 12px;
  border-radius: 3px;
  color: white;
  font-weight: 600;
  margin-right: 6px; }
  .vd-tag--mint {
    background: #36AFA4; }
    .vd-tag--mint-tint {
      background: #49b7ac; }
  .vd-tag--purple {
    background: #54237F; }
    .vd-tag--purple-tint {
      background: #785795; }

.vd-section--header .header__bottom.mobile #navigation-main .vd-menu__button, .vd-section--header .header__bottom.desktop #navigation-main .vd-menu__button--next:not(.top), .vd-section--header .header__bottom.desktop #navigation-main .vd-menu__button:not(.top) {
  width: 100%;
  background-color: #ffffff;
  text-align: left;
  padding: 1.5625rem 1.25rem 0.9375rem; }

.vd-section--header .header__bottom.mobile #navigation-main .vd-menu__button--next, .vd-section--header .header__bottom.desktop #navigation-main .vd-menu__button--next:not(.top) {
  color: #015D7D;
  position: relative;
  padding-right: 36px;
  cursor: pointer; }

.vd-section--header .header__bottom.mobile #navigation-main .vd-menu__button--next:after, .vd-section--header .header__bottom.desktop #navigation-main .vd-menu__button--next:not(.top):after {
  content: "";
  display: block;
  content: '';
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20version%3D%221.1%22%20id%3D%22arrowRight%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20256%20256%22%20style%3D%22enable-background%3Anew%200%200%20256%20256%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23015D7D%22%20points%3D%2279.093%2C0%2048.907%2C30.187%20146.72%2C128%2048.907%2C225.813%2079.093%2C256%20207.093%2C128%22%2F%3E%3C%2Fsvg%3E");
  background-size: 80% 80%;
  background-repeat: no-repeat;
  background-position: center center;
  /*
		width: 14px;
		height: 14px;
		position:absolute;
		top: 14px;
*/
  width: 24px;
  height: 24px;
  position: absolute;
  top: 22px;
  right: 10px;
  z-index: 1; }

.vd-section--header .header__bottom #navigation-main {
  font-weight: 600; }

.vd-section--header .open.header__bottom.mobile #navigation-main {
  visibility: visible;
  left: 0;
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in; }

.vd-section--header .header__bottom.mobile:not(.open) #navigation-main, .vd-section--header .closed.header__bottom.mobile #navigation-main {
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  left: -120%; }

.vd-section--header .header__bottom.mobile #navigation-main {
  visibility: hidden;
  background-color: #EEF8F7; }
  .vd-section--header .header__bottom.mobile #navigation-main .vd-submenu {
    display: none;
    visibility: hidden; }
    .vd-section--header .header__bottom.mobile #navigation-main .vd-submenu.active-menu {
      display: block;
      visibility: visible; }
  .vd-section--header .header__bottom.mobile #navigation-main .vd-menu__dropdown,
  .vd-section--header .header__bottom.mobile #navigation-main .vd-menu .vd-submenu {
    position: relative;
    left: 0;
    top: 0;
    width: 100;
    height: auto; }
  .vd-section--header .header__bottom.mobile #navigation-main .vd-menu__dropdown {
    left: 0;
    margin-top: 0;
    padding: 0;
    background-color: white; }
  
  .vd-section--header .header__bottom.mobile #navigation-main .vd-menu .vd-submenu {
    left: 0;
    padding-bottom: 100px; }
  .vd-section--header .header__bottom.mobile #navigation-main .vd-menu__item {
    margin-right: 0;
    position: relative; }
    .vd-section--header .header__bottom.mobile #navigation-main .vd-menu__item button {
      width: 100%;
      text-align: left; }
    .vd-section--header .header__bottom.mobile #navigation-main .vd-menu__item.state--active > .vd-menu__button,
    .vd-section--header .header__bottom.mobile #navigation-main .vd-menu__item.state--active > a {
      color: #36B0A5; }

.vd-section--header .header__bottom.mobile .slider-wrapper-mobile {
  position: relative; }
  .vd-section--header .header__bottom.mobile .slider-wrapper-mobile.animate {
    -webkit-animation-duration: 300ms;
            animation-duration: 300ms;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-direction: normal;
            animation-direction: normal;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1; }
    .vd-section--header .header__bottom.mobile .slider-wrapper-mobile.animate.animate--menu-slide-in-left {
      -webkit-animation-name: menu--slide-in-left;
              animation-name: menu--slide-in-left; }
    .vd-section--header .header__bottom.mobile .slider-wrapper-mobile.animate.animate--menu-slide-in-right {
      -webkit-animation-name: menu--slide-in-right;
              animation-name: menu--slide-in-right; }
    .vd-section--header .header__bottom.mobile .slider-wrapper-mobile.animate.animate--menu-slide-out-left {
      -webkit-animation-name: menu--slide-out-left;
              animation-name: menu--slide-out-left; }
    .vd-section--header .header__bottom.mobile .slider-wrapper-mobile.animate.animate--menu-slide-out-right {
      -webkit-animation-name: menu--slide-out-right;
              animation-name: menu--slide-out-right; }

.vd-section--header .header__bottom.desktop #navigation-main > ul.vd-menu--main > li {
  margin-right: 1.875rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem; }

.vd-section--header .header__bottom.desktop #navigation-main .vd-menu__dropdown {
  height: calc(100vh - 169px); }

body.template--startpage .vd-section--header .header__bottom.desktop #navigation-main .vd-menu__dropdown, .vd-section--header body.template--startpage .header__bottom.desktop #navigation-main .vd-menu__dropdown {
  top: 209px;
  height: calc(100vh - 209px); }

.header__bottom.mobile #navigation-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  top: 118px;
  left: -120%;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  height: calc(100vh - 118px);
  background-color: var(--c-bg-alt);
  padding-top: 1.25rem;
  z-index: 10;
  visibility: hidden;
  padding: 20px; }
  .header__bottom.mobile #navigation-main .vd-menu__item {
    background-color: var(--c-bg-base); }

#menu-mega .vd-menu__button {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto; }
  #menu-mega .vd-menu__button--back {
    color: #24756d;
    border-bottom: 3px solid #24756d;
    cursor: pointer; }
    #menu-mega .vd-menu__button--back:before {
      content: "";
      display: inline-block;
      content: '';
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2022%2012%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3Aserif%3D%22http%3A%2F%2Fwww.serif.com%2F%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%3B%22%3E%3Cpath%20d%3D%22M6%2C12l1%2C-1l-4.004%2C-4.403l19.004%2C-0l0%2C-1.244l-19.004%2C-0l4.004%2C-4.353l-1%2C-1l-6%2C6l6%2C6Z%22%20fill%3D%22%2324756d%22%20style%3D%22fill-rule%3Anonzero%3B%22%2F%3E%3C%2Fsvg%3E");
      background-size: 80% 80%;
      background-repeat: no-repeat;
      background-position: center center;
      width: 24px;
      height: 16px;
      margin-right: 7px;
      top: 2px;
      position: relative; }
  #menu-mega .vd-menu__button--link, #menu-mega .vd-menu__button--menu, #menu-mega .vd-menu__button--top {
    color: #015D7D; }
  #menu-mega .vd-menu__button--back, #menu-mega .vd-menu__button--menu, #menu-mega .vd-menu__button--link {
    width: 100%;
    background-color: #ffffff;
    text-align: left;
    padding: 1.5625rem 1.25rem 0.9375rem; }

#menu-mega .vd-menu__dropdown {
  width: 100%;
  display: block;
  visibility: hidden;
  position: fixed;
  left: -100%;
  top: 169px;
  background-color: #EEF8F7;
  padding: 4.6875rem 0;
  -webkit-transition: left 300ms ease-in-out, visibility 300ms ease-in-out;
  transition: left 300ms ease-in-out, visibility 300ms ease-in-out;
  z-index: 10; }
  #menu-mega .vd-menu__dropdown.show {
    visibility: visible;
    left: 0;
    -webkit-transition: left 300ms ease-in-out, visibility 300ms ease-in-out, top 1s ease-in-out;
    transition: left 300ms ease-in-out, visibility 300ms ease-in-out, top 1s ease-in-out; }
  #menu-mega .vd-menu__dropdown .container, #menu-mega .vd-menu__dropdown .vd-breadcrumb, #menu-mega .vd-menu__dropdown .vd-breadcrumb .vd-nav, .vd-breadcrumb #menu-mega .vd-menu__dropdown .vd-nav, #menu-mega .vd-menu__dropdown #tx-solr-search, #menu-mega .vd-menu__dropdown .vd-filter-container, #menu-mega .vd-menu__dropdown .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__bottom #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .vd-section--header .header__navigation--buttons, .vd-section--header #menu-mega .vd-menu__dropdown .header__navigation--buttons, #menu-mega .vd-menu__dropdown body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section--header #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown body:not(.template--startpage) .vd-section .header__navigation--buttons, body:not(.template--startpage) .vd-section #menu-mega .vd-menu__dropdown .header__navigation--buttons, #menu-mega .vd-menu__dropdown body.template--startpage .vd-section--hero .vd-wrapper, body.template--startpage .vd-section--hero #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .content-element.gutachter-list, #menu-mega .vd-menu__dropdown .vd-section--main .vd-message, .vd-section--main #menu-mega .vd-menu__dropdown .vd-message, #menu-mega .vd-menu__dropdown .vd-section--header .header__top .vd-wrapper, .vd-section--header .header__top #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_event_calendar #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--vd_events_list > .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--vd_events_search > .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--vd_event_registration .vd-wrapper, .ce.ce--vd_event_registration #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--sfeventmgt_pieventdetail #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce--vd_event_list > .vd-wrapper,
  #menu-mega .vd-menu__dropdown .ce--vd_event_search > .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--vd_newsletter_registration, #menu-mega .vd-menu__dropdown .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_services_teaser #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_text_teaser #menu-mega .vd-menu__dropdown .ce__title, #menu-mega .vd-menu__dropdown .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_teaser #menu-mega .vd-menu__dropdown .single-news-teaser, #menu-mega .vd-menu__dropdown .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list #menu-mega .vd-menu__dropdown .ce__title, #menu-mega .vd-menu__dropdown .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list #menu-mega .vd-menu__dropdown .icon, #menu-mega .vd-menu__dropdown .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list #menu-mega .vd-menu__dropdown .vd-actions, #menu-mega .vd-menu__dropdown .ce.ce--vd_news_list .news__cta, .ce.ce--vd_news_list #menu-mega .vd-menu__dropdown .news__cta, #menu-mega .vd-menu__dropdown .ce--vd_accordion .ce__title, .ce--vd_accordion #menu-mega .vd-menu__dropdown .ce__title,
  #menu-mega .vd-menu__dropdown .ce--vd_downloads .ce__title, .ce--vd_downloads #menu-mega .vd-menu__dropdown .ce__title, #menu-mega .vd-menu__dropdown .ce--vd_accordion .ce__content .ce__bodytext, .ce--vd_accordion .ce__content #menu-mega .vd-menu__dropdown .ce__bodytext,
  #menu-mega .vd-menu__dropdown .ce--vd_downloads .ce__content .ce__bodytext, .ce--vd_downloads .ce__content #menu-mega .vd-menu__dropdown .ce__bodytext, #menu-mega .vd-menu__dropdown .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel #menu-mega .vd-menu__dropdown .ce__content > .ce__bodytext, #menu-mega .vd-menu__dropdown .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_green__front_bright #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .vd-slick-dots, #menu-mega .vd-menu__dropdown .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_image #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--vd_text .vd-wrapper, .ce.ce--vd_text #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--table .vd-wrapper, .ce.ce--table #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--html .vd-wrapper, .ce.ce--html #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--vd_text_images .ce__title, .ce.ce--vd_text_images #menu-mega .vd-menu__dropdown .ce__title, #menu-mega .vd-menu__dropdown .ce.ce--vd_link_list, #menu-mega .vd-menu__dropdown .ce.ce--vd_quotation, #menu-mega .vd-menu__dropdown .ce--vd_pages_teaser .ce__title, .ce--vd_pages_teaser #menu-mega .vd-menu__dropdown .ce__title, #menu-mega .vd-menu__dropdown .ce.ce--vd_video .vd-wrapper, .ce.ce--vd_video #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--form_formframework .vd-wrapper, .ce.ce--form_formframework #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--vd_info_box, #menu-mega .vd-menu__dropdown .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_magazines #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--vd_list_offers .ce__title, .ce.ce--vd_list_offers #menu-mega .vd-menu__dropdown .ce__title, #menu-mega .vd-menu__dropdown .content-element-directories .text, .content-element-directories #menu-mega .vd-menu__dropdown .text, #menu-mega .vd-menu__dropdown .content-element-directories #directories_filter__form, .content-element-directories #menu-mega .vd-menu__dropdown #directories_filter__form, #menu-mega .vd-menu__dropdown .content-element-directories .directories-results, .content-element-directories #menu-mega .vd-menu__dropdown .directories-results, #menu-mega .vd-menu__dropdown #tx-solr-search .vd-wrapper, #tx-solr-search #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown main > .ce.ce--vd_event_teaser .single-event-teaser, main > .ce.ce--vd_event_teaser #menu-mega .vd-menu__dropdown .single-event-teaser, #menu-mega .vd-menu__dropdown .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_departments_list #menu-mega .vd-menu__dropdown .ce__title, #menu-mega .vd-menu__dropdown .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_divisions_list #menu-mega .vd-menu__dropdown .ce__title, #menu-mega .vd-menu__dropdown .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_persons_list #menu-mega .vd-menu__dropdown .ce__title, #menu-mega .vd-menu__dropdown .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--vd_job_form, #menu-mega .vd-menu__dropdown .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, #menu-mega .vd-menu__dropdown .ce--vd_downloads .vd-wrapper, .ce--vd_downloads #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce--vd_download .ce__title, .ce--vd_download #menu-mega .vd-menu__dropdown .ce__title, #menu-mega .vd-menu__dropdown .ce--vd_download .ce__content, .ce--vd_download #menu-mega .vd-menu__dropdown .ce__content, #menu-mega .vd-menu__dropdown .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_menu_teaser #menu-mega .vd-menu__dropdown .vd-wrapper, #menu-mega .vd-menu__dropdown .ce.ce--vd_news_carousel > .vd-wrapper {
    height: 100%; }

#menu-mega .vd-menu .slider-wrapper-desktop {
  display: block;
  height: 100%; }
  #menu-mega .vd-menu .slider-wrapper-desktop .vd-submenu {
    background-color: white;
    height: auto; }
    #menu-mega .vd-menu .slider-wrapper-desktop .vd-submenu li a,
    #menu-mega .vd-menu .slider-wrapper-desktop .vd-submenu li .vd-menu__button {
      line-height: 1.5;
      display: block;
      font-weight: 600; }

@media only screen and (min-width: 992px) {
  .vd-section--header .header__bottom.mobile #menu-mega {
    display: none; }
  .vd-section--header .header__bottom.desktop #menu-mega .vd-menu[data-level="0"] {
    background-color: var(--c-bg-base);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .vd-section--header .header__bottom.desktop #menu-mega .vd-menu[data-level="0"] > li.state--active > .vd-menu__button,
    .vd-section--header .header__bottom.desktop #menu-mega .vd-menu[data-level="0"] > li.state--active > a {
      position: relative; }
      .vd-section--header .header__bottom.desktop #menu-mega .vd-menu[data-level="0"] > li.state--active > .vd-menu__button:after,
      .vd-section--header .header__bottom.desktop #menu-mega .vd-menu[data-level="0"] > li.state--active > a:after {
        content: '';
        background-color: #36B0A5;
        height: 10px;
        width: 100%;
        display: inline-block;
        position: absolute;
        bottom: -5px;
        left: 0px; } }
  @media only screen and (min-width: 992px) and (-ms-high-contrast: active), only screen and (min-width: 992px) and (-ms-high-contrast: none) {
    .vd-section--header .header__bottom.desktop #menu-mega .vd-menu[data-level="0"] {
      height: 78px; } }

@media only screen and (min-width: 992px) {
    .vd-section--header .header__bottom.desktop #menu-mega .vd-menu[data-level="0"] > .vd_menu__item--search {
      margin-left: auto; }
  .vd-section--header .header__bottom.desktop #menu-mega .vd-menu .vd-submenu {
    position: absolute;
    width: 400px;
    top: 0;
    left: 110%;
    display: none; }
    .vd-section--header .header__bottom.desktop #menu-mega .vd-menu .vd-submenu > .vd-menu__item:not(:last-child):not(.back-to-parent) {
      border-bottom: 1px solid #d5d5d5; }
    .vd-section--header .header__bottom.desktop #menu-mega .vd-menu .vd-submenu:not([data-level="1"]) {
      width: 100%;
      display: none; }
    .vd-section--header .header__bottom.desktop #menu-mega .vd-menu .vd-submenu[data-level="1"] {
      left: 0;
      display: block !important; }
      .vd-section--header .header__bottom.desktop #menu-mega .vd-menu .vd-submenu[data-level="1"] > .back-to-parent {
        display: none; }
  .vd-section--header .header__bottom.desktop #menu-mega .vd-menu__dropdown-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%; }
  .vd-section--header .header__bottom.desktop #menu-mega .vd-menu__dropdown-menu {
    width: 67%;
    height: 100%;
    overflow-x: hidden; } }
  @media only screen and (min-width: 992px) and (max-width: 1400px) {
    .vd-section--header .header__bottom.desktop #menu-mega .vd-menu__dropdown-menu {
      width: 100%; } }

@media only screen and (min-width: 992px) {
  .vd-section--header .header__bottom.desktop #menu-mega .vd-menu__dropdown-close {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4; }
    .vd-section--header .header__bottom.desktop #menu-mega .vd-menu__dropdown-close svg path {
      stroke: #015D7D; }
  .vd-section--header .header__bottom.desktop #menu-mega .vd-menu .slider-wrapper-desktop {
    position: relative;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s; }
  .vd-section--header .header__bottom.desktop #menu-mega .vd-menu__dropdown-teaser {
    width: 25%; } }
  @media only screen and (min-width: 992px) and (max-width: 1400px) {
    .vd-section--header .header__bottom.desktop #menu-mega .vd-menu__dropdown-teaser {
      display: none; } }

@media only screen and (min-width: 992px) {
    .vd-section--header .header__bottom.desktop #menu-mega .vd-menu__dropdown-teaser .vd-cta__title {
      font-size: 33px;
      font-size: 2.0625rem;
      margin-bottom: 1.25rem; }
  .vd-section--header.mobile #navigation-main {
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s; }
  .vd-section--header.mobile .vd-menu {
    height: 100%; }
  .vd-section--header.mobile .vd-submenu {
    height: 100%; }
  .vd-section--header.mobile .vd-menu {
    background-color: #EEF8F7;
    width: 100%;
    top: 0;
    left: calc(100% + 30px);
    display: none; } }
  @media only screen and (min-width: 992px) and (min-width: 768px) {
    .vd-section--header.mobile .vd-menu {
      width: 320px; } }
  @media only screen and (min-width: 992px) and (min-width: 1024px) {
    .vd-section--header.mobile .vd-menu {
      width: 400px; } }

@media only screen and (min-width: 992px) {
    .vd-section--header.mobile .vd-menu.top {
      left: 0;
      display: block; }
    .vd-section--header.mobile .vd-menu__item:not(:last-child):not(.back-to-parent) {
      border-bottom: 1px solid #d5d5d5; } }

.vd-section--header .header__bottom.desktop #menu-mega .vd-menu[data-level="0"] > li:not(:last-child) {
  margin-right: 1.875rem; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .vd-section--header .header__bottom.desktop #menu-mega .vd-menu[data-level="0"] > li:not(:last-child) {
      margin-right: 1.125rem; } }
  @media only screen and (min-width: 1200px) and (max-width: 1279px) {
    .vd-section--header .header__bottom.desktop #menu-mega .vd-menu[data-level="0"] > li:not(:last-child) {
      margin-right: 1.375rem; } }
  @media only screen and (min-width: 1280px) and (max-width: 1359px) {
    .vd-section--header .header__bottom.desktop #menu-mega .vd-menu[data-level="0"] > li:not(:last-child) {
      margin-right: 1.5625rem; } }

@media only screen and (min-width: 992px) and (max-width: 1067px) {
  .vd-section--header .header__bottom.desktop #menu-mega .vd-menu[data-level="0"] > li > .vd-menu__button--top span {
    font-size: 15px;
    font-size: 0.9375rem; } }

@media only screen and (min-width: 1068px) and (max-width: 1199px) {
  .vd-section--header .header__bottom.desktop #menu-mega .vd-menu[data-level="0"] > li > .vd-menu__button--top span {
    font-size: 16px;
    font-size: 1rem; } }

@media only screen and (min-width: 1200px) and (max-width: 1279px) {
  .vd-section--header .header__bottom.desktop #menu-mega .vd-menu[data-level="0"] > li > .vd-menu__button--top span {
    font-size: 17px;
    font-size: 1.0625rem; } }

.vd-section--header .header__top .vd-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .vd-section--header .header__top .vd-wrapper > :nth-child(3) {
    margin-left: auto; }

.vd-section--header .header__top .brand {
  width: 70px;
  height: auto; }
  .vd-section--header .header__top .brand a {
    display: block;
    color: #000000; }
  .vd-section--header .header__top .brand svg {
    overflow: visible; }

.vd-section--header .header__top .nav {
  display: none; }

.vd-section--header .vd-button--menu {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto; }

.vd-section--header .vd-menu__item.no-children .vd-button--menu:after {
  background-image: none; }

.vd-section--header .header__bottom.mobile .vd-menu__dropdown-teaser,
.vd-section--header .header__bottom.mobile .vd-menu__dropdown-close {
  display: none; }

.vd-section--header .header__bottom.mobile .slider-wrapper-desktop {
  -webkit-transform: none !important;
          transform: none !important; }

.vd-section--header .header__bottom.mobile .slider-wrapper-mobile {
  width: 100%;
  height: 100%; }

.vd-section--header .header__bottom.mobile #navigation-main {
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  overflow: hidden; }
  .vd-section--header .header__bottom.mobile #navigation-main .vd-menu,
  .vd-section--header .header__bottom.mobile #navigation-main .vd-submenu {
    height: 100%; }
  .vd-section--header .header__bottom.mobile #navigation-main .vd-menu {
    width: 100%;
    top: 0;
    left: calc(100% + 30px);
    display: none; }
    @media only screen and (min-width: 768px) {
      .vd-section--header .header__bottom.mobile #navigation-main .vd-menu {
        width: 320px; } }
    @media only screen and (min-width: 1024px) {
      .vd-section--header .header__bottom.mobile #navigation-main .vd-menu {
        width: 400px; } }
    .vd-section--header .header__bottom.mobile #navigation-main .vd-menu.top {
      left: 0;
      display: block; }
    .vd-section--header .header__bottom.mobile #navigation-main .vd-menu__item:not(:last-child):not(.back-to-parent) {
      border-bottom: 1px solid #d5d5d5; }

.vd-section--header .vd-dropdown-search {
  width: 100%;
  position: absolute;
  top: 118px;
  left: 0;
  background-color: #D9EDEE;
  z-index: 10;
  visibility: visible;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  overflow: hidden; }
  .vd-section--header .vd-dropdown-search__teaser, .vd-section--header .vd-dropdown-search__close {
    display: none; }
  .vd-section--header .vd-dropdown-search .vd-wrapper {
    padding-top: 1.875rem;
    padding-bottom: 2.8125rem; }
  .vd-section--header .vd-dropdown-search:not(.active) {
    display: none; }

@media only screen and (min-width: 992px) {
  .vd-section--header #menu-mega.mobile {
    display: none; }
  .vd-section--header .vd-dropdown-search {
    top: auto; }
    .vd-section--header .vd-dropdown-search__teaser {
      display: block; }
    .vd-section--header .vd-dropdown-search__title {
      font-size: 33px;
      font-size: 2.0625rem;
      margin-bottom: 1.25rem; }
    .vd-section--header .vd-dropdown-search__close {
      display: block;
      width: 30px;
      height: 30px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      position: absolute;
      top: 30px;
      right: 0; }
    .vd-section--header .vd-dropdown-search .vd-wrapper {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-top: 6.25rem;
      padding-bottom: 3.75rem; }
      .vd-section--header .vd-dropdown-search .vd-wrapper > :nth-child(1) {
        width: 30%; }
      .vd-section--header .vd-dropdown-search .vd-wrapper > :nth-child(2) {
        width: 60%; } }

@media only screen and (max-width: 991px) {
  html.mega-menu-opened body,
  html.mega-menu-opened .body__container {
    width: 100%;
    height: 100%;
    overflow: hidden; }
  html.mega-menu-opened .vd-section--header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000; }
    html.mega-menu-opened .vd-section--header #menu-mega [data-level="0"] {
      max-height: 93%;
      overflow-y: auto; } }

@-webkit-keyframes menu--slide-out-left {
  from {
    left: 0;
    opacity: 1; }
  to {
    left: -120%;
    opacity: 0; } }

@keyframes menu--slide-out-left {
  from {
    left: 0;
    opacity: 1; }
  to {
    left: -120%;
    opacity: 0; } }

@-webkit-keyframes menu--slide-out-right {
  from {
    left: 0;
    opacity: 1; }
  to {
    left: 120%;
    opacity: 0; } }

@keyframes menu--slide-out-right {
  from {
    left: 0;
    opacity: 1; }
  to {
    left: 120%;
    opacity: 0; } }

@-webkit-keyframes menu--slide-in-right {
  from {
    left: 120%;
    opacity: 0; }
  to {
    left: 0%;
    opacity: 1; } }

@keyframes menu--slide-in-right {
  from {
    left: 120%;
    opacity: 0; }
  to {
    left: 0%;
    opacity: 1; } }

@-webkit-keyframes menu--slide-in-left {
  from {
    left: -120%;
    opacity: 0; }
  to {
    left: 0%;
    opacity: 1; } }

@keyframes menu--slide-in-left {
  from {
    left: -120%;
    opacity: 0; }
  to {
    left: 0%;
    opacity: 1; } }

/*
 * Default CSS for list, detail and registration view
 */
.userregistration-list-item,
.event-list-item {
  margin-bottom: 15px; }

.userregistration-list-row,
.event-registration-row {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.userregistration-list-label,
.event-registration-label,
.event-detail-label,
.event-list-label {
  display: block;
  width: 150px;
  min-height: 1px;
  font-weight: bold; }

.userregistration-list-value,
.event-registration-value,
.event-detail-value,
.event-list-value {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

.tx-sf-event-mgt .clear {
  clear: both; }

.tx-sf-event-mgt form.registration fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

.tx-sf-event-mgt form.registration label {
  width: 100%; }

.tx-sf-event-mgt form.registration .radio-field-radiofields,
.tx-sf-event-mgt form.registration .checkbox-field-checkfields {
  width: 100%; }

.tx-sf-event-mgt form.registration .checkbox label {
  float: none;
  width: auto; }

.tx-sf-event-mgt form.registration .field-errors {
  margin-top: 5px; }

.tx-sf-event-mgt form.registration .error {
  color: #ff0000;
  font-size: 16px;
  margin-top: 5px; }

.button {
  margin-right: 0.6em; }

/*
  * Default CSS for calendar view
  */
.event-calendar {
  width: 100%;
  margin: 0;
  padding: 0; }

.event-calendar li {
  list-style: none; }

.event-calendar a {
  color: #000000;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word; }

.event-calendar__weeknumber {
  width: 20px;
  text-align: center;
  margin-left: -1px;
  margin-bottom: -1px;
  padding: 6px;
  background: #fff;
  color: #CCC;
  font-weight: bold; }

.event-calendar__weekdays {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #CCCCCC;
  margin: 0;
  padding: 0; }

.event-calendar__weekdays-weekday {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  margin-right: -1px;
  margin-bottom: -1px;
  padding: 6px 0;
  background: #CCCCCC; }

.event-calendar__days {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0; }

.event-calendar__day {
  min-height: 120px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #CCCCCC;
  margin-right: -1px;
  margin-bottom: -1px; }

.event-calendar__day-today {
  background: #e6e6e6; }

.event-calendar__day-other-month {
  background: #f3f3f3; }

.event-calendar__day-date {
  font-weight: 700;
  color: #000000; }

.event-calendar__day-event {
  clear: both;
  display: block;
  padding: 5px;
  margin-top: 6px;
  margin-bottom: 5px;
  background: #f4f7f7;
  border: 1px solid #CCCCCC;
  border-radius: 2px; }

.event-calendar__day-event-time {
  font-size: 10px;
  margin-top: 5px; }

.event-calendar__browser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.event-calendar__browser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-padding-start: 0; }

.event-calendar__browser-prev,
.event-calendar__browser-next,
.event-calendar__browser-current {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center; }

.event-calendar__browser-prev {
  text-align: left;
  padding-top: 8px; }

.event-calendar__browser-next {
  text-align: right;
  padding-top: 8px; }

.event-required {
  color: #000000; }

.error-class label,
.error-class .event-required {
  color: #ff0000; }

.ce.ce--vd_event_calendar .ce__title {
  color: #00848d; }

.tx-sf-event-mgt h1 {
  color: #00848d; }

.tx-sf-event-mgt .event-calendar ul,
.tx-sf-event-mgt .event-calendar ol {
  padding-left: 0; }
  .tx-sf-event-mgt .event-calendar ul li,
  .tx-sf-event-mgt .event-calendar ol li {
    margin-bottom: 0; }

.tx-sf-event-mgt .event-calendar__weeknumber {
  display: none; }

.tx-sf-event-mgt .event-calendar__weekdays, .tx-sf-event-mgt .event-calendar__weekdays-weekday {
  background-color: #00848d;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600; }

.tx-sf-event-mgt .event-calendar__weekdays-weekday {
  padding: 0.9375rem 0; }

.tx-sf-event-mgt .event-calendar__browser-current h3, .tx-sf-event-mgt .event-calendar__browser-current .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .tx-sf-event-mgt .event-calendar__browser-current legend {
  margin-top: 0; }

.tx-sf-event-mgt .event-calendar__browser-prev a,
.tx-sf-event-mgt .event-calendar__browser-next a {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none; }
  .tx-sf-event-mgt .event-calendar__browser-prev a:hover, .tx-sf-event-mgt .event-calendar__browser-prev a:focus,
  .tx-sf-event-mgt .event-calendar__browser-next a:hover,
  .tx-sf-event-mgt .event-calendar__browser-next a:focus {
    color: #00848d;
    text-decoration: underline; }

.tx-sf-event-mgt .event-calendar__day-event {
  background: #D9EDEE; }
  .tx-sf-event-mgt .event-calendar__day-event a {
    text-decoration: none;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto; }
    .tx-sf-event-mgt .event-calendar__day-event a:hover, .tx-sf-event-mgt .event-calendar__day-event a:focus {
      text-decoration: underline; }

.tx-sf-event-mgt .event-list {
  margin-top: 3.125rem; }
  .tx-sf-event-mgt .event-list.event-list--multicolumn .container, .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-breadcrumb, .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-breadcrumb .vd-nav, .vd-breadcrumb .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-nav, .tx-sf-event-mgt .event-list.event-list--multicolumn #tx-solr-search, .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-filter-container, .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__bottom .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-section--header .header__navigation--buttons, .vd-section--header .tx-sf-event-mgt .event-list.event-list--multicolumn .header__navigation--buttons, .tx-sf-event-mgt .event-list.event-list--multicolumn body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section--header .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn body:not(.template--startpage) .vd-section .header__navigation--buttons, body:not(.template--startpage) .vd-section .tx-sf-event-mgt .event-list.event-list--multicolumn .header__navigation--buttons, .tx-sf-event-mgt .event-list.event-list--multicolumn body.template--startpage .vd-section--hero .vd-wrapper, body.template--startpage .vd-section--hero .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .content-element.gutachter-list, .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-section--main .vd-message, .vd-section--main .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-message, .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-section--header .header__top .vd-wrapper, .vd-section--header .header__top .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_event_calendar .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_events_list > .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_events_search > .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_event_registration .vd-wrapper, .ce.ce--vd_event_registration .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--sfeventmgt_pieventdetail .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce--vd_event_list > .vd-wrapper,
  .tx-sf-event-mgt .event-list.event-list--multicolumn .ce--vd_event_search > .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_newsletter_registration, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_services_teaser .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_text_teaser .tx-sf-event-mgt .event-list.event-list--multicolumn .ce__title, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_teaser .tx-sf-event-mgt .event-list.event-list--multicolumn .single-news-teaser, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .tx-sf-event-mgt .event-list.event-list--multicolumn .ce__title, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list .tx-sf-event-mgt .event-list.event-list--multicolumn .icon, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-actions, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_news_list .news__cta, .ce.ce--vd_news_list .tx-sf-event-mgt .event-list.event-list--multicolumn .news__cta, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce--vd_accordion .ce__title, .ce--vd_accordion .tx-sf-event-mgt .event-list.event-list--multicolumn .ce__title,
  .tx-sf-event-mgt .event-list.event-list--multicolumn .ce--vd_downloads .ce__title, .ce--vd_downloads .tx-sf-event-mgt .event-list.event-list--multicolumn .ce__title, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce--vd_accordion .ce__content .ce__bodytext, .ce--vd_accordion .ce__content .tx-sf-event-mgt .event-list.event-list--multicolumn .ce__bodytext,
  .tx-sf-event-mgt .event-list.event-list--multicolumn .ce--vd_downloads .ce__content .ce__bodytext, .ce--vd_downloads .ce__content .tx-sf-event-mgt .event-list.event-list--multicolumn .ce__bodytext, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel .tx-sf-event-mgt .event-list.event-list--multicolumn .ce__content > .ce__bodytext, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_green__front_bright .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-slick-dots, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_image .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_text .vd-wrapper, .ce.ce--vd_text .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--table .vd-wrapper, .ce.ce--table .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--html .vd-wrapper, .ce.ce--html .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_text_images .ce__title, .ce.ce--vd_text_images .tx-sf-event-mgt .event-list.event-list--multicolumn .ce__title, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_link_list, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_quotation, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce--vd_pages_teaser .ce__title, .ce--vd_pages_teaser .tx-sf-event-mgt .event-list.event-list--multicolumn .ce__title, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_video .vd-wrapper, .ce.ce--vd_video .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--form_formframework .vd-wrapper, .ce.ce--form_formframework .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_info_box, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_magazines .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_list_offers .ce__title, .ce.ce--vd_list_offers .tx-sf-event-mgt .event-list.event-list--multicolumn .ce__title, .tx-sf-event-mgt .event-list.event-list--multicolumn .content-element-directories .text, .content-element-directories .tx-sf-event-mgt .event-list.event-list--multicolumn .text, .tx-sf-event-mgt .event-list.event-list--multicolumn .content-element-directories #directories_filter__form, .content-element-directories .tx-sf-event-mgt .event-list.event-list--multicolumn #directories_filter__form, .tx-sf-event-mgt .event-list.event-list--multicolumn .content-element-directories .directories-results, .content-element-directories .tx-sf-event-mgt .event-list.event-list--multicolumn .directories-results, .tx-sf-event-mgt .event-list.event-list--multicolumn #tx-solr-search .vd-wrapper, #tx-solr-search .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn main > .ce.ce--vd_event_teaser .single-event-teaser, main > .ce.ce--vd_event_teaser .tx-sf-event-mgt .event-list.event-list--multicolumn .single-event-teaser, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_departments_list .tx-sf-event-mgt .event-list.event-list--multicolumn .ce__title, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_divisions_list .tx-sf-event-mgt .event-list.event-list--multicolumn .ce__title, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_persons_list .tx-sf-event-mgt .event-list.event-list--multicolumn .ce__title, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_job_form, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce--vd_downloads .vd-wrapper, .ce--vd_downloads .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce--vd_download .ce__title, .ce--vd_download .tx-sf-event-mgt .event-list.event-list--multicolumn .ce__title, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce--vd_download .ce__content, .ce--vd_download .tx-sf-event-mgt .event-list.event-list--multicolumn .ce__content, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_menu_teaser .tx-sf-event-mgt .event-list.event-list--multicolumn .vd-wrapper, .tx-sf-event-mgt .event-list.event-list--multicolumn .ce.ce--vd_news_carousel > .vd-wrapper {
    padding-left: 0;
    padding-right: 0; }
  .tx-sf-event-mgt .event-list.event-list--multicolumn .row {
    margin-left: -1.5625rem;
    margin-right: -1.5625rem; }
  .tx-sf-event-mgt .event-list.event-list--multicolumn [class*="col-"] {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem; }
    .tx-sf-event-mgt .event-list.event-list--multicolumn [class*="col-"] .list-item {
      border: none;
      padding-bottom: 0; }
      .tx-sf-event-mgt .event-list.event-list--multicolumn [class*="col-"] .list-item .meta__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; }
        .tx-sf-event-mgt .event-list.event-list--multicolumn [class*="col-"] .list-item .meta__wrapper .meta__date {
          margin-top: 0; }
  .tx-sf-event-mgt .event-list.event-list--multicolumn .header {
    margin-top: 0.625rem; }
    .tx-sf-event-mgt .event-list.event-list--multicolumn .header a {
      text-decoration: none;
      color: #000000; }
      .tx-sf-event-mgt .event-list.event-list--multicolumn .header a:hover, .tx-sf-event-mgt .event-list.event-list--multicolumn .header a:focus {
        text-decoration: underline; }
    .tx-sf-event-mgt .event-list.event-list--multicolumn .header h1,
    .tx-sf-event-mgt .event-list.event-list--multicolumn .header h2,
    .tx-sf-event-mgt .event-list.event-list--multicolumn .header h3,
    .tx-sf-event-mgt .event-list.event-list--multicolumn .header .ce.ce--vd_job_form fieldset legend,
    .ce.ce--vd_job_form fieldset .tx-sf-event-mgt .event-list.event-list--multicolumn .header legend,
    .tx-sf-event-mgt .event-list.event-list--multicolumn .header h4 {
      margin-bottom: 0.625rem;
      font-size: 20px;
      font-size: 1.25rem; }
  .tx-sf-event-mgt .event-list.event-list--multicolumn .meta--date {
    margin-top: 0.625rem;
    font-weight: 600;
    font-size: 32px;
    font-size: 2rem; }
  .tx-sf-event-mgt .event-list:not(.event-list--multicolumn) > :nth-child(even) {
    background-color: #D9EDEE; }
  .tx-sf-event-mgt .event-list:not(.event-list--multicolumn) .list-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 1.25rem 0;
    border-bottom: 1px solid #00848d; }
    .tx-sf-event-mgt .event-list:not(.event-list--multicolumn) .list-item > * {
      font-size: 18px;
      font-size: 1.125rem;
      padding: 0 0.9375rem;
      width: 100%;
      margin-bottom: 0.625rem; }
    .tx-sf-event-mgt .event-list:not(.event-list--multicolumn) .list-item > :nth-child(3) > strong {
      display: block;
      margin-bottom: 0.3125rem;
      line-height: 1.3; }
    .tx-sf-event-mgt .event-list:not(.event-list--multicolumn) .list-item > :nth-child(3) .readmore {
      margin-top: 0.9375rem; }
    .tx-sf-event-mgt .event-list:not(.event-list--multicolumn) .list-item--header {
      display: none; }
      .tx-sf-event-mgt .event-list:not(.event-list--multicolumn) .list-item--header > * {
        font-size: 22px;
        font-size: 1.375rem;
        color: #00848d;
        font-weight: 600; }

@media only screen and (min-width: 992px) {
  .tx-sf-event-mgt .event-list:not(.event-list--multicolumn) .list-item > * {
    margin-bottom: 0; }
  .tx-sf-event-mgt .event-list:not(.event-list--multicolumn) .list-item > :nth-child(1) {
    width: 15%; }
  .tx-sf-event-mgt .event-list:not(.event-list--multicolumn) .list-item > :nth-child(2) {
    width: 20%; }
  .tx-sf-event-mgt .event-list:not(.event-list--multicolumn) .list-item > :nth-child(3) {
    width: 45%; }
  .tx-sf-event-mgt .event-list:not(.event-list--multicolumn) .list-item > :nth-child(4) {
    width: 20%; }
  .tx-sf-event-mgt .event-list:not(.event-list--multicolumn) .list-item--header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

.ce.ce--vd_events_list .ce__title, .ce.ce--vd_events_search .ce__title {
  color: #00848d; }

.tx-sf-event-mgt form {
  background: #FAFAFA;
  padding: 0.9375rem; }
  @media only screen and (min-width: 768px) {
    .tx-sf-event-mgt form {
      padding: 1.875rem; } }

.tx-sf-event-mgt fieldset {
  border: none;
  padding: 0;
  margin: 0; }
  .tx-sf-event-mgt fieldset legend {
    display: none; }

.tx-sf-event-mgt .field,
.tx-sf-event-mgt .event-registration-row,
.tx-sf-event-mgt .form-group {
  position: relative;
  max-width: 780px;
  margin-bottom: 2.5rem; }
  .tx-sf-event-mgt .field .input:not(.checkbox),
  .tx-sf-event-mgt .field .checkboxes-container,
  .tx-sf-event-mgt .event-registration-row .input:not(.checkbox),
  .tx-sf-event-mgt .event-registration-row .checkboxes-container,
  .tx-sf-event-mgt .form-group .input:not(.checkbox),
  .tx-sf-event-mgt .form-group .checkboxes-container {
    position: relative;
    border-bottom: 2px solid #00848d;
    margin-bottom: 0.3125rem; }
  .tx-sf-event-mgt .field--is-intro,
  .tx-sf-event-mgt .event-registration-row--is-intro,
  .tx-sf-event-mgt .form-group--is-intro {
    margin-bottom: 0; }
  .tx-sf-event-mgt .field .control-error,
  .tx-sf-event-mgt .event-registration-row .control-error,
  .tx-sf-event-mgt .form-group .control-error {
    color: var(--c-error);
    font-size: 14px;
    font-size: 0.875rem;
    display: inline-block;
    padding-top: 5px; }
  .tx-sf-event-mgt .field.has-error .input,
  .tx-sf-event-mgt .field.has-error .checkboxes-container,
  .tx-sf-event-mgt .event-registration-row.has-error .input,
  .tx-sf-event-mgt .event-registration-row.has-error .checkboxes-container,
  .tx-sf-event-mgt .form-group.has-error .input,
  .tx-sf-event-mgt .form-group.has-error .checkboxes-container {
    border-bottom-color: var(--c-error); }
  .tx-sf-event-mgt .field.has-error .checkmark,
  .tx-sf-event-mgt .event-registration-row.has-error .checkmark,
  .tx-sf-event-mgt .form-group.has-error .checkmark {
    border-color: var(--c-error); }
  .tx-sf-event-mgt .field.has-error .control-label,
  .tx-sf-event-mgt .event-registration-row.has-error .control-label,
  .tx-sf-event-mgt .form-group.has-error .control-label {
    color: var(--c-error); }
  .tx-sf-event-mgt .field.has-error .control-checkbox span,
  .tx-sf-event-mgt .field.has-error .form-check-label span,
  .tx-sf-event-mgt .event-registration-row.has-error .control-checkbox span,
  .tx-sf-event-mgt .event-registration-row.has-error .form-check-label span,
  .tx-sf-event-mgt .form-group.has-error .control-checkbox span,
  .tx-sf-event-mgt .form-group.has-error .form-check-label span {
    color: var(--c-error); }
  .tx-sf-event-mgt .field .help-block.error,
  .tx-sf-event-mgt .event-registration-row .help-block.error,
  .tx-sf-event-mgt .form-group .help-block.error {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    background-color: var(--c-error);
    font-size: 22px;
    font-size: 1.375rem;
    max-width: 780px;
    padding: 0.625rem 1.25rem;
    margin-top: 0.625rem; }
    .tx-sf-event-mgt .field .help-block.error:before,
    .tx-sf-event-mgt .event-registration-row .help-block.error:before,
    .tx-sf-event-mgt .form-group .help-block.error:before {
      content: "";
      display: inline-block;
      background-size: 20px;
      width: 20px;
      height: 20px;
      margin-right: 20px;
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2036%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%3E%3Cpath%20d%3D%22m3.2%203.2%2029.08%2029.08%22%2F%3E%3Cpath%20d%3D%22m32.28%203.2-29.08%2029.08%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
      background-repeat: no-repeat; }
  .tx-sf-event-mgt .field.date-field,
  .tx-sf-event-mgt .event-registration-row.date-field,
  .tx-sf-event-mgt .form-group.date-field {
    max-width: 380px; }
  .tx-sf-event-mgt .field.radiobutton-field > .input,
  .tx-sf-event-mgt .event-registration-row.radiobutton-field > .input,
  .tx-sf-event-mgt .form-group.radiobutton-field > .input {
    border: none; }
  .tx-sf-event-mgt .field.checkbox-field,
  .tx-sf-event-mgt .event-registration-row.checkbox-field,
  .tx-sf-event-mgt .form-group.checkbox-field {
    border: none; }

.tx-sf-event-mgt label,
.tx-sf-event-mgt .control-label {
  font-size: 14px;
  font-size: 0.875rem;
  color: #00848d; }
  .tx-sf-event-mgt label--top,
  .tx-sf-event-mgt .control-label--top {
    margin-bottom: 0.9375rem; }

.tx-sf-event-mgt input[type="text"],
.tx-sf-event-mgt input[type="email"],
.tx-sf-event-mgt input[type="tel"],
.tx-sf-event-mgt input[type="url"],
.tx-sf-event-mgt textarea,
.tx-sf-event-mgt select {
  width: 100%;
  height: 60px;
  border: 1px solid transparent;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 0 0 0 1.25rem;
  margin-bottom: 0.3125rem;
  background-color: transparent;
  -webkit-transition: background-color 350ms ease-in-out;
  transition: background-color 350ms ease-in-out; }
  .tx-sf-event-mgt input[type="text"]::-webkit-input-placeholder, .tx-sf-event-mgt input[type="email"]::-webkit-input-placeholder, .tx-sf-event-mgt input[type="tel"]::-webkit-input-placeholder, .tx-sf-event-mgt input[type="url"]::-webkit-input-placeholder, .tx-sf-event-mgt textarea::-webkit-input-placeholder, .tx-sf-event-mgt select::-webkit-input-placeholder {
    color: #737373; }
  .tx-sf-event-mgt input[type="text"]::-moz-placeholder, .tx-sf-event-mgt input[type="email"]::-moz-placeholder, .tx-sf-event-mgt input[type="tel"]::-moz-placeholder, .tx-sf-event-mgt input[type="url"]::-moz-placeholder, .tx-sf-event-mgt textarea::-moz-placeholder, .tx-sf-event-mgt select::-moz-placeholder {
    color: #737373; }
  .tx-sf-event-mgt input[type="text"]:-ms-input-placeholder, .tx-sf-event-mgt input[type="email"]:-ms-input-placeholder, .tx-sf-event-mgt input[type="tel"]:-ms-input-placeholder, .tx-sf-event-mgt input[type="url"]:-ms-input-placeholder, .tx-sf-event-mgt textarea:-ms-input-placeholder, .tx-sf-event-mgt select:-ms-input-placeholder {
    color: #737373; }
  .tx-sf-event-mgt input[type="text"]::-ms-input-placeholder, .tx-sf-event-mgt input[type="email"]::-ms-input-placeholder, .tx-sf-event-mgt input[type="tel"]::-ms-input-placeholder, .tx-sf-event-mgt input[type="url"]::-ms-input-placeholder, .tx-sf-event-mgt textarea::-ms-input-placeholder, .tx-sf-event-mgt select::-ms-input-placeholder {
    color: #737373; }
  .tx-sf-event-mgt input[type="text"]::placeholder,
  .tx-sf-event-mgt input[type="email"]::placeholder,
  .tx-sf-event-mgt input[type="tel"]::placeholder,
  .tx-sf-event-mgt input[type="url"]::placeholder,
  .tx-sf-event-mgt textarea::placeholder,
  .tx-sf-event-mgt select::placeholder {
    color: #737373; }
  .tx-sf-event-mgt input[type="text"]:not(select):focus,
  .tx-sf-event-mgt input[type="email"]:not(select):focus,
  .tx-sf-event-mgt input[type="tel"]:not(select):focus,
  .tx-sf-event-mgt input[type="url"]:not(select):focus,
  .tx-sf-event-mgt textarea:not(select):focus,
  .tx-sf-event-mgt select:not(select):focus {
    background-color: #D9EDEE;
    border: 1px solid #00848d;
    -webkit-transition: background-color 350ms ease-in-out;
    transition: background-color 350ms ease-in-out; }
  .tx-sf-event-mgt input[type="text"].focus-white:not(select):focus,
  .tx-sf-event-mgt input[type="email"].focus-white:not(select):focus,
  .tx-sf-event-mgt input[type="tel"].focus-white:not(select):focus,
  .tx-sf-event-mgt input[type="url"].focus-white:not(select):focus,
  .tx-sf-event-mgt textarea.focus-white:not(select):focus,
  .tx-sf-event-mgt select.focus-white:not(select):focus {
    background-color: #fff;
    border: none;
    -webkit-transition: background-color 350ms ease-in-out;
    transition: background-color 350ms ease-in-out; }

.tx-sf-event-mgt textarea {
  height: 150px;
  padding: 1.25rem;
  border: 1px solid #9D9D9C;
  background-color: transparent; }
  .tx-sf-event-mgt textarea:focus {
    border: 1px solid #00848d; }

.tx-sf-event-mgt .radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid #00848d !important;
  padding-bottom: 0.3125rem !important; }
  .tx-sf-event-mgt .radio-group legend {
    display: block;
    position: absolute;
    bottom: -1.25rem;
    left: 0;
    font-size: 14px;
    font-size: 0.875rem;
    color: #00848d; }

.tx-sf-event-mgt .radio-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1.25rem;
  height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .tx-sf-event-mgt .radio-wrapper label {
    font-size: 18px;
    font-size: 1.125rem;
    position: relative;
    color: #000000;
    bottom: auto;
    left: auto;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    cursor: pointer; }
  .tx-sf-event-mgt .radio-wrapper [type="radio"]:checked,
  .tx-sf-event-mgt .radio-wrapper [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px; }
  .tx-sf-event-mgt .radio-wrapper [type="radio"]:checked + label,
  .tx-sf-event-mgt .radio-wrapper [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #000; }
  .tx-sf-event-mgt .radio-wrapper [type="radio"]:checked + label:before,
  .tx-sf-event-mgt .radio-wrapper [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    background: #D9EDEE; }
  .tx-sf-event-mgt .radio-wrapper [type="radio"]:checked + label:after,
  .tx-sf-event-mgt .radio-wrapper [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #00848d;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .tx-sf-event-mgt .radio-wrapper [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0); }
  .tx-sf-event-mgt .radio-wrapper [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }

.tx-sf-event-mgt .checkboxes-container:not(.checkboxes-container--fullsize) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    .tx-sf-event-mgt .checkboxes-container:not(.checkboxes-container--fullsize) {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }
  .tx-sf-event-mgt .checkboxes-container:not(.checkboxes-container--fullsize) > * {
    margin-right: 20px;
    margin-bottom: 0.625rem;
    /*
            @media only screen and (min-width: 768px) {
                width: 30%;
                min-width: 210px;
            }
*/ }

.tx-sf-event-mgt .checkboxes-container:not(.checkboxes-container--fullsize) .checkbox-wrapper {
  display: inline-block; }

.tx-sf-event-mgt .checkboxes-container.checkboxes-container--fullsize .control-checkbox {
  margin-bottom: 15px; }

.tx-sf-event-mgt .checkbox-wrapper {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  font-size: 1.125rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 1.4; }
  .tx-sf-event-mgt .checkbox-wrapper [type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
    .tx-sf-event-mgt .checkbox-wrapper [type="checkbox"]:checked ~ .checkmark:after {
      display: block; }
  .tx-sf-event-mgt .checkbox-wrapper .checkmark:after {
    content: "";
    position: absolute;
    display: none; }
  .tx-sf-event-mgt .checkbox-wrapper .checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 1px solid #00848d; }
    .tx-sf-event-mgt .checkbox-wrapper .checkmark:after {
      left: -9px;
      top: -6px;
      -webkit-transform: rotate(45deg) scale(0.5);
              transform: rotate(45deg) scale(0.5);
      height: 29px;
      width: 15px;
      margin-left: 60%;
      border-bottom: 8px solid #00848d;
      border-right: 8px solid #00848d; }

.tx-sf-event-mgt .select-wrapper {
  position: relative; }
  .tx-sf-event-mgt .select-wrapper.disabled {
    opacity: 0.4; }
  .tx-sf-event-mgt .select-wrapper select {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border: 1px solid #00848d;
    font-weight: 600;
    line-height: 1.2;
    color: #000000; }
    .tx-sf-event-mgt .select-wrapper select:disabled {
      cursor: auto;
      opacity: 0.6; }
    .tx-sf-event-mgt .select-wrapper select option {
      font-size: 18px;
      font-size: 1.125rem;
      background-color: initial;
      font-weight: 400; }
  .tx-sf-event-mgt .select-wrapper select::-ms-expand {
    display: none; }
  .tx-sf-event-mgt .select-wrapper:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 0 4px 4px 0;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2037%2022%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m32.88%203.2-14.7%2015.5-14.98-15.5%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    z-index: 0; }
  .tx-sf-event-mgt .select-wrapper.multiple select {
    height: 150px;
    padding: 0 0.9375rem;
    background-color: #fff; }
  .tx-sf-event-mgt .select-wrapper.multiple:after {
    content: none;
    background-image: none; }

.tx-sf-event-mgt label {
  position: relative;
  display: block; }
  .tx-sf-event-mgt label.form-error {
    padding-top: 5px;
    color: var(--c-error);
    font-weight: bold; }

.tx-sf-event-mgt .form-group.textarea-field label .textarea-counter {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1; }

.tx-sf-event-mgt .vd-filter .container-fluid {
  padding: 0; }

.tx-sf-event-mgt .vd-filter .search-mask {
  padding: 0; }
  .tx-sf-event-mgt .vd-filter .search-mask__header {
    color: #00848d; }
  .tx-sf-event-mgt .vd-filter .search-mask .checkbox-wrapper > span {
    font-weight: 600; }

.tx-sf-event-mgt .calendars-additional > :nth-child(1) {
  font-size: 22px;
  font-size: 1.375rem; }

@media only screen and (min-width: 768px) {
  .tx-sf-event-mgt .calendars-additional .row > :nth-child(2) ul {
    margin-left: 1.5625rem; } }

.tx-sf-event-mgt .calendars-additional ul {
  list-style: none;
  padding-left: 0; }
  .tx-sf-event-mgt .calendars-additional ul li {
    font-size: 18px;
    font-size: 1.125rem; }

.ce.ce--vd_event_registration .ce__title {
  color: #00848d; }

.ce.ce--vd_event_registration .radio-group {
  width: 100%; }

.tx-sf-event-mgt > h2 {
  margin-top: 3.125rem !important; }

.tx-sf-event-mgt .event-registration-row {
  font-size: 18px;
  font-size: 1.125rem; }
  .tx-sf-event-mgt .event-registration-row .event-list-label,
  .tx-sf-event-mgt .event-registration-row .event-registration-label {
    margin-right: 1.25rem; }

.tx-sf-event-mgt .registration > fieldset > :nth-child(1) {
  display: none; }

.tx-sf-event-mgt .registration .input {
  width: 100%; }

.tx-sf-event-mgt .registration .checkbox-field {
  border: none;
  display: inline-block; }

.tx-sf-event-mgt .registration .additional > .event-registration-row {
  border: none;
  margin-bottom: 0; }

.tx-sf-event-mgt .registration .field-acceptpp {
  margin-bottom: 0.9375rem; }

.tx-sf-event-mgt .back-links {
  margin: 2.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }
  .tx-sf-event-mgt .back-links > :first-child {
    margin-right: 1.25rem; }

.tx-sf-event-mgt .form-section__information [class^="col-"] p:first-of-type {
  margin-top: 0; }

.tx-sf-event-mgt .form-section:not(:last-of-type) .row:last-child .form-group {
  margin-bottom: 0; }

.ce.ce--form_formframework .event-registration .ce__cta {
  margin-top: 1.5rem; }
  .ce.ce--form_formframework .event-registration .ce__cta input[type="submit"] {
    margin-top: 0.75rem; }

.ce.ce--form_formframework .event-registration .h-captcha ~ .field-errors {
  position: relative;
  display: block;
  width: 100%;
  color: #ff0019;
  padding-top: 16px;
  font-weight: 600; }

.ce.ce--form_formframework .event-registration--confirmation .vd-message {
  margin-top: 0; }

.ce.ce--form_formframework .event-registration--confirmation .back-links {
  margin-top: 2.5rem; }

.ce--sfeventmgt_pieventdetail .ce__title h1 {
  color: #00848d;
  font-weight: 600 !important; }

.ce--sfeventmgt_pieventdetail .ce__title .tags {
  margin-bottom: 1.875rem; }
  .ce--sfeventmgt_pieventdetail .ce__title .tags__types {
    margin-bottom: 0.625rem; }
  .ce--sfeventmgt_pieventdetail .ce__title .tags__types > *,
  .ce--sfeventmgt_pieventdetail .ce__title .tags__subjects > * {
    margin-right: 0.3125rem; }

.ce--sfeventmgt_pieventdetail .ce__title .subtitle {
  margin-top: 0.9375rem; }

.ce--sfeventmgt_pieventdetail .event > :nth-child(3) {
  margin-left: auto; }

.ce--sfeventmgt_pieventdetail .event h1,
.ce--sfeventmgt_pieventdetail .event h2,
.ce--sfeventmgt_pieventdetail .event h3,
.ce--sfeventmgt_pieventdetail .event .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce--sfeventmgt_pieventdetail .event legend,
.ce--sfeventmgt_pieventdetail .event h4 {
  margin-top: 0 !important; }

.ce--sfeventmgt_pieventdetail .event h2 {
  font-weight: 400; }

.ce--sfeventmgt_pieventdetail .event a:not(.vd-button) {
  font-weight: 400; }

.ce--sfeventmgt_pieventdetail .event .event-detail-row {
  margin-bottom: 1.25rem; }
  @media only screen and (min-width: 768px) {
    .ce--sfeventmgt_pieventdetail .event .event-detail-row {
      margin-bottom: 2.5rem; } }
  .ce--sfeventmgt_pieventdetail .event .event-detail-row h2 {
    font-size: 25px;
    font-size: 1.5625rem; }
    @media only screen and (min-width: 768px) {
      .ce--sfeventmgt_pieventdetail .event .event-detail-row h2 {
        font-size: 32px;
        font-size: 2rem; } }
  .ce--sfeventmgt_pieventdetail .event .event-detail-row .ce__title h1 {
    margin-bottom: 0;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto; }
  .ce--sfeventmgt_pieventdetail .event .event-detail-row .ce__title h3, .ce--sfeventmgt_pieventdetail .event .event-detail-row .ce__title .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce--sfeventmgt_pieventdetail .event .event-detail-row .ce__title legend {
    font-size: 22px;
    font-size: 1.375rem; }

.ce--sfeventmgt_pieventdetail .event .event-detail-block {
  margin-bottom: 1.875rem; }
  .ce--sfeventmgt_pieventdetail .event .event-detail-block .ce__title h3, .ce--sfeventmgt_pieventdetail .event .event-detail-block .ce__title .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce--sfeventmgt_pieventdetail .event .event-detail-block .ce__title legend {
    font-size: 22px;
    font-size: 1.375rem; }

.ce--sfeventmgt_pieventdetail .event__title {
  margin-bottom: 1.25rem !important; }

.ce--sfeventmgt_pieventdetail .event__teaser p {
  font-size: 25px;
  font-size: 1.5625rem;
  margin: 1.5625rem 0; }
  @media only screen and (min-width: 768px) {
    .ce--sfeventmgt_pieventdetail .event__teaser p {
      font-size: 32px;
      font-size: 2rem; } }

.ce--sfeventmgt_pieventdetail .event__meta {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600; }
  @media only screen and (min-width: 768px) {
    .ce--sfeventmgt_pieventdetail .event__meta {
      font-size: 40px;
      font-size: 2.5rem; } }
  .ce--sfeventmgt_pieventdetail .event__meta > :first-child {
    white-space: pre; }

.ce--sfeventmgt_pieventdetail .event__additionalDetails .value--mail a:before {
  content: none; }

.ce--sfeventmgt_pieventdetail .event__registration .registration-link {
  display: inline-block;
  margin-bottom: 1.25rem; }

.ce--sfeventmgt_pieventdetail .event__registration .vd-message {
  margin-bottom: 16px; }

.ce--sfeventmgt_pieventdetail .event__calendar-actions ul {
  padding-left: 0;
  list-style: none; }

.ce--sfeventmgt_pieventdetail .event__contacts .col-12 {
  margin-bottom: 1.875rem; }

.ce--sfeventmgt_pieventdetail .event__contacts .icon {
  display: none; }

.ce--sfeventmgt_pieventdetail .event__contacts .ce--vd_contact_card {
  padding-left: 0;
  padding-right: 0;
  margin: 0; }

.ce--sfeventmgt_pieventdetail .event__contacts .card {
  padding: 0; }
  .ce--sfeventmgt_pieventdetail .event__contacts .card > .ce__content {
    margin-top: 0; }
  .ce--sfeventmgt_pieventdetail .event__contacts .card .card__title--name h2 {
    color: #000; }
  .ce--sfeventmgt_pieventdetail .event__contacts .card .card__title--department h3, .ce--sfeventmgt_pieventdetail .event__contacts .card .card__title--department .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce--sfeventmgt_pieventdetail .event__contacts .card .card__title--department legend {
    font-size: 22px;
    font-size: 1.375rem; }
  .ce--sfeventmgt_pieventdetail .event__contacts .card ul {
    margin-top: 1.875rem !important; }

@media only screen and (min-width: 768px) {
  .ce--sfeventmgt_pieventdetail .event__contacts .col-12 {
    margin-bottom: 0; }
  .ce--sfeventmgt_pieventdetail .event__contacts .icon {
    display: block; }
  .ce--sfeventmgt_pieventdetail .event__contacts .card__title--name h2 {
    min-height: 3.75rem; }
  .ce--sfeventmgt_pieventdetail .event__contacts .card .card__title--department h3, .ce--sfeventmgt_pieventdetail .event__contacts .card .card__title--department .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce--sfeventmgt_pieventdetail .event__contacts .card .card__title--department legend {
    font-size: 25px;
    font-size: 1.5625rem; } }

.ce--sfeventmgt_pieventdetail .event-detail-box {
  background-color: #D9EDEE;
  padding: 1.875rem 1.25rem;
  margin-bottom: 2.5rem; }
  .ce--sfeventmgt_pieventdetail .event-detail-box--light_green {
    max-width: 420px; }
  .ce--sfeventmgt_pieventdetail .event-detail-box--light-red {
    background-color: #FCE5E5; }
    .ce--sfeventmgt_pieventdetail .event-detail-box--light-red h2, .ce--sfeventmgt_pieventdetail .event-detail-box--light-red h3, .ce--sfeventmgt_pieventdetail .event-detail-box--light-red .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce--sfeventmgt_pieventdetail .event-detail-box--light-red legend {
      color: #00848d; }
  .ce--sfeventmgt_pieventdetail .event-detail-box .icon {
    width: 40px;
    height: auto;
    margin-bottom: 1.25rem; }
    .ce--sfeventmgt_pieventdetail .event-detail-box .icon svg {
      width: 100%;
      height: 100%; }
  .ce--sfeventmgt_pieventdetail .event-detail-box__title h4 {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 0.625rem 0;
    font-weight: 600; }

.event-detail__content {
  padding-bottom: 40px; }

.event-detail__content__section.event-registration {
  margin-top: 2.5rem; }
  .event-detail__content__section.event-registration .vd-wrapper {
    padding: 40px; }
    @media only screen and (max-width: 991px) {
      .event-detail__content__section.event-registration .vd-wrapper {
        padding: 20px; } }
  @media only screen and (max-width: 540px) {
    .event-detail__content__section.event-registration .vd-button, .event-detail__content__section.event-registration #cookie_approval .button, #cookie_approval .event-detail__content__section.event-registration .button, .event-detail__content__section.event-registration .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .event-detail__content__section.event-registration input[type="submit"] {
      height: auto; } }
  .event-detail__content__section.event-registration .vd-message {
    margin-bottom: 16px; }

.event-detail .vd-cta {
  padding-bottom: 40px; }

.event-detail .event-description .ce__files {
  font-size: 22px;
  font-size: 1.375rem;
  margin-bottom: 1.875rem; }
  .event-detail .event-description .ce__files span:not(.vd-file-download__meta) {
    padding-right: 10px; }
  .event-detail .event-description .ce__files .vd-file-download__meta {
    font-weight: 400;
    font-size: 18px;
    display: inline-block; }
    .event-detail .event-description .ce__files .vd-file-download__meta:before {
      content: '('; }
    .event-detail .event-description .ce__files .vd-file-download__meta:after {
      content: ')'; }
  .event-detail .event-description .ce__files a {
    line-height: 27px;
    display: inline-block; }
    .event-detail .event-description .ce__files a:before {
      display: inline-block;
      content: '';
      height: 29px;
      width: 19px;
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20id%3D%22download%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217.521%22%20height%3D%2229.966%22%20viewBox%3D%220%200%2017.521%2029.966%22%3E\a%20%20%3Cpath%20id%3D%22right-arrow%22%20d%3D%22M14.042%2C0%2C12.628%2C1.414l6.293%2C6.293H0v2H18.921L12.628%2C16l1.414%2C1.414L22.75%2C8.708Z%22%20transform%3D%22translate%2817.521%29%20rotate%2890%29%22%20fill%3D%22%23005d7d%22%2F%3E%3Cpath%20id%3D%22Pfad_2619%22%20data-name%3D%22Pfad%202619%22%20d%3D%22M15767.349%2C7246.708h17.521%22%20transform%3D%22translate%28-15767.349%20-7217.742%29%22%20fill%3D%22none%22%20stroke%3D%22%23005d7d%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
      background-repeat: no-repeat;
      background-position: right center;
      margin-right: 10px;
      top: 8px;
      position: relative; }

.event-detail .event-detail__content__section--info-box .vd-message {
  color: #015D7D; }
  .event-detail .event-detail__content__section--info-box .vd-message .vd-message__wrapper {
    background-color: #ededed;
    padding: 40px; }
    @media only screen and (max-width: 991px) {
      .event-detail .event-detail__content__section--info-box .vd-message .vd-message__wrapper {
        padding: 20px; } }
  .event-detail .event-detail__content__section--info-box .vd-message .ce__bodytext {
    color: #000; }
    .event-detail .event-detail__content__section--info-box .vd-message .ce__bodytext p:nth-child(1) {
      margin-top: 0px; }
  .event-detail .event-detail__content__section--info-box .vd-message .ce__files {
    font-size: 22px;
    font-size: 1.375rem; }
    .event-detail .event-detail__content__section--info-box .vd-message .ce__files .vd-file-download__meta {
      font-weight: 400;
      font-size: 18px;
      padding-left: 10px; }
      .event-detail .event-detail__content__section--info-box .vd-message .ce__files .vd-file-download__meta:before {
        content: '('; }
      .event-detail .event-detail__content__section--info-box .vd-message .ce__files .vd-file-download__meta:after {
        content: ')'; }
    .event-detail .event-detail__content__section--info-box .vd-message .ce__files a:before {
      display: inline-block;
      content: '';
      height: 29px;
      width: 19px;
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20id%3D%22download%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217.521%22%20height%3D%2229.966%22%20viewBox%3D%220%200%2017.521%2029.966%22%3E\a%20%20%3Cpath%20id%3D%22right-arrow%22%20d%3D%22M14.042%2C0%2C12.628%2C1.414l6.293%2C6.293H0v2H18.921L12.628%2C16l1.414%2C1.414L22.75%2C8.708Z%22%20transform%3D%22translate%2817.521%29%20rotate%2890%29%22%20fill%3D%22%23005d7d%22%2F%3E%3Cpath%20id%3D%22Pfad_2619%22%20data-name%3D%22Pfad%202619%22%20d%3D%22M15767.349%2C7246.708h17.521%22%20transform%3D%22translate%28-15767.349%20-7217.742%29%22%20fill%3D%22none%22%20stroke%3D%22%23005d7d%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
      background-repeat: no-repeat;
      background-position: right center;
      margin-right: 10px;
      top: 8px;
      position: relative; }

.event-detail .vd-cta .vd-button, .event-detail .vd-cta #cookie_approval .button, #cookie_approval .event-detail .vd-cta .button, .event-detail .vd-cta .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .event-detail .vd-cta input[type="submit"] {
  border-radius: 0px; }

.ce--vd_event_list .ce__title,
.ce--vd_event_search .ce__title {
  color: #00848d; }

.ce h1,
.ce h2,
.ce h3,
.ce.ce--vd_job_form fieldset legend {
  margin-top: 0.625rem; }

.ce ul,
.ce ol {
  padding-left: 1.4375rem; }
  .ce ul li,
  .ce ol li {
    margin-bottom: 0.625rem;
    line-height: 1.2; }
    .ce ul li ul,
    .ce ul li ol,
    .ce ol li ul,
    .ce ol li ol {
      margin-top: 0.625rem; }
    .ce ul li ul,
    .ce ol li ul {
      padding-left: 0;
      margin-bottom: 0.625rem; }
      .ce ul li ul > li,
      .ce ol li ul > li {
        list-style: none; }
        .ce ul li ul > li:before,
        .ce ol li ul > li:before {
          content: "\2192";
          margin-right: 0.4375rem;
          font-size: 20px;
          font-size: 1.25rem; }

.ce ol li {
  padding-left: 5px; }

a[href^="tel:"] {
  /*
    @extend .link;
    @extend .link--dotted;
*/ }

@media only screen and (min-width: 768px) {
  .ce h1,
  .ce h2,
  .ce h3,
  .ce.ce--vd_job_form fieldset legend {
    margin-top: 0.9375rem; } }

.vd-form-wrapper.vd-form-wrapper--cleverreach form fieldset {
  border: none; }

.vd-form-wrapper.vd-form-wrapper--cleverreach form .actions {
  padding-top: 2.5rem; }

.vd-form-wrapper.vd-form-wrapper--cleverreach form {
  background: #FAFAFA;
  padding: 0.9375rem; }
  @media only screen and (min-width: 768px) {
    .vd-form-wrapper.vd-form-wrapper--cleverreach form {
      padding: 1.875rem; } }

.vd-form-wrapper.vd-form-wrapper--cleverreach fieldset {
  border: none;
  padding: 0;
  margin: 0; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach fieldset legend {
    display: none; }

.vd-form-wrapper.vd-form-wrapper--cleverreach .field,
.vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row,
.vd-form-wrapper.vd-form-wrapper--cleverreach .form-group {
  position: relative;
  max-width: 780px;
  margin-bottom: 2.5rem; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .field .input:not(.checkbox),
  .vd-form-wrapper.vd-form-wrapper--cleverreach .field .checkboxes-container,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row .input:not(.checkbox),
  .vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row .checkboxes-container,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .form-group .input:not(.checkbox),
  .vd-form-wrapper.vd-form-wrapper--cleverreach .form-group .checkboxes-container {
    position: relative;
    border-bottom: 2px solid #00848d;
    margin-bottom: 0.3125rem; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .field--is-intro,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row--is-intro,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .form-group--is-intro {
    margin-bottom: 0; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .field .control-error,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row .control-error,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .form-group .control-error {
    color: var(--c-error);
    font-size: 14px;
    font-size: 0.875rem;
    display: inline-block;
    padding-top: 5px; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .field.has-error .input,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .field.has-error .checkboxes-container,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row.has-error .input,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row.has-error .checkboxes-container,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .form-group.has-error .input,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .form-group.has-error .checkboxes-container {
    border-bottom-color: var(--c-error); }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .field.has-error .checkmark,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row.has-error .checkmark,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .form-group.has-error .checkmark {
    border-color: var(--c-error); }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .field.has-error .control-label,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row.has-error .control-label,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .form-group.has-error .control-label {
    color: var(--c-error); }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .field.has-error .control-checkbox span,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .field.has-error .form-check-label span,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row.has-error .control-checkbox span,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row.has-error .form-check-label span,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .form-group.has-error .control-checkbox span,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .form-group.has-error .form-check-label span {
    color: var(--c-error); }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .field .help-block.error,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row .help-block.error,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .form-group .help-block.error {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    background-color: var(--c-error);
    font-size: 22px;
    font-size: 1.375rem;
    max-width: 780px;
    padding: 0.625rem 1.25rem;
    margin-top: 0.625rem; }
    .vd-form-wrapper.vd-form-wrapper--cleverreach .field .help-block.error:before,
    .vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row .help-block.error:before,
    .vd-form-wrapper.vd-form-wrapper--cleverreach .form-group .help-block.error:before {
      content: "";
      display: inline-block;
      background-size: 20px;
      width: 20px;
      height: 20px;
      margin-right: 20px;
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2036%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%3E%3Cpath%20d%3D%22m3.2%203.2%2029.08%2029.08%22%2F%3E%3Cpath%20d%3D%22m32.28%203.2-29.08%2029.08%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
      background-repeat: no-repeat; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .field.date-field,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row.date-field,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .form-group.date-field {
    max-width: 380px; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .field.radiobutton-field > .input,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row.radiobutton-field > .input,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .form-group.radiobutton-field > .input {
    border: none; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .field.checkbox-field,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .event-registration-row.checkbox-field,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .form-group.checkbox-field {
    border: none; }

.vd-form-wrapper.vd-form-wrapper--cleverreach label,
.vd-form-wrapper.vd-form-wrapper--cleverreach .control-label {
  font-size: 14px;
  font-size: 0.875rem;
  color: #00848d; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach label--top,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .control-label--top {
    margin-bottom: 0.9375rem; }

.vd-form-wrapper.vd-form-wrapper--cleverreach input[type="text"],
.vd-form-wrapper.vd-form-wrapper--cleverreach input[type="email"],
.vd-form-wrapper.vd-form-wrapper--cleverreach input[type="tel"],
.vd-form-wrapper.vd-form-wrapper--cleverreach input[type="url"],
.vd-form-wrapper.vd-form-wrapper--cleverreach textarea,
.vd-form-wrapper.vd-form-wrapper--cleverreach select {
  width: 100%;
  height: 60px;
  border: 1px solid transparent;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 0 0 0 1.25rem;
  margin-bottom: 0.3125rem;
  background-color: transparent;
  -webkit-transition: background-color 350ms ease-in-out;
  transition: background-color 350ms ease-in-out; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="text"]::-webkit-input-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="email"]::-webkit-input-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="tel"]::-webkit-input-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="url"]::-webkit-input-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach textarea::-webkit-input-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach select::-webkit-input-placeholder {
    color: #737373; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="text"]::-moz-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="email"]::-moz-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="tel"]::-moz-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="url"]::-moz-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach textarea::-moz-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach select::-moz-placeholder {
    color: #737373; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="text"]:-ms-input-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="email"]:-ms-input-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="tel"]:-ms-input-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="url"]:-ms-input-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach textarea:-ms-input-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach select:-ms-input-placeholder {
    color: #737373; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="text"]::-ms-input-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="email"]::-ms-input-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="tel"]::-ms-input-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="url"]::-ms-input-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach textarea::-ms-input-placeholder, .vd-form-wrapper.vd-form-wrapper--cleverreach select::-ms-input-placeholder {
    color: #737373; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="text"]::placeholder,
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="email"]::placeholder,
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="tel"]::placeholder,
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="url"]::placeholder,
  .vd-form-wrapper.vd-form-wrapper--cleverreach textarea::placeholder,
  .vd-form-wrapper.vd-form-wrapper--cleverreach select::placeholder {
    color: #737373; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="text"]:not(select):focus,
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="email"]:not(select):focus,
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="tel"]:not(select):focus,
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="url"]:not(select):focus,
  .vd-form-wrapper.vd-form-wrapper--cleverreach textarea:not(select):focus,
  .vd-form-wrapper.vd-form-wrapper--cleverreach select:not(select):focus {
    background-color: #D9EDEE;
    border: 1px solid #00848d;
    -webkit-transition: background-color 350ms ease-in-out;
    transition: background-color 350ms ease-in-out; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="text"].focus-white:not(select):focus,
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="email"].focus-white:not(select):focus,
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="tel"].focus-white:not(select):focus,
  .vd-form-wrapper.vd-form-wrapper--cleverreach input[type="url"].focus-white:not(select):focus,
  .vd-form-wrapper.vd-form-wrapper--cleverreach textarea.focus-white:not(select):focus,
  .vd-form-wrapper.vd-form-wrapper--cleverreach select.focus-white:not(select):focus {
    background-color: #fff;
    border: none;
    -webkit-transition: background-color 350ms ease-in-out;
    transition: background-color 350ms ease-in-out; }

.vd-form-wrapper.vd-form-wrapper--cleverreach textarea {
  height: 150px;
  padding: 1.25rem;
  border: 1px solid #9D9D9C;
  background-color: transparent; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach textarea:focus {
    border: 1px solid #00848d; }

.vd-form-wrapper.vd-form-wrapper--cleverreach .radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid #00848d !important;
  padding-bottom: 0.3125rem !important; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .radio-group legend {
    display: block;
    position: absolute;
    bottom: -1.25rem;
    left: 0;
    font-size: 14px;
    font-size: 0.875rem;
    color: #00848d; }

.vd-form-wrapper.vd-form-wrapper--cleverreach .radio-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1.25rem;
  height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .radio-wrapper label {
    font-size: 18px;
    font-size: 1.125rem;
    position: relative;
    color: #000000;
    bottom: auto;
    left: auto;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    cursor: pointer; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .radio-wrapper [type="radio"]:checked,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .radio-wrapper [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .radio-wrapper [type="radio"]:checked + label,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .radio-wrapper [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #000; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .radio-wrapper [type="radio"]:checked + label:before,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .radio-wrapper [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    background: #D9EDEE; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .radio-wrapper [type="radio"]:checked + label:after,
  .vd-form-wrapper.vd-form-wrapper--cleverreach .radio-wrapper [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #00848d;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .radio-wrapper [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0); }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .radio-wrapper [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }

.vd-form-wrapper.vd-form-wrapper--cleverreach .checkboxes-container:not(.checkboxes-container--fullsize) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    .vd-form-wrapper.vd-form-wrapper--cleverreach .checkboxes-container:not(.checkboxes-container--fullsize) {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .checkboxes-container:not(.checkboxes-container--fullsize) > * {
    margin-right: 20px;
    margin-bottom: 0.625rem;
    /*
            @media only screen and (min-width: 768px) {
                width: 30%;
                min-width: 210px;
            }
*/ }

.vd-form-wrapper.vd-form-wrapper--cleverreach .checkboxes-container:not(.checkboxes-container--fullsize) .checkbox-wrapper {
  display: inline-block; }

.vd-form-wrapper.vd-form-wrapper--cleverreach .checkboxes-container.checkboxes-container--fullsize .control-checkbox {
  margin-bottom: 15px; }

.vd-form-wrapper.vd-form-wrapper--cleverreach .checkbox-wrapper {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  font-size: 1.125rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 1.4; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .checkbox-wrapper [type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
    .vd-form-wrapper.vd-form-wrapper--cleverreach .checkbox-wrapper [type="checkbox"]:checked ~ .checkmark:after {
      display: block; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .checkbox-wrapper .checkmark:after {
    content: "";
    position: absolute;
    display: none; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .checkbox-wrapper .checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 1px solid #00848d; }
    .vd-form-wrapper.vd-form-wrapper--cleverreach .checkbox-wrapper .checkmark:after {
      left: -9px;
      top: -6px;
      -webkit-transform: rotate(45deg) scale(0.5);
              transform: rotate(45deg) scale(0.5);
      height: 29px;
      width: 15px;
      margin-left: 60%;
      border-bottom: 8px solid #00848d;
      border-right: 8px solid #00848d; }

.vd-form-wrapper.vd-form-wrapper--cleverreach .select-wrapper {
  position: relative; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .select-wrapper.disabled {
    opacity: 0.4; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .select-wrapper select {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border: 1px solid #00848d;
    font-weight: 600;
    line-height: 1.2;
    color: #000000; }
    .vd-form-wrapper.vd-form-wrapper--cleverreach .select-wrapper select:disabled {
      cursor: auto;
      opacity: 0.6; }
    .vd-form-wrapper.vd-form-wrapper--cleverreach .select-wrapper select option {
      font-size: 18px;
      font-size: 1.125rem;
      background-color: initial;
      font-weight: 400; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .select-wrapper select::-ms-expand {
    display: none; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .select-wrapper:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 0 4px 4px 0;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2037%2022%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m32.88%203.2-14.7%2015.5-14.98-15.5%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    z-index: 0; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .select-wrapper.multiple select {
    height: 150px;
    padding: 0 0.9375rem;
    background-color: #fff; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach .select-wrapper.multiple:after {
    content: none;
    background-image: none; }

.vd-form-wrapper.vd-form-wrapper--cleverreach label {
  position: relative;
  display: block; }
  .vd-form-wrapper.vd-form-wrapper--cleverreach label.form-error {
    padding-top: 5px;
    color: var(--c-error);
    font-weight: bold; }

.vd-form-wrapper.vd-form-wrapper--cleverreach .form-group.textarea-field label .textarea-counter {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1; }

.ce.ce--vd_newsletter_registration .vd-wrapper {
  padding: 2.5rem 1.25rem;
  background-color: #00848d; }

.ce.ce--vd_newsletter_registration .form__title {
  display: block;
  color: #ffffff;
  font-size: 22px;
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
  font-weight: 700; }

.ce.ce--vd_newsletter_registration .subheader {
  color: #ffffff;
  font-size: 18px;
  font-size: 1.125rem; }

.ce.ce--vd_newsletter_registration .form__input-container {
  width: 100%;
  display: inline-block;
  margin-top: 1.25rem;
  margin-bottom: 0.625rem; }
  .ce.ce--vd_newsletter_registration .form__input-container input {
    width: 100%;
    height: 45px;
    background-color: #00848d;
    border: 2px solid #ffffff;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 0.9375rem;
    color: #ffffff; }
    .ce.ce--vd_newsletter_registration .form__input-container input::-webkit-input-placeholder {
      color: #ffffff;
      opacity: 1; }
    .ce.ce--vd_newsletter_registration .form__input-container input::-moz-placeholder {
      color: #ffffff;
      opacity: 1; }
    .ce.ce--vd_newsletter_registration .form__input-container input:-ms-input-placeholder {
      color: #ffffff;
      opacity: 1; }
    .ce.ce--vd_newsletter_registration .form__input-container input::-ms-input-placeholder {
      color: #ffffff;
      opacity: 1; }
    .ce.ce--vd_newsletter_registration .form__input-container input::placeholder {
      color: #ffffff;
      opacity: 1; }

.ce.ce--vd_newsletter_registration .form__cta {
  display: inline-block;
  margin-bottom: 1.25rem; }

.ce.ce--vd_newsletter_registration .checkbox-wrapper {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 18px;
  font-size: 1.125rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  max-width: 550px;
  line-height: 1.2; }
  .ce.ce--vd_newsletter_registration .checkbox-wrapper [type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
    .ce.ce--vd_newsletter_registration .checkbox-wrapper [type="checkbox"]:checked ~ .checkmark:after {
      display: block; }
  .ce.ce--vd_newsletter_registration .checkbox-wrapper.checkbox__label {
    color: #ffffff;
    font-size: 16px;
    font-size: 1rem; }
    .ce.ce--vd_newsletter_registration .checkbox-wrapper.checkbox__label .checkbox__text p {
      margin: 0; }
    .ce.ce--vd_newsletter_registration .checkbox-wrapper.checkbox__label .link, .ce.ce--vd_newsletter_registration .checkbox-wrapper.checkbox__label .ce.ce--vd_social_wall .vd-feed__link, .ce.ce--vd_social_wall .ce.ce--vd_newsletter_registration .checkbox-wrapper.checkbox__label .vd-feed__link {
      color: #ffffff; }
      .ce.ce--vd_newsletter_registration .checkbox-wrapper.checkbox__label .link:hover, .ce.ce--vd_newsletter_registration .checkbox-wrapper.checkbox__label .ce.ce--vd_social_wall .vd-feed__link:hover, .ce.ce--vd_social_wall .ce.ce--vd_newsletter_registration .checkbox-wrapper.checkbox__label .vd-feed__link:hover, .ce.ce--vd_newsletter_registration .checkbox-wrapper.checkbox__label .link:focus, .ce.ce--vd_newsletter_registration .checkbox-wrapper.checkbox__label .ce.ce--vd_social_wall .vd-feed__link:focus, .ce.ce--vd_social_wall .ce.ce--vd_newsletter_registration .checkbox-wrapper.checkbox__label .vd-feed__link:focus {
        text-decoration: none; }
  .ce.ce--vd_newsletter_registration .checkbox-wrapper .checkmark:after {
    content: "";
    position: absolute;
    display: none; }
  .ce.ce--vd_newsletter_registration .checkbox-wrapper .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 1px solid #00848d;
    margin-top: 3px; }
    .ce.ce--vd_newsletter_registration .checkbox-wrapper .checkmark:after {
      left: -9px;
      top: -6px;
      -webkit-transform: rotate(45deg) scale(0.5);
              transform: rotate(45deg) scale(0.5);
      height: 29px;
      width: 15px;
      margin-left: 60%;
      border-bottom: 8px solid #00848d;
      border-right: 8px solid #00848d; }

@media only screen and (min-width: 768px) {
  .ce.ce--vd_newsletter_registration .vd-wrapper {
    padding: 2.5rem;
    background-color: #00848d; }
  .ce.ce--vd_newsletter_registration .form--newsletter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
    .ce.ce--vd_newsletter_registration .form--newsletter > :nth-child(1) {
      margin-right: 2.5rem; }
  .ce.ce--vd_newsletter_registration .form__input-container {
    margin-right: 1.25rem;
    margin-top: 0;
    width: 370px; } }

.ce.ce--vd_advisory .vd-wrapper {
  background-color: #D9EDEE;
  text-align: center;
  padding: 2.5rem 1.875rem; }

.ce.ce--vd_advisory .ce__title h1,
.ce.ce--vd_advisory .ce__title h2,
.ce.ce--vd_advisory .ce__title h3,
.ce.ce--vd_advisory .ce__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_advisory .ce__title legend,
.ce.ce--vd_advisory .ce__title h4 {
  margin-top: 0;
  font-size: 30px;
  font-size: 1.875rem;
  color: #00848d;
  font-weight: 600; }

.ce.ce--vd_advisory .ce__title .icon {
  display: block;
  width: 50px;
  height: auto;
  margin: 0 auto 0.625rem auto; }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .ce.ce--vd_advisory .ce__title .icon {
      height: 50px; } }

.ce.ce--vd_advisory .ce__content h3, .ce.ce--vd_advisory .ce__content .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce.ce--vd_advisory .ce__content legend {
  font-weight: 600;
  margin-bottom: 1.25rem;
  margin-top: 1.25rem; }
  .ce.ce--vd_advisory .ce__content h3 span, .ce.ce--vd_advisory .ce__content .ce.ce--vd_job_form fieldset legend span, .ce.ce--vd_job_form fieldset .ce.ce--vd_advisory .ce__content legend span {
    display: block; }

.ce.ce--vd_advisory .ce__content .vd-button, .ce.ce--vd_advisory .ce__content #cookie_approval .button, #cookie_approval .ce.ce--vd_advisory .ce__content .button, .ce.ce--vd_advisory .ce__content .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .ce.ce--vd_advisory .ce__content input[type="submit"] {
  background-color: #00848d;
  color: #fff; }

@media only screen and (min-width: 768px) {
  .ce.ce--vd_advisory .ce__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .ce.ce--vd_advisory .ce__title h1,
    .ce.ce--vd_advisory .ce__title h2,
    .ce.ce--vd_advisory .ce__title h3,
    .ce.ce--vd_advisory .ce__title .ce.ce--vd_job_form fieldset legend,
    .ce.ce--vd_job_form fieldset .ce.ce--vd_advisory .ce__title legend,
    .ce.ce--vd_advisory .ce__title h4 {
      font-size: 40px;
      font-size: 2.5rem;
      margin-bottom: 0; }
    .ce.ce--vd_advisory .ce__title .icon {
      display: inline-block;
      margin: 0 0.625rem 0 0; }
    .ce.ce--vd_advisory .ce__title .subtitle {
      margin-top: 1.875rem;
      width: 100%; }
  .ce.ce--vd_advisory .ce__content h3 span, .ce.ce--vd_advisory .ce__content .ce.ce--vd_job_form fieldset legend span, .ce.ce--vd_job_form fieldset .ce.ce--vd_advisory .ce__content legend span {
    display: inline-block; } }

.ce.ce--vd_services_teaser {
  background-color: #015D7D;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem; }
  @media only screen and (min-width: 768px) {
    .ce.ce--vd_services_teaser {
      padding-top: 7.5rem;
      padding-bottom: 7.5rem; } }
  .ce.ce--vd_services_teaser * {
    color: #fff !important; }
  .ce.ce--vd_services_teaser .vd-wrapper {
    position: relative; }
  @media only screen and (max-width: 991px) {
    .ce.ce--vd_services_teaser .ce__title > * {
      font-size: 50px;
      font-size: 3.125rem;
      line-height: 60px;
      margin-bottom: 35px; } }
  .ce.ce--vd_services_teaser ul {
    margin: 0;
    padding: 0;
    padding-bottom: 2.5rem;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 0px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
    @media only screen and (min-width: 768px) {
      .ce.ce--vd_services_teaser ul {
        padding-top: 2.5rem;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 30px; } }
    @media only screen and (min-width: 992px) {
      .ce.ce--vd_services_teaser ul {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 66.666666%;
                flex: 0 0 66.666666%;
        max-width: 66.666666%; } }
  .ce.ce--vd_services_teaser a {
    display: inline-block;
    font-weight: 700;
    font-size: 25px;
    font-size: 1.5625rem;
    padding-bottom: 1.25rem;
    line-height: 35px;
    padding-left: 45px;
    position: relative; }
    @media only screen and (min-width: 992px) {
      .ce.ce--vd_services_teaser a {
        font-size: 30px;
        font-size: 1.875rem;
        padding-bottom: 2.5rem; } }
    .ce.ce--vd_services_teaser a:before {
      content: '';
      position: absolute;
      top: 6px;
      left: 0;
      width: 30px;
      height: 20px;
      display: inline-block;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23fff'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: left center;
      background-size: 30px;
      -webkit-transform: rotate(0.06534deg);
              transform: rotate(0.06534deg); }
  .ce.ce--vd_services_teaser .ce__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
    @media only screen and (min-width: 992px) {
      .ce.ce--vd_services_teaser .ce__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
  .ce.ce--vd_services_teaser .ce__background {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    height: 130px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    background-image: url("data:image/svg+xml,%3Csvg id='Gruppe_3216' data-name='Gruppe 3216' xmlns='http://www.w3.org/2000/svg' width='276.458' height='264.751' viewBox='0 0 276.458 264.751'%3E%3Cg id='Gruppe_2340' data-name='Gruppe 2340'%3E%3Cpath id='Pfad_1276' data-name='Pfad 1276' d='M499.206,109.6Z' transform='translate(-478.199 48.433)' fill='%23025471'/%3E%3Cg id='Gruppe_2339' data-name='Gruppe 2339'%3E%3Cg id='Gruppe_2333' data-name='Gruppe 2333' transform='translate(3.361)'%3E%3Cg id='Gruppe_2332' data-name='Gruppe 2332' transform='translate(0.42)'%3E%3Cpath id='Pfad_1277' data-name='Pfad 1277' d='M522.715,201.45h0c.42,7.563,2.521,18.907,7.563,28.57,4.622,7.983,3.361,25.629,7.563,28.99a144.627,144.627,0,0,0,12.6-7.143V217L734.889,334.636c2.521-1.261,11.344-6.3,13.445-7.563,2.1-1.681,3.361-4.621,3.361-8.4V232.54c0-7.983-5.042-17.226-10.924-21.007L501.287,73.3c-2.941-1.681-5.462-1.681-7.563-.42-3.361,1.681-9.663,4.622-13.024,7.142l9.243,87.391c0,7.983,5.042,17.226,10.924,21.007Z' transform='translate(-480.7 -71.986)' fill='%23eaf7f6'/%3E%3C/g%3E%3Cpath id='Pfad_1278' data-name='Pfad 1278' d='M735.209,336.317h-.84L552.025,219.936v32.771a1.466,1.466,0,0,1-.421.84c-.42,0-7.982,4.622-12.6,7.142-.42.42-.84,0-1.26,0-2.52-2.1-3.361-7.563-4.2-13.865-.84-5.462-1.68-11.764-3.781-15.545a72.511,72.511,0,0,1-7.562-28.57l-21.007-12.184c-6.3-3.781-11.345-13.445-11.345-21.848L480.6,81.288c0-.42,0-.84.42-.84,2.521-2.1,6.722-4.2,10.083-5.882a18.241,18.241,0,0,0,2.941-1.681,9.443,9.443,0,0,1,8.823.42L742.352,211.533c6.3,3.781,11.344,13.445,11.344,21.848v86.13c0,4.2-1.261,7.563-3.782,9.663-2.1,1.681-10.924,6.3-13.445,7.563ZM550.765,216.155h.84l183.6,117.221c3.362-1.681,10.924-5.882,12.6-7.142s2.941-4.2,2.941-7.563V232.54c0-7.563-4.622-16.386-10.5-19.747L500.767,74.565a6.736,6.736,0,0,0-6.3-.42,10.516,10.516,0,0,0-2.941,1.68c-2.941,1.681-6.723,3.361-9.243,5.042l9.243,86.971c0,7.563,4.621,16.806,10.5,19.747l21.848,12.6c.42,0,.42.42.42.84.42,7.563,2.521,18.907,7.562,28.15,2.1,4.2,3.361,10.5,4.2,16.386.84,4.622,1.26,9.663,2.94,11.764,3.782-2.1,9.243-5.042,10.924-6.3V217c0-.42.42-.84.42-1.261C550.345,216.575,550.345,216.155,550.765,216.155Z' transform='translate(-480.6 -71.986)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_2335' data-name='Gruppe 2335' transform='translate(0 6.302)'%3E%3Cg id='Gruppe_2334' data-name='Gruppe 2334' transform='translate(0.42 0.511)'%3E%3Cpath id='Pfad_1279' data-name='Pfad 1279' d='M512.671,203.4h0c.42,7.563,2.521,18.907,7.562,28.57,8.4,15.545,20.167,21.848,20.167,21.848V218.946L730.307,328.6c5.882,3.361,10.924-.42,10.924-8.4v-86.13c0-7.983-5.042-17.226-10.924-21.007L490.823,74.835c-5.882-3.361-10.923.42-10.923,8.4v86.13c0,7.983,5.041,17.226,10.923,21.007Z' transform='translate(-479.9 -73.608)' fill='%23fff'/%3E%3C/g%3E%3Cpath id='Pfad_1280' data-name='Pfad 1280' d='M735.248,331.935a11.186,11.186,0,0,1-5.041-1.26L541.981,221.856v32.772a1.466,1.466,0,0,1-.42.84.788.788,0,0,1-1.26,0c-.42-.42-11.764-6.722-20.587-22.688a72.5,72.5,0,0,1-7.563-28.57l-21.008-12.184c-6.3-3.781-11.344-13.445-11.344-21.848V84.048c0-4.622,1.681-8.4,4.2-9.663a8.619,8.619,0,0,1,8.4.42L731.888,213.033c6.3,3.781,11.343,13.445,11.343,21.848v86.13c0,4.622-1.68,8.4-4.2,9.663C737.349,331.515,736.51,331.935,735.248,331.935ZM540.721,218.5h.42L731.047,328.153c2.1,1.26,4.2,1.68,5.882.42,2.1-1.26,3.361-4.2,3.361-7.563v-86.13c0-7.563-4.622-16.386-10.5-19.747L490.3,76.906c-2.1-1.26-4.2-1.681-5.882-.42-2.1,1.26-3.361,4.2-3.361,7.563v86.13c0,7.563,4.621,16.386,10.5,19.747l21.848,12.6c.42,0,.42.42.42.84.42,7.563,2.521,18.907,7.563,28.15a66.6,66.6,0,0,0,17.646,20.587V219.756a1.467,1.467,0,0,1,.42-.84A3.248,3.248,0,0,1,540.721,218.5Z' transform='translate(-479.8 -73.486)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_2336' data-name='Gruppe 2336' transform='translate(18.733 48.201)'%3E%3Cpath id='Pfad_1281' data-name='Pfad 1281' d='M602.494,153.377h-.42L484.853,85.733c-.42-.42-.841-1.26-.42-1.681s1.26-.84,1.681-.42l117.221,67.644c.42.42.841,1.26.42,1.681A1.543,1.543,0,0,1,602.494,153.377Z' transform='translate(-484.258 -83.459)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_2337' data-name='Gruppe 2337' transform='translate(18.733 69.208)'%3E%3Cpath id='Pfad_1282' data-name='Pfad 1282' d='M602.494,158.377h-.42L484.853,90.733c-.42-.42-.841-1.26-.42-1.681s1.26-.84,1.681-.42l117.221,67.644c.42.42.841,1.26.42,1.68A1.543,1.543,0,0,1,602.494,158.377Z' transform='translate(-484.258 -88.459)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_2338' data-name='Gruppe 2338' transform='translate(18.733 90.216)'%3E%3Cpath id='Pfad_1283' data-name='Pfad 1283' d='M602.494,163.377h-.42L484.853,95.733c-.42-.42-.84-1.261-.42-1.681s1.26-.84,1.68-.42l117.222,67.644c.419.42.84,1.261.419,1.681C603.335,162.957,602.914,163.377,602.494,163.377Z' transform='translate(-484.259 -93.459)' fill='%23005d7d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Gruppe_2346' data-name='Gruppe 2346' transform='translate(124.551 97.899)'%3E%3Cg id='Gruppe_2343' data-name='Gruppe 2343' transform='translate(13.507)'%3E%3Cg id='Gruppe_2342' data-name='Gruppe 2342'%3E%3Cg id='Gruppe_2341' data-name='Gruppe 2341' transform='translate(0.31 1.67)'%3E%3Cpath id='Pfad_1284' data-name='Pfad 1284' d='M514.694,172.635c.42-.84,16.806-9.663,17.646-9.663,2.1-.42,4.621,1.26,6.722,4.622l2.521,4.2a18.887,18.887,0,0,1,2.521,8.823c14.285,17.646,21.427,11.764,33.611-3.361s1.681-46.216,0-49.157l-2.52-4.2c-2.521-4.2-5.882-17.646-5.882-17.646s18.066-10.5,18.487-10.5c2.1-.42,4.621,1.261,6.722,4.622l2.521,4.2a16.211,16.211,0,0,1,2.521,8.4c17.646,35.712,8.4,62.6-9.243,84.449a73.659,73.659,0,0,1-15.965,14.705c-3.781,2.521-21.427,10.084-27.309,11.764-10.083,3.361-33.192-28.57-33.192-28.57C510.912,190.7,514.694,172.635,514.694,172.635Z' transform='translate(-512.733 -95.685)' fill='%23fff1cf'/%3E%3C/g%3E%3Cpath id='Pfad_1285' data-name='Pfad 1285' d='M555.264,224.746c5.882-2.1,15.966-8.4,19.746-10.924A60.226,60.226,0,0,0,590.977,198.7c21.848-26.049,24.789-54.2,9.664-85.29a17.649,17.649,0,0,0-2.521-8.823l-2.52-4.2c-2.1-3.361-5.462-5.462-7.984-5.042-.42,0-15.545,8.4-17.646,9.663-.42,0-.42.42-.42.84s0,.84.42.84c0,0,1.68,14.285,4.622,18.486l2.521,4.2c2.1,3.361,12.184,33.612.42,47.9-6.3,7.563-11.764,13.865-17.646,13.865h0c-4.2,0-8.823-3.361-14.285-10.084a19.153,19.153,0,0,0-2.521-9.243l-2.521-4.2c-2.1-3.361-5.042-5.462-7.562-5.042-1.261,0-17.647,9.243-18.487,10.083-.42.42-3.361,19.327-.84,23.948C515.35,200.377,554.844,225.166,555.264,224.746ZM588.456,97.861c1.26,0,3.362,1.68,5.042,3.781l2.52,4.2c1.681,2.521,2.521,5.042,2.1,7.563v.42c14.706,30.251,11.764,57.56-9.243,83.189-5.042,5.882-10.083,10.924-15.546,14.705-4.2,2.941-13.445,9.663-18.907,11.344-6.722,2.521-31.09-14.285-39.494-27.73-2.1-3.361,2.941-18.907,2.1-21.848,3.361-2.1,13.865-7.983,15.545-8.4,1.261,0,3.362.84,5.042,3.781l2.521,4.2a12.63,12.63,0,0,1,2.1,8.4c0,.42,0,.42.42.84,6.3,7.563,11.344,11.344,16.386,11.344h0c6.722,0,12.6-6.3,19.327-14.705,12.6-15.125,2.521-46.636,0-50.418l-2.521-4.2c-2.1-3.361-7.982-10.924-10.083-13.865,8.823-5.042,21.428-12.184,22.688-12.6Z' transform='translate(-512.659 -95.287)' fill='%23d9b04a'/%3E%3C/g%3E%3C/g%3E%3Cg id='Gruppe_2345' data-name='Gruppe 2345' transform='translate(0 9.717)'%3E%3Cg id='Gruppe_2344' data-name='Gruppe 2344' transform='translate(0.18 0)'%3E%3Cpath id='Pfad_1286' data-name='Pfad 1286' d='M510.69,181.351l12.184-14.705c2.1-2.521,5.883-.84,8.4,3.361l2.521,4.2a18.894,18.894,0,0,1,2.521,8.823c14.284,17.646,21.428,11.764,33.611-3.361s17.226-23.528,6.3-44.956c-2.1,0-4.621-1.26-6.3-4.622l-2.52-4.2c-2.521-4.2-3.362-9.663-1.26-12.184L578.334,99c2.1-2.521,5.882-.84,8.4,3.361l2.522,4.2a16.213,16.213,0,0,1,2.52,8.4c17.646,35.713,8.4,62.6-9.243,84.45-17.646,21.427-37.813,30.251-61.342,2.521-2.1.84-5.042-.84-7.142-4.2l-2.521-4.2C509.43,189.334,509.009,183.872,510.69,181.351Z' transform='translate(-508.957 -96.902)' fill='%23fed060'/%3E%3Cpath id='Pfad_1287' data-name='Pfad 1287' d='M551.555,221.123c-10.084,0-19.747-5.882-29.41-17.226-2.521.42-5.462-1.681-7.563-5.042l-2.521-4.2c-2.941-4.622-3.361-10.924-1.26-13.445L522.985,166.5a4.094,4.094,0,0,1,3.781-1.681c2.52,0,5.041,2.1,6.722,5.042l2.521,4.2c1.681,2.941,2.941,6.3,2.521,9.243,5.462,6.722,10.083,10.083,14.285,10.083h0c5.461,0,11.344-6.3,17.226-13.865,12.6-15.125,16.386-22.688,6.3-42.855-2.521,0-5.042-2.1-6.722-5.042l-2.521-4.2c-2.941-4.622-3.361-10.924-1.261-13.445l12.185-14.705a4.1,4.1,0,0,1,3.782-1.681c2.521,0,5.041,2.1,6.722,5.042l2.521,4.2a16.532,16.532,0,0,1,2.521,8.823c15.126,31.091,11.765,59.241-9.663,85.29-10.924,13.445-21.428,20.167-32.351,20.167Zm-28.57-19.747.42.84c9.243,11.344,18.907,16.806,28.15,16.806h0c10.083,0,20.167-6.3,31.091-19.327,21.007-25.629,23.948-52.518,9.244-82.769v-.84a15.729,15.729,0,0,0-2.1-7.563l-2.521-4.2c-1.261-2.521-3.361-3.781-5.042-3.781-.84,0-1.26,0-1.68.84L568.36,116.086c-1.681,1.681-1.26,6.722,1.261,10.924l2.52,4.2c1.681,2.941,3.782,4.2,5.462,3.781h.84l.42.84c10.923,21.428,6.3,30.671-6.3,46.216-6.722,8.4-12.6,14.705-19.326,14.705h0c-5.042,0-10.084-3.361-16.386-11.344l-.42-.42v-.42a12.634,12.634,0,0,0-2.1-8.4l-2.521-4.2c-1.26-2.521-3.361-3.781-5.042-3.781-.84,0-1.261,0-1.681.84L512.9,183.73l-.841-.84.841.84c-1.681,1.681-1.26,6.722,1.26,10.924l2.521,4.2c2.1,2.941,4.2,4.2,5.882,3.781Z' transform='translate(-509.487 -97.6)' fill='%23fed060'/%3E%3C/g%3E%3Cpath id='Pfad_1288' data-name='Pfad 1288' d='M551.691,221.123h0c10.923,0,21.428-6.722,32.771-20.167,21.848-26.049,24.789-54.2,9.664-85.29a17.644,17.644,0,0,0-2.521-8.823l-2.521-4.2c-2.1-2.941-4.621-5.042-6.722-5.042a4.562,4.562,0,0,0-3.781,1.681L566.4,113.986c-2.521,2.941-1.68,8.823,1.261,13.445l2.52,4.2a9.765,9.765,0,0,0,6.722,5.042c10.084,19.747,5.882,28.15-6.3,42.855-6.3,7.563-11.764,13.865-17.647,13.865h0c-4.2,0-8.823-3.361-14.284-10.084a19.153,19.153,0,0,0-2.521-9.243l-2.521-4.2c-2.1-2.941-4.622-5.042-6.723-5.042a4.56,4.56,0,0,0-3.781,1.681l-12.184,14.705c-2.521,2.941-1.681,8.823,1.26,13.445l2.521,4.2c2.1,3.361,5.042,5.462,7.562,5.042C531.945,215.241,541.608,221.123,551.691,221.123Zm30.25-121h0c1.681,0,3.782,1.681,5.042,3.781l2.521,4.2c1.681,2.521,2.521,5.042,2.1,7.563v.42c14.705,30.25,11.764,57.56-9.243,83.189C571.439,212.3,561.354,218.6,551.271,218.6h0c-9.243,0-18.907-5.882-28.149-16.806a1.544,1.544,0,0,0-1.261-.42c-1.26.42-3.781-.84-5.882-3.781l-2.521-4.2c-2.52-4.2-2.941-8.823-1.26-10.924h0l12.184-14.705a2.184,2.184,0,0,1,1.681-.84c1.681,0,3.361,1.681,5.042,3.781l2.521,4.2a12.634,12.634,0,0,1,2.1,8.4c0,.42,0,.42.42.84,6.3,7.563,11.345,11.344,16.386,11.344h0c6.722,0,12.6-6.3,19.327-14.705,12.6-15.545,17.225-24.369,6.3-46.216-.419-.42-.84-.84-1.26-.84-1.68,0-3.781-1.26-5.461-3.781l-2.521-4.2c-2.521-4.2-2.941-8.823-1.26-10.924l12.185-14.705Z' transform='translate(-509.445 -97.6)' fill='%23d9b04a'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A"); }
    @media only screen and (min-width: 992px) {
      .ce.ce--vd_services_teaser .ce__background {
        height: 300px;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 33.333333%;
                flex: 0 0 33.333333%;
        max-width: 33.333333%;
        width: 33.333333%; } }

.ce.ce--vd_text_teaser.version--default .ce__content {
  padding: 0; }

.ce.ce--vd_text_teaser.version--colorized_background__light_green .ce__title h1,
.ce.ce--vd_text_teaser.version--colorized_background__light_green .ce__title h2,
.ce.ce--vd_text_teaser.version--colorized_background__light_green .ce__title h3,
.ce.ce--vd_text_teaser.version--colorized_background__light_green .ce__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_text_teaser.version--colorized_background__light_green .ce__title legend,
.ce.ce--vd_text_teaser.version--colorized_background__light_green .ce__title h4 {
  color: #000000; }

.ce.ce--vd_text_teaser.version--colorized_background__light_green .ce__content {
  background-color: #F7F7F7; }

.ce.ce--vd_text_teaser.version--colorized_background__light_green .vd-tile {
  background-color: "transparent"; }
  .ce.ce--vd_text_teaser.version--colorized_background__light_green .vd-tile .header h1,
  .ce.ce--vd_text_teaser.version--colorized_background__light_green .vd-tile .header h2,
  .ce.ce--vd_text_teaser.version--colorized_background__light_green .vd-tile .header h3,
  .ce.ce--vd_text_teaser.version--colorized_background__light_green .vd-tile .header .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_text_teaser.version--colorized_background__light_green .vd-tile .header legend,
  .ce.ce--vd_text_teaser.version--colorized_background__light_green .vd-tile .header h4 {
    color: #00848d; }
  .ce.ce--vd_text_teaser.version--colorized_background__light_green .vd-tile .header__subtitle {
    color: #00848d; }

.ce.ce--vd_text_teaser.version--colorized_background__light_red .ce__title h1,
.ce.ce--vd_text_teaser.version--colorized_background__light_red .ce__title h2,
.ce.ce--vd_text_teaser.version--colorized_background__light_red .ce__title h3,
.ce.ce--vd_text_teaser.version--colorized_background__light_red .ce__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_text_teaser.version--colorized_background__light_red .ce__title legend,
.ce.ce--vd_text_teaser.version--colorized_background__light_red .ce__title h4 {
  color: #000000; }

.ce.ce--vd_text_teaser.version--colorized_background__light_red .ce__content {
  background-color: #FCE5E5; }

.ce.ce--vd_text_teaser.version--colorized_background__light_red .vd-tile {
  background-color: "transparent"; }
  .ce.ce--vd_text_teaser.version--colorized_background__light_red .vd-tile .header h1,
  .ce.ce--vd_text_teaser.version--colorized_background__light_red .vd-tile .header h2,
  .ce.ce--vd_text_teaser.version--colorized_background__light_red .vd-tile .header h3,
  .ce.ce--vd_text_teaser.version--colorized_background__light_red .vd-tile .header .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_text_teaser.version--colorized_background__light_red .vd-tile .header legend,
  .ce.ce--vd_text_teaser.version--colorized_background__light_red .vd-tile .header h4 {
    color: #00848d; }
  .ce.ce--vd_text_teaser.version--colorized_background__light_red .vd-tile .header__subtitle {
    color: #00848d; }

.ce.ce--vd_text_teaser.version--colorized_boxes__light_red .ce__title h1,
.ce.ce--vd_text_teaser.version--colorized_boxes__light_red .ce__title h2,
.ce.ce--vd_text_teaser.version--colorized_boxes__light_red .ce__title h3,
.ce.ce--vd_text_teaser.version--colorized_boxes__light_red .ce__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_text_teaser.version--colorized_boxes__light_red .ce__title legend,
.ce.ce--vd_text_teaser.version--colorized_boxes__light_red .ce__title h4 {
  color: #000000; }

.ce.ce--vd_text_teaser.version--colorized_boxes__light_red .ce__content {
  background-color: #ffffff; }

.ce.ce--vd_text_teaser.version--colorized_boxes__light_red .vd-tile {
  background-color: #FCE5E5; }
  .ce.ce--vd_text_teaser.version--colorized_boxes__light_red .vd-tile .header h1,
  .ce.ce--vd_text_teaser.version--colorized_boxes__light_red .vd-tile .header h2,
  .ce.ce--vd_text_teaser.version--colorized_boxes__light_red .vd-tile .header h3,
  .ce.ce--vd_text_teaser.version--colorized_boxes__light_red .vd-tile .header .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_text_teaser.version--colorized_boxes__light_red .vd-tile .header legend,
  .ce.ce--vd_text_teaser.version--colorized_boxes__light_red .vd-tile .header h4 {
    color: #00848d; }
  .ce.ce--vd_text_teaser.version--colorized_boxes__light_red .vd-tile .header__subtitle {
    color: #00848d; }

.ce.ce--vd_text_teaser.version--colorized_boxes__light_green .ce__title h1,
.ce.ce--vd_text_teaser.version--colorized_boxes__light_green .ce__title h2,
.ce.ce--vd_text_teaser.version--colorized_boxes__light_green .ce__title h3,
.ce.ce--vd_text_teaser.version--colorized_boxes__light_green .ce__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_text_teaser.version--colorized_boxes__light_green .ce__title legend,
.ce.ce--vd_text_teaser.version--colorized_boxes__light_green .ce__title h4 {
  color: #000000; }

.ce.ce--vd_text_teaser.version--colorized_boxes__light_green .ce__content {
  background-color: #ffffff; }

.ce.ce--vd_text_teaser.version--colorized_boxes__light_green .vd-tile {
  background-color: #D9EDEE; }
  .ce.ce--vd_text_teaser.version--colorized_boxes__light_green .vd-tile .header h1,
  .ce.ce--vd_text_teaser.version--colorized_boxes__light_green .vd-tile .header h2,
  .ce.ce--vd_text_teaser.version--colorized_boxes__light_green .vd-tile .header h3,
  .ce.ce--vd_text_teaser.version--colorized_boxes__light_green .vd-tile .header .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_text_teaser.version--colorized_boxes__light_green .vd-tile .header legend,
  .ce.ce--vd_text_teaser.version--colorized_boxes__light_green .vd-tile .header h4 {
    color: #00848d; }
  .ce.ce--vd_text_teaser.version--colorized_boxes__light_green .vd-tile .header__subtitle {
    color: #00848d; }

.ce.ce--vd_text_teaser.version--colorized_boxes__light_green .vd-tile, .ce.ce--vd_text_teaser.version--colorized_boxes__light_red .vd-tile {
  padding: 1.875rem 1.25rem;
  margin-bottom: 2.5rem;
  height: calc(100% - 40px); }

.ce.ce--vd_text_teaser.version--colorized_boxes__light_green .ce__content, .ce.ce--vd_text_teaser.version--colorized_boxes__light_red .ce__content {
  padding: 0; }

.ce.ce--vd_text_teaser .ce__content {
  padding: 1.875rem 0; }
  .ce.ce--vd_text_teaser .ce__content .row > *:not(:last-child) .vd-tile {
    margin-bottom: 2.5rem; }

.ce.ce--vd_text_teaser .vd-tile {
  height: auto; }
  .ce.ce--vd_text_teaser .vd-tile .header h1,
  .ce.ce--vd_text_teaser .vd-tile .header h2,
  .ce.ce--vd_text_teaser .vd-tile .header h3,
  .ce.ce--vd_text_teaser .vd-tile .header .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_text_teaser .vd-tile .header legend,
  .ce.ce--vd_text_teaser .vd-tile .header h4 {
    margin-bottom: 0.9375rem; }
  .ce.ce--vd_text_teaser .vd-tile .header__subtitle {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700; }
  .ce.ce--vd_text_teaser .vd-tile .bodytext > * {
    font-size: 18px;
    font-size: 1.125rem; }

@media only screen and (min-width: 768px) {
  .ce.ce--vd_text_teaser .ce__content {
    padding: 3.75rem 0 0.625rem 0; }
    .ce.ce--vd_text_teaser .ce__content .row > * .vd-tile {
      margin-bottom: 3.125rem; }
  .ce.ce--vd_text_teaser .vd-tile {
    max-width: 500px;
    margin-bottom: 3.125rem;
    height: calc(100% - 50px); } }

.ce.ce--vd_cta.version--text_graphic .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.ce.ce--vd_cta.version--text_graphic .vd_cta__item--icon .vd-image {
  max-width: 450px;
  height: auto;
  margin: 0 auto; }

.ce.ce--vd_cta.ce--bg_green__front_bright {
  --c-cta-headline: #ffffff;
  --c-cta-text: #ffffff;
  background-color: #00848d; }
  .ce.ce--vd_cta.ce--bg_green__front_bright .vd_cta__item--text {
    background-color: #00848d;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem; }
    .ce.ce--vd_cta.ce--bg_green__front_bright .vd_cta__item--text .ce__title h1,
    .ce.ce--vd_cta.ce--bg_green__front_bright .vd_cta__item--text .ce__title h2,
    .ce.ce--vd_cta.ce--bg_green__front_bright .vd_cta__item--text .ce__title h3,
    .ce.ce--vd_cta.ce--bg_green__front_bright .vd_cta__item--text .ce__title .ce.ce--vd_job_form fieldset legend,
    .ce.ce--vd_job_form fieldset .ce.ce--vd_cta.ce--bg_green__front_bright .vd_cta__item--text .ce__title legend,
    .ce.ce--vd_cta.ce--bg_green__front_bright .vd_cta__item--text .ce__title h4 {
      color: #ffffff; }
    .ce.ce--vd_cta.ce--bg_green__front_bright .vd_cta__item--text .ce__bodytext > * {
      color: #ffffff; }
  .ce.ce--vd_cta.ce--bg_green__front_bright .vd_cta__item--icon {
    display: none; }

.ce.ce--vd_cta .vd_cta__item--text .ce__title h1,
.ce.ce--vd_cta .vd_cta__item--text .ce__title h2,
.ce.ce--vd_cta .vd_cta__item--text .ce__title h3,
.ce.ce--vd_cta .vd_cta__item--text .ce__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_cta .vd_cta__item--text .ce__title legend,
.ce.ce--vd_cta .vd_cta__item--text .ce__title h4 {
  color: #00848d; }

.ce.ce--vd_cta .vd_cta__item--text .ce__bodytext > * {
  color: #000000;
  font-size: 18px;
  font-size: 1.125rem; }

.ce.ce--vd_cta .vd_cta__item--image,
.ce.ce--vd_cta .vd_cta__item--icon {
  margin-top: 1.875rem; }
  .ce.ce--vd_cta .vd_cta__item--image img,
  .ce.ce--vd_cta .vd_cta__item--icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

@media only screen and (min-width: 768px) {
  .ce.ce--vd_cta.ce--bg_green__front_bright .vd_cta__item--icon {
    display: block; } }

@media only screen and (min-width: 991px) {
  .ce.ce--vd_cta.version--text_graphic .vd_cta__item--icon .vd-image {
    max-width: 600px; }
  .ce.ce--vd_cta.ce--bg_green__front_bright .vd-wrapper {
    padding: 3.75rem; }
  .ce.ce--vd_cta.ce--bg_green__front_bright .vd_cta__item--text {
    padding-top: 0rem;
    padding-bottom: 0rem; }
  .ce.ce--vd_cta.ce--bg_green__front_bright .vd_cta__item--icon .vd-image {
    max-width: 320px;
    height: auto;
    margin: 0 auto; }
  .ce.ce--vd_cta .vd_cta__item--image,
  .ce.ce--vd_cta .vd_cta__item--icon {
    margin-top: 0rem; } }

.ce.ce--vd_news_teaser .single-news-teaser .single-news-teaser__wrapper {
  background-color: #ea534e; }

.ce.ce--vd_news_teaser .single-news-teaser .header {
  color: #fff; }

.ce.ce--vd_news_teaser .single-news-teaser .ce__dates * {
  color: #fff; }

.ce.ce--vd_news_teaser .single-news-teaser .vd-button--ghost, .ce.ce--vd_news_teaser .single-news-teaser #cookie_approval .button, #cookie_approval .ce.ce--vd_news_teaser .single-news-teaser .button {
  color: #fff;
  border-color: #fff; }
  .ce.ce--vd_news_teaser .single-news-teaser .vd-button--ghost:hover, .ce.ce--vd_news_teaser .single-news-teaser #cookie_approval .button:hover, #cookie_approval .ce.ce--vd_news_teaser .single-news-teaser .button:hover, .ce.ce--vd_news_teaser .single-news-teaser .vd-button--ghost:focus, .ce.ce--vd_news_teaser .single-news-teaser #cookie_approval .button:focus, #cookie_approval .ce.ce--vd_news_teaser .single-news-teaser .button:focus {
    background-color: #fff !important;
    color: #ea534e !important; }

.ce.ce--vd_news_teaser .single-news-teaser.layout--logo__front_red__background_white .single-news-teaser__wrapper {
  background-color: #fff;
  border: 1px solid #d5d5d5; }

.ce.ce--vd_news_teaser .single-news-teaser.layout--logo__front_red__background_white .header {
  color: #ea534e; }

.ce.ce--vd_news_teaser .single-news-teaser.layout--logo__front_red__background_white .ce__dates * {
  color: #ea534e; }

.ce.ce--vd_news_teaser .single-news-teaser.layout--logo__front_red__background_white .vd-button--ghost, .ce.ce--vd_news_teaser .single-news-teaser.layout--logo__front_red__background_white #cookie_approval .button, #cookie_approval .ce.ce--vd_news_teaser .single-news-teaser.layout--logo__front_red__background_white .button {
  color: #ea534e;
  border-color: #ea534e; }
  .ce.ce--vd_news_teaser .single-news-teaser.layout--logo__front_red__background_white .vd-button--ghost:hover, .ce.ce--vd_news_teaser .single-news-teaser.layout--logo__front_red__background_white #cookie_approval .button:hover, #cookie_approval .ce.ce--vd_news_teaser .single-news-teaser.layout--logo__front_red__background_white .button:hover, .ce.ce--vd_news_teaser .single-news-teaser.layout--logo__front_red__background_white .vd-button--ghost:focus, .ce.ce--vd_news_teaser .single-news-teaser.layout--logo__front_red__background_white #cookie_approval .button:focus, #cookie_approval .ce.ce--vd_news_teaser .single-news-teaser.layout--logo__front_red__background_white .button:focus {
    background-color: #ea534e !important;
    color: #fff !important; }

.ce.ce--vd_news_teaser .single-news-teaser__wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 2.5rem 1em; }

.ce.ce--vd_news_teaser .single-news-teaser .header__subtitle {
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0 0 1.25rem 0; }

@media only screen and (min-width: 768px) {
  .ce.ce--vd_news_teaser .single-news-teaser__wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 3.75rem 1.875rem; }
  .ce.ce--vd_news_teaser .single-news-teaser .header {
    max-width: 700px; }
    .ce.ce--vd_news_teaser .single-news-teaser .header__title {
      margin-bottom: 0.625rem; }
    .ce.ce--vd_news_teaser .single-news-teaser .header__subtitle {
      font-size: 40px;
      font-size: 2.5rem; } }

.ce.ce--vd_news_list.ce--color-sheme {
  padding-top: 5rem;
  padding-bottom: 5rem; }

.ce.ce--vd_news_list .ce__title > * {
  margin: 0;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 2.5rem; }

.ce.ce--vd_news_list .icon svg {
  width: 40px;
  height: auto; }

.ce.ce--vd_news_list .page-navigation:nth-child(1) {
  display: none; }

.ce.ce--vd_news_list .news-list-item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #636363; }
  .ce.ce--vd_news_list .news-list-item .meta__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .ce.ce--vd_news_list .news-list-item .meta__wrapper .meta__date {
      margin-top: 0.625rem;
      font-weight: 700; }
  .ce.ce--vd_news_list .news-list-item .header h1,
  .ce.ce--vd_news_list .news-list-item .header h2,
  .ce.ce--vd_news_list .news-list-item .header h3,
  .ce.ce--vd_news_list .news-list-item .header .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_news_list .news-list-item .header legend,
  .ce.ce--vd_news_list .news-list-item .header h4 {
    margin-top: 0.3125rem; }
  .ce.ce--vd_news_list .news-list-item .lead {
    max-width: 850px; }

.ce.ce--vd_news_list [class*="col-"] {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem; }
  .ce.ce--vd_news_list [class*="col-"] .news-list-item {
    border: none;
    padding-bottom: 0; }
    .ce.ce--vd_news_list [class*="col-"] .news-list-item .meta__wrapper {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .ce.ce--vd_news_list [class*="col-"] .news-list-item .meta__wrapper .meta__date {
        margin-top: 0; }

.ce.ce--vd_news_list .main {
  padding-left: 0; }
  @media only screen and (min-width: 768px) {
    .ce.ce--vd_news_list .main .container, .ce.ce--vd_news_list .main .vd-breadcrumb, .ce.ce--vd_news_list .main .vd-breadcrumb .vd-nav, .vd-breadcrumb .ce.ce--vd_news_list .main .vd-nav, .ce.ce--vd_news_list .main #tx-solr-search, .ce.ce--vd_news_list .main .vd-filter-container, .ce.ce--vd_news_list .main .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__bottom .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .vd-section--header .header__navigation--buttons, .vd-section--header .ce.ce--vd_news_list .main .header__navigation--buttons, .ce.ce--vd_news_list .main body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section--header .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main body:not(.template--startpage) .vd-section .header__navigation--buttons, body:not(.template--startpage) .vd-section .ce.ce--vd_news_list .main .header__navigation--buttons, .ce.ce--vd_news_list .main body.template--startpage .vd-section--hero .vd-wrapper, body.template--startpage .vd-section--hero .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .content-element.gutachter-list, .ce.ce--vd_news_list .main .vd-section--main .vd-message, .vd-section--main .ce.ce--vd_news_list .main .vd-message, .ce.ce--vd_news_list .main .vd-section--header .header__top .vd-wrapper, .vd-section--header .header__top .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_event_calendar .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--vd_event_registration .vd-wrapper, .ce.ce--vd_event_registration .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--sfeventmgt_pieventdetail .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce--vd_event_list > .vd-wrapper,
    .ce.ce--vd_news_list .main .ce--vd_event_search > .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--vd_newsletter_registration, .ce.ce--vd_news_list .main .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_services_teaser .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_teaser .ce.ce--vd_news_list .main .single-news-teaser, .ce.ce--vd_news_list .main .ce__title, .ce.ce--vd_news_list .main .icon, .ce.ce--vd_news_list .main .vd-actions, .ce.ce--vd_news_list .main .news__cta, .ce.ce--vd_news_list .main .ce--vd_accordion .ce__content .ce__bodytext, .ce--vd_accordion .ce__content .ce.ce--vd_news_list .main .ce__bodytext,
    .ce.ce--vd_news_list .main .ce--vd_downloads .ce__content .ce__bodytext, .ce--vd_downloads .ce__content .ce.ce--vd_news_list .main .ce__bodytext, .ce.ce--vd_news_list .main .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel .ce.ce--vd_news_list .main .ce__content > .ce__bodytext, .ce.ce--vd_news_list .main .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_green__front_bright .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .vd-slick-dots, .ce.ce--vd_news_list .main .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_image .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--vd_text .vd-wrapper, .ce.ce--vd_text .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--table .vd-wrapper, .ce.ce--table .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--html .vd-wrapper, .ce.ce--html .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--vd_link_list, .ce.ce--vd_news_list .main .ce.ce--vd_quotation, .ce.ce--vd_news_list .main .ce.ce--vd_video .vd-wrapper, .ce.ce--vd_video .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--form_formframework .vd-wrapper, .ce.ce--form_formframework .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--vd_info_box, .ce.ce--vd_news_list .main .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_magazines .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .content-element-directories .text, .content-element-directories .ce.ce--vd_news_list .main .text, .ce.ce--vd_news_list .main .content-element-directories #directories_filter__form, .content-element-directories .ce.ce--vd_news_list .main #directories_filter__form, .ce.ce--vd_news_list .main .content-element-directories .directories-results, .content-element-directories .ce.ce--vd_news_list .main .directories-results, .ce.ce--vd_news_list .main #tx-solr-search .vd-wrapper, #tx-solr-search .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main main > .ce.ce--vd_event_teaser .single-event-teaser, main > .ce.ce--vd_event_teaser .ce.ce--vd_news_list .main .single-event-teaser, .ce.ce--vd_news_list .main .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--vd_job_form, .ce.ce--vd_news_list .main .ce--vd_downloads .vd-wrapper, .ce--vd_downloads .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce--vd_download .ce__content, .ce--vd_download .ce.ce--vd_news_list .main .ce__content, .ce.ce--vd_news_list .main .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_menu_teaser .ce.ce--vd_news_list .main .vd-wrapper, .ce.ce--vd_news_list .main .ce.ce--vd_news_carousel > .vd-wrapper {
      padding-right: 0;
      padding-left: 0; } }

.ce.ce--vd_news_list:not(.ce--minimal) .news__item__meta--top {
  margin-bottom: 5px; }

.ce.ce--vd_news_list:not(.ce--minimal) .news__item__title * {
  font-size: 30px;
  font-size: 1.875rem;
  margin-top: 0;
  margin-bottom: 20px; }

.ce.ce--vd_news_list:not(.ce--minimal) .news__item__content p a {
  display: inline-block;
  position: relative; }
  .ce.ce--vd_news_list:not(.ce--minimal) .news__item__content p a:after {
    content: '';
    height: 18px;
    width: 32px;
    display: inline-block;
    top: 4px;
    position: relative;
    margin-left: 13px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23015D7D'/%3E%3C/svg%3E"); }

.ce.ce--vd_news_list .news__item {
  margin-bottom: 3.75rem; }

.ce.ce--vd_news_list .ce--vd_info-box {
  padding: 30px 0px 30px 30px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px #00000029;
          box-shadow: 0px 0px 6px #00000029; }
  .ce.ce--vd_news_list .ce--vd_info-box h2,
  .ce.ce--vd_news_list .ce--vd_info-box h3,
  .ce.ce--vd_news_list .ce--vd_info-box .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_news_list .ce--vd_info-box legend,
  .ce.ce--vd_news_list .ce--vd_info-box h4,
  .ce.ce--vd_news_list .ce--vd_info-box h5 {
    color: #000;
    font-size: 22px;
    font-size: 1.375rem; }
  .ce.ce--vd_news_list .ce--vd_info-box .ce__content {
    padding-right: 110px;
    background-repeat: no-repeat;
    background-position: calc(100% - 30px) 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80.725' height='77.307' viewBox='0 0 80.725 77.307'%3E%3Cg id='Gruppe_3316' data-name='Gruppe 3316' transform='translate(-10)'%3E%3Cg id='Gruppe_2340' data-name='Gruppe 2340' transform='translate(10)'%3E%3Cpath id='Pfad_1276' data-name='Pfad 1276' d='M480.3,114.616Z' transform='translate(-479.686 -65.404)' fill='%23eaf7f6'/%3E%3Cg id='Gruppe_2339' data-name='Gruppe 2339'%3E%3Cg id='Gruppe_2333' data-name='Gruppe 2333' transform='translate(0.981)'%3E%3Cg id='Gruppe_2332' data-name='Gruppe 2332' transform='translate(0.123)'%3E%3Cpath id='Pfad_1277' data-name='Pfad 1277' d='M492.968,109.789h0a21.705,21.705,0,0,0,2.208,8.342c1.35,2.331.981,7.484,2.208,8.465a42.231,42.231,0,0,0,3.68-2.086V114.329l53.858,34.351c.736-.368,3.312-1.84,3.926-2.208a3.044,3.044,0,0,0,.981-2.454v-25.15a8.009,8.009,0,0,0-3.19-6.134L486.711,72.371a2.074,2.074,0,0,0-2.208-.123,29.185,29.185,0,0,0-3.8,2.086l2.7,25.518a8.009,8.009,0,0,0,3.19,6.134Z' transform='translate(-480.7 -71.986)' fill='%23005d7d'/%3E%3C/g%3E%3Cpath id='Pfad_1278' data-name='Pfad 1278' d='M554.945,149.17H554.7l-53.244-33.983v9.569a.428.428,0,0,1-.123.245c-.123,0-2.331,1.349-3.68,2.086-.123.123-.245,0-.368,0-.736-.613-.981-2.208-1.227-4.049a15.384,15.384,0,0,0-1.1-4.539,21.172,21.172,0,0,1-2.208-8.342l-6.134-3.558a8.051,8.051,0,0,1-3.313-6.38L480.6,74.7c0-.123,0-.245.123-.245a16.891,16.891,0,0,1,2.944-1.718,5.326,5.326,0,0,0,.859-.491,2.757,2.757,0,0,1,2.576.123l69.929,40.362a8.052,8.052,0,0,1,3.313,6.379v25.15a3.52,3.52,0,0,1-1.1,2.822,40.52,40.52,0,0,1-3.926,2.208Zm-53.857-35.087h.245l53.612,34.228c.982-.491,3.19-1.718,3.68-2.086a2.841,2.841,0,0,0,.859-2.208v-25.15a7.181,7.181,0,0,0-3.067-5.766L486.489,72.739a1.967,1.967,0,0,0-1.84-.123,3.07,3.07,0,0,0-.859.491c-.859.491-1.963.981-2.7,1.472l2.7,25.4c0,2.208,1.349,4.907,3.067,5.766l6.38,3.68c.123,0,.123.123.123.245a20.649,20.649,0,0,0,2.208,8.22,17.034,17.034,0,0,1,1.227,4.785c.245,1.35.368,2.822.859,3.435,1.1-.613,2.7-1.472,3.19-1.84v-9.937c0-.123.123-.245.123-.368C500.965,114.206,500.965,114.083,501.088,114.083Z' transform='translate(-480.6 -71.986)' fill='%23034f69'/%3E%3C/g%3E%3Cg id='Gruppe_2335' data-name='Gruppe 2335' transform='translate(0 1.84)'%3E%3Cg id='Gruppe_2334' data-name='Gruppe 2334' transform='translate(0.123 0.149)'%3E%3Cpath id='Pfad_1279' data-name='Pfad 1279' d='M489.469,111.507h0a21.707,21.707,0,0,0,2.208,8.342,16.366,16.366,0,0,0,5.889,6.38V116.046l55.453,32.02c1.718.981,3.19-.123,3.19-2.454v-25.15a8.009,8.009,0,0,0-3.19-6.134L483.09,73.966c-1.718-.981-3.19.123-3.19,2.454v25.15a8.009,8.009,0,0,0,3.19,6.134Z' transform='translate(-479.9 -73.608)' fill='%23fff'/%3E%3C/g%3E%3Cpath id='Pfad_1280' data-name='Pfad 1280' d='M554.391,148.953a3.267,3.267,0,0,1-1.472-.368L497.957,116.81v9.569a.428.428,0,0,1-.123.245.23.23,0,0,1-.368,0A18.142,18.142,0,0,1,491.455,120a21.168,21.168,0,0,1-2.208-8.342l-6.134-3.558a8.051,8.051,0,0,1-3.312-6.379V76.57a3.1,3.1,0,0,1,1.227-2.822,2.517,2.517,0,0,1,2.454.123l69.929,40.363a8.052,8.052,0,0,1,3.312,6.379v25.15a3.1,3.1,0,0,1-1.227,2.822A2.328,2.328,0,0,1,554.391,148.953Zm-56.8-33.124h.123l55.452,32.02a1.492,1.492,0,0,0,1.718.123,2.537,2.537,0,0,0,.981-2.208v-25.15a7.181,7.181,0,0,0-3.067-5.766L482.867,74.485a1.492,1.492,0,0,0-1.718-.123,2.536,2.536,0,0,0-.981,2.208v25.15a7.181,7.181,0,0,0,3.067,5.766l6.38,3.68c.123,0,.123.123.123.245a20.646,20.646,0,0,0,2.208,8.22,19.448,19.448,0,0,0,5.153,6.011V116.2a.428.428,0,0,1,.123-.245A.948.948,0,0,1,497.589,115.829Z' transform='translate(-479.8 -73.486)' fill='%23034f69'/%3E%3C/g%3E%3Cg id='Gruppe_2336' data-name='Gruppe 2336' transform='translate(5.47 14.075)'%3E%3Cpath id='Pfad_1281' data-name='Pfad 1281' d='M518.783,103.875h-.123L484.432,84.123c-.123-.123-.245-.368-.123-.491s.368-.245.491-.123l34.228,19.752c.123.123.245.368.123.491A.45.45,0,0,1,518.783,103.875Z' transform='translate(-484.259 -83.459)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_2337' data-name='Gruppe 2337' transform='translate(5.47 20.209)'%3E%3Cpath id='Pfad_1282' data-name='Pfad 1282' d='M518.783,108.875h-.123L484.432,89.123c-.123-.123-.245-.368-.123-.491s.368-.245.491-.123l34.228,19.752c.123.123.245.368.123.491A.45.45,0,0,1,518.783,108.875Z' transform='translate(-484.259 -88.459)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_2338' data-name='Gruppe 2338' transform='translate(5.47 26.343)'%3E%3Cpath id='Pfad_1283' data-name='Pfad 1283' d='M518.783,113.875h-.123L484.432,94.123c-.122-.123-.245-.368-.122-.491s.368-.245.491-.123l34.229,19.752c.122.123.245.368.122.491C519.029,113.752,518.906,113.875,518.783,113.875Z' transform='translate(-484.259 -93.459)' fill='%23005d7d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Gruppe_2346' data-name='Gruppe 2346' transform='translate(39.867 28.586)'%3E%3Cg id='Gruppe_2343' data-name='Gruppe 2343' transform='translate(3.944)'%3E%3Cg id='Gruppe_2342' data-name='Gruppe 2342'%3E%3Cg id='Gruppe_2341' data-name='Gruppe 2341' transform='translate(0.091 0.488)'%3E%3Cpath id='Pfad_1284' data-name='Pfad 1284' d='M513.306,118.154a42.027,42.027,0,0,1,5.153-2.822c.613-.123,1.35.368,1.963,1.35l.736,1.227a5.515,5.515,0,0,1,.736,2.576c4.171,5.153,6.257,3.435,9.814-.981s.491-13.5,0-14.354l-.736-1.227a30.562,30.562,0,0,1-1.718-5.153s5.275-3.067,5.4-3.067c.613-.123,1.349.368,1.963,1.35l.736,1.227a4.733,4.733,0,0,1,.736,2.454c5.153,10.428,2.454,18.28-2.7,24.659a21.506,21.506,0,0,1-4.662,4.294,53.678,53.678,0,0,1-7.974,3.435c-2.944.981-9.692-8.342-9.692-8.342C512.2,123.43,513.306,118.154,513.306,118.154Z' transform='translate(-512.733 -95.685)' fill='%23fff1cf'/%3E%3C/g%3E%3Cpath id='Pfad_1285' data-name='Pfad 1285' d='M525.1,133.089a35.765,35.765,0,0,0,5.766-3.19,17.584,17.584,0,0,0,4.662-4.417c6.38-7.606,7.238-15.826,2.822-24.9A5.153,5.153,0,0,0,537.614,98l-.736-1.227a2.685,2.685,0,0,0-2.331-1.472c-.123,0-4.539,2.454-5.152,2.822-.123,0-.123.123-.123.245s0,.245.123.245c0,0,.491,4.171,1.349,5.4l.736,1.227c.613.981,3.558,9.815.123,13.986-1.84,2.208-3.435,4.049-5.153,4.049h0c-1.227,0-2.576-.981-4.171-2.944a5.593,5.593,0,0,0-.736-2.7l-.736-1.227c-.613-.981-1.472-1.595-2.208-1.472a46.009,46.009,0,0,0-5.4,2.944c-.123.123-.981,5.643-.245,6.993C513.445,125.973,524.977,133.212,525.1,133.089Zm9.692-37.05c.368,0,.982.491,1.472,1.1L537,98.37a3.065,3.065,0,0,1,.613,2.208v.123c4.294,8.833,3.435,16.807-2.7,24.291a24.622,24.622,0,0,1-4.539,4.294c-1.227.859-3.926,2.822-5.521,3.312-1.963.736-9.078-4.171-11.532-8.1-.613-.981.859-5.521.613-6.38a44.394,44.394,0,0,1,4.539-2.454,1.855,1.855,0,0,1,1.472,1.1l.736,1.227a3.688,3.688,0,0,1,.613,2.454c0,.123,0,.123.123.245,1.84,2.208,3.313,3.312,4.785,3.312h0c1.963,0,3.68-1.84,5.644-4.294,3.68-4.417.736-13.618,0-14.722l-.736-1.227c-.613-.981-2.331-3.19-2.944-4.049,2.576-1.472,6.257-3.558,6.625-3.68Z' transform='translate(-512.659 -95.287)' fill='%23d9b04a'/%3E%3C/g%3E%3C/g%3E%3Cg id='Gruppe_2345' data-name='Gruppe 2345' transform='translate(0 2.837)'%3E%3Cg id='Gruppe_2344' data-name='Gruppe 2344' transform='translate(0.053 0)'%3E%3Cpath id='Pfad_1286' data-name='Pfad 1286' d='M509.956,122.21l3.558-4.294c.613-.736,1.718-.245,2.454.981l.736,1.227a5.516,5.516,0,0,1,.736,2.576c4.171,5.153,6.257,3.435,9.815-.981s5.03-6.87,1.84-13.127a2.128,2.128,0,0,1-1.84-1.35l-.736-1.227c-.736-1.227-.982-2.822-.368-3.558l3.558-4.294c.613-.736,1.717-.245,2.454.981l.736,1.227a4.734,4.734,0,0,1,.736,2.454c5.153,10.428,2.454,18.28-2.7,24.659-5.152,6.257-11.041,8.833-17.912.736-.614.245-1.472-.245-2.086-1.227l-.736-1.227A4.12,4.12,0,0,1,509.956,122.21Z' transform='translate(-509.45 -97.551)' fill='%23fed060'/%3E%3Cpath id='Pfad_1287' data-name='Pfad 1287' d='M521.771,133.669c-2.945,0-5.766-1.718-8.588-5.03-.736.123-1.595-.491-2.208-1.472l-.736-1.227c-.859-1.35-.981-3.19-.368-3.926l3.558-4.294a1.2,1.2,0,0,1,1.1-.491A2.542,2.542,0,0,1,516.5,118.7l.736,1.227a4.511,4.511,0,0,1,.736,2.7c1.595,1.963,2.944,2.944,4.171,2.944h0c1.595,0,3.312-1.84,5.03-4.049,3.68-4.417,4.785-6.625,1.84-12.514a2.541,2.541,0,0,1-1.963-1.472l-.736-1.227c-.859-1.35-.982-3.19-.368-3.926l3.558-4.294a1.2,1.2,0,0,1,1.1-.491,2.541,2.541,0,0,1,1.963,1.472l.736,1.227a4.828,4.828,0,0,1,.736,2.576c4.417,9.079,3.435,17.3-2.822,24.9-3.19,3.926-6.257,5.889-9.447,5.889Zm-8.342-5.766.122.245c2.7,3.312,5.521,4.907,8.22,4.907h0c2.944,0,5.889-1.84,9.078-5.643,6.134-7.484,6.993-15.335,2.7-24.168V103a4.592,4.592,0,0,0-.613-2.208l-.736-1.227a1.8,1.8,0,0,0-1.472-1.1c-.245,0-.368,0-.491.245L526.678,103c-.491.491-.368,1.963.368,3.19l.736,1.227c.491.859,1.1,1.227,1.6,1.1h.245l.123.245c3.19,6.257,1.84,8.956-1.84,13.5-1.963,2.454-3.68,4.294-5.643,4.294h0c-1.472,0-2.944-.981-4.785-3.312l-.123-.123V123a3.688,3.688,0,0,0-.613-2.454L516,119.315a1.8,1.8,0,0,0-1.472-1.1c-.245,0-.368,0-.491.245l-3.558,4.294-.246-.245.246.245c-.491.491-.368,1.963.368,3.19l.736,1.227c.613.859,1.227,1.227,1.718,1.1Z' transform='translate(-509.487 -97.6)' fill='%23d9b04a'/%3E%3C/g%3E%3Cpath id='Pfad_1288' data-name='Pfad 1288' d='M521.781,133.669h0c3.19,0,6.257-1.963,9.569-5.889,6.38-7.606,7.239-15.826,2.822-24.9a5.152,5.152,0,0,0-.736-2.576l-.736-1.227a2.983,2.983,0,0,0-1.963-1.472,1.332,1.332,0,0,0-1.1.491l-3.558,4.294c-.736.859-.491,2.576.368,3.926l.736,1.227a2.851,2.851,0,0,0,1.963,1.472c2.944,5.766,1.718,8.22-1.84,12.514-1.84,2.208-3.435,4.049-5.153,4.049h0c-1.227,0-2.576-.981-4.171-2.944a5.592,5.592,0,0,0-.736-2.7l-.736-1.227a2.983,2.983,0,0,0-1.963-1.472,1.332,1.332,0,0,0-1.1.491l-3.558,4.294c-.736.859-.491,2.576.368,3.926l.736,1.227c.613.981,1.472,1.595,2.208,1.472C516.015,131.951,518.836,133.669,521.781,133.669Zm8.833-35.333h0a2.084,2.084,0,0,1,1.472,1.1l.736,1.227a3.065,3.065,0,0,1,.613,2.208V103c4.294,8.833,3.435,16.807-2.7,24.291-3.19,3.8-6.134,5.643-9.079,5.643h0c-2.7,0-5.521-1.718-8.219-4.907a.451.451,0,0,0-.368-.123c-.368.123-1.1-.245-1.717-1.1l-.736-1.227c-.736-1.227-.859-2.576-.368-3.19h0l3.558-4.294a.638.638,0,0,1,.491-.245c.491,0,.981.491,1.472,1.1l.736,1.227a3.689,3.689,0,0,1,.613,2.454c0,.123,0,.123.122.245,1.84,2.208,3.313,3.312,4.785,3.312h0c1.963,0,3.68-1.84,5.644-4.294,3.68-4.539,5.03-7.116,1.84-13.5-.122-.123-.245-.245-.368-.245a2.138,2.138,0,0,1-1.595-1.1l-.736-1.227c-.736-1.227-.859-2.576-.368-3.19L530,98.336Z' transform='translate(-509.445 -97.6)' fill='%23d9b04a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A"); }
    .ce.ce--vd_news_list .ce--vd_info-box .ce__content p {
      line-height: 30px; }

.ce.ce--vd_news_list.ce--minimal .ce__title h1,
.ce.ce--vd_news_list.ce--minimal .ce__title h2,
.ce.ce--vd_news_list.ce--minimal .ce__title h3,
.ce.ce--vd_news_list.ce--minimal .ce__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_news_list.ce--minimal .ce__title legend,
.ce.ce--vd_news_list.ce--minimal .ce__title h4 {
  border-bottom: 1px solid #00848d;
  padding-bottom: 0.625rem;
  margin-bottom: 1.25rem; }

.ce.ce--vd_news_list.ce--minimal .header h1,
.ce.ce--vd_news_list.ce--minimal .header h2,
.ce.ce--vd_news_list.ce--minimal .header h3,
.ce.ce--vd_news_list.ce--minimal .header .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_news_list.ce--minimal .header legend,
.ce.ce--vd_news_list.ce--minimal .header h4 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 0; }

.ce.ce--vd_news_list.ce--minimal .news-list-item:not(:last-child) {
  border-bottom: 1px solid #00848d;
  padding-bottom: 1.25rem; }

.ce.ce--vd_news_list.ce--minimal__background_red .vd-wrapper {
  background-color: #FCE5E5;
  padding: 1.875rem 1.25rem; }
  @media only screen and (min-width: 768px) {
    .ce.ce--vd_news_list.ce--minimal__background_red .vd-wrapper {
      padding-left: 1.875rem;
      padding-right: 1.875rem;
      padding-bottom: 2.5rem; } }

.ce.ce--vd_news_list.ce--minimal__background_red .ce__title h1,
.ce.ce--vd_news_list.ce--minimal__background_red .ce__title h2,
.ce.ce--vd_news_list.ce--minimal__background_red .ce__title h3,
.ce.ce--vd_news_list.ce--minimal__background_red .ce__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_news_list.ce--minimal__background_red .ce__title legend,
.ce.ce--vd_news_list.ce--minimal__background_red .ce__title h4 {
  color: #00848d;
  margin-top: 0;
  margin-bottom: 1.25rem;
  line-height: 1.1; }

.ce.ce--vd_news_list.ce--minimal__background_red .icon {
  margin-bottom: 0.3125rem; }
  .ce.ce--vd_news_list.ce--minimal__background_red .icon svg {
    width: 25px;
    height: auto; }
    @media only screen and (min-width: 768px) {
      .ce.ce--vd_news_list.ce--minimal__background_red .icon svg {
        width: 40px; } }

.ce.ce--vd_news_list.ce--minimal__background_red .header h1,
.ce.ce--vd_news_list.ce--minimal__background_red .header h2,
.ce.ce--vd_news_list.ce--minimal__background_red .header h3,
.ce.ce--vd_news_list.ce--minimal__background_red .header .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_news_list.ce--minimal__background_red .header legend,
.ce.ce--vd_news_list.ce--minimal__background_red .header h4 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 0; }

.ce.ce--vd_news_list.ce--minimal__background_red .vd-actions {
  text-align: left; }

.ce.ce--vd_news_list .news-list-item {
  margin: 1.25rem 0; }
  .ce.ce--vd_news_list .news-list-item .meta__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .ce.ce--vd_news_list .news-list-item .meta__category {
    font-size: 18px;
    font-size: 1.125rem;
    color: #00848d;
    font-weight: 600; }
  .ce.ce--vd_news_list .news-list-item .meta__date {
    font-size: 18px;
    font-size: 1.125rem; }
  .ce.ce--vd_news_list .news-list-item .header a {
    text-decoration: none;
    color: #000000; }
    .ce.ce--vd_news_list .news-list-item .header a:hover, .ce.ce--vd_news_list .news-list-item .header a:focus {
      text-decoration: underline; }
  .ce.ce--vd_news_list .news-list-item .header h1,
  .ce.ce--vd_news_list .news-list-item .header h2,
  .ce.ce--vd_news_list .news-list-item .header h3,
  .ce.ce--vd_news_list .news-list-item .header .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_news_list .news-list-item .header legend,
  .ce.ce--vd_news_list .news-list-item .header h4 {
    margin-bottom: 0.625rem; }
  .ce.ce--vd_news_list .news-list-item .lead p {
    margin-top: 0.625rem; }

.ce.ce--vd_news_list .vd-actions {
  text-align: center; }

.ce.ce--vd_news_list .news__cta {
  margin-top: 40px;
  text-align: center; }
  .ce.ce--vd_news_list .news__cta.news__cta--align-left {
    width: calc(135% + 5.638em + 5.638em - 40px);
    margin-bottom: 40px; }

.ce.ce--vd_news_list .news-view--list {
  padding-bottom: 5rem; }

.news .news-view--list .news__item {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem; }
  .news .news-view--list .news__item .news__item__meta.news__item__meta--top {
    margin-bottom: 5px; }
  .news .news-view--list .news__item .news__item__title * {
    margin-top: 0;
    margin-bottom: 20px; }
  .news .news-view--list .news__item .news__item__content a {
    font-size: 18px;
    font-size: 1.125rem; }
    .news .news-view--list .news__item .news__item__content a:after {
      content: '';
      height: 18px;
      width: 32px;
      display: inline-block;
      top: 4px;
      position: relative;
      margin-left: 13px;
      background-repeat: no-repeat;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23015D7D'/%3E%3C/svg%3E"); }

/*
@mixin setTheme_accordion($colors) {
    background-color: map-get($colors, "bg");

    .accordion__header {
        background-color: map-get($colors, "item");
    }

    .accordion__panel {
        background-color:  map-get($colors, "panel");
    }
}
*/
.ce--vd_accordion .accordion__item, .ce--vd_downloads .accordion__item, .ce.ce--vd_board_member .accordion__item {
  margin-bottom: 0.625rem; }

.ce--vd_accordion .accordion__header, .ce--vd_downloads .accordion__header, .ce.ce--vd_board_member .accordion__header {
  position: relative;
  width: 100%;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 38px;
  color: #015D7D;
  font-family: Livvic, "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-weight: 700;
  border: none;
  text-align: left;
  padding: 1.875rem 0;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .ce--vd_accordion .accordion__header h1, .ce--vd_downloads .accordion__header h1, .ce.ce--vd_board_member .accordion__header h1,
  .ce--vd_accordion .accordion__header h2,
  .ce--vd_downloads .accordion__header h2,
  .ce.ce--vd_board_member .accordion__header h2,
  .ce--vd_accordion .accordion__header h3,
  .ce--vd_downloads .accordion__header h3,
  .ce.ce--vd_board_member .accordion__header h3,
  .ce--vd_accordion .accordion__header .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce--vd_accordion .accordion__header legend,
  .ce--vd_downloads .accordion__header .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce--vd_downloads .accordion__header legend,
  .ce.ce--vd_board_member .accordion__header .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_board_member .accordion__header legend,
  .ce--vd_accordion .accordion__header h4,
  .ce--vd_downloads .accordion__header h4,
  .ce.ce--vd_board_member .accordion__header h4 {
    margin: 0; }
  .ce--vd_accordion .accordion__header span, .ce--vd_downloads .accordion__header span, .ce.ce--vd_board_member .accordion__header span {
    padding-right: 2.8125rem;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto; }
  .ce--vd_accordion .accordion__header.has-subtitle p, .ce--vd_downloads .accordion__header.has-subtitle p, .ce.ce--vd_board_member .accordion__header.has-subtitle p {
    margin-bottom: 0; }
  .ce--vd_accordion .accordion__header.has-content, .ce--vd_downloads .accordion__header.has-content, .ce.ce--vd_board_member .accordion__header.has-content {
    cursor: pointer; }
    .ce--vd_accordion .accordion__header.has-content:hover span, .ce--vd_downloads .accordion__header.has-content:hover span, .ce.ce--vd_board_member .accordion__header.has-content:hover span {
      color: #015D7D; }
    .ce--vd_accordion .accordion__header.has-content:after, .ce--vd_downloads .accordion__header.has-content:after, .ce.ce--vd_board_member .accordion__header.has-content:after {
      content: "";
      display: inline-block;
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217.416%22%20height%3D%2210.122%22%20viewBox%3D%220%200%2017.416%2010.122%22%3E\a%20%20%3Cpath%20id%3D%22right-arrow%22%20d%3D%22M23.042%2C107.5l-1.414%2C1.414%2C6.293%2C6.293%2C1%2C1-1%2C1L21.628%2C123.5l1.414%2C1.414%2C8.708-8.708Z%22%20transform%3D%22translate%28124.916%20-21.628%29%20rotate%2890%29%22%20fill%3D%22%23005d7d%22%2F%3E%3C%2Fsvg%3E");
      background-repeat: no-repeat;
      background-position: right center;
      width: 17px;
      height: 24px;
      -webkit-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out;
      position: absolute;
      right: 0px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
  .ce--vd_accordion .accordion__header[aria-expanded="true"]:after, .ce--vd_downloads .accordion__header[aria-expanded="true"]:after, .ce.ce--vd_board_member .accordion__header[aria-expanded="true"]:after {
    -webkit-transform-origin: center;
            transform-origin: center;
    background-position: right center;
    -webkit-transform: rotate(-180deg) translateY(50%);
            transform: rotate(-180deg) translateY(50%);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }

.ce--vd_accordion .accordion__panel, .ce--vd_downloads .accordion__panel, .ce.ce--vd_board_member .accordion__panel {
  -webkit-transition: height .35s ease-in-out;
  transition: height .35s ease-in-out;
  overflow: hidden; }
  .ce--vd_accordion .accordion__panel:not(.active), .ce--vd_downloads .accordion__panel:not(.active), .ce.ce--vd_board_member .accordion__panel:not(.active) {
    display: none; }

.ce--vd_accordion .accordion__content, .ce--vd_downloads .accordion__content, .ce.ce--vd_board_member .accordion__content {
  padding: 0.625rem 1.125rem 1.25rem 0; }
  @media only screen and (max-width: 991px) {
    .ce--vd_accordion .accordion__content, .ce--vd_downloads .accordion__content, .ce.ce--vd_board_member .accordion__content {
      padding-right: 0px; } }
  .ce--vd_accordion .accordion__content > p, .ce--vd_downloads .accordion__content > p, .ce.ce--vd_board_member .accordion__content > p,
  .ce--vd_accordion .accordion__content > li,
  .ce--vd_downloads .accordion__content > li,
  .ce.ce--vd_board_member .accordion__content > li,
  .ce--vd_accordion .accordion__content > a,
  .ce--vd_downloads .accordion__content > a,
  .ce.ce--vd_board_member .accordion__content > a {
    font-size: 18px;
    font-size: 1.125rem; }

.small_width.ce--vd_accordion .accordion__header.has-content:after, .small_width.ce--vd_downloads .accordion__header.has-content:after, .small_width.ce.ce--vd_board_member .accordion__header.has-content:after {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217.416%22%20height%3D%2222.75%22%20viewBox%3D%220%200%2017.416%2022.75%22%3E\a%20%20%3Cpath%20id%3D%22right-arrow%22%20d%3D%22M23.042%2C107.5l-1.414%2C1.414%2C6.293%2C6.293H9v2H27.921L21.628%2C123.5l1.414%2C1.414%2C8.708-8.708Z%22%20transform%3D%22translate%28124.916%20-9%29%20rotate%2890%29%22%20fill%3D%22%23005d7d%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  width: 24px; }

.ce--vd_accordion,
.ce--vd_downloads {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem; }
  .ce--vd_accordion .ce__title,
  .ce--vd_downloads .ce__title {
    color: #015D7D; }
  .ce--vd_accordion .accordion,
  .ce--vd_downloads .accordion {
    max-width: calc((100% / 12) * 10); }
    @media only screen and (max-width: 991px) {
      .ce--vd_accordion .accordion,
      .ce--vd_downloads .accordion {
        max-width: calc((100% / 12) * 12); } }
    .ce--vd_accordion .accordion__header.has-content,
    .ce--vd_downloads .accordion__header.has-content {
      border-bottom: 1px solid #015D7D; }
  .ce--vd_accordion.small_width .accordion,
  .ce--vd_downloads.small_width .accordion {
    max-width: calc((100% / 12) * 7); }

@media only screen and (min-width: 768px) {
  .ce.ce--vd_accordion {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem; }
    .ce.ce--vd_accordion.version--red_colored_rounded .accordion__item {
      margin-bottom: 1.875rem; }
    .ce.ce--vd_accordion.version--red_colored_rounded .accordion__content {
      padding: 1.875rem 5.3125rem; }
    .ce.ce--vd_accordion .accordion__header span {
      padding-right: 4.0625rem; }
    .ce.ce--vd_accordion .accordion__content {
      padding-right: 4.0625rem; } }

/* Slider */
/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slider-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .slider-controls .vd-slick-prev,
  .slider-controls .vd-slick-next {
    background-color: transparent;
    border: none;
    width: 14px;
    height: 25px;
    padding: 0;
    background-repeat: no-repeat; }
  .slider-controls .slick-dots {
    text-align: center;
    padding: 0;
    margin: 0 15px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .slider-controls .slick-dots li {
      position: relative;
      display: inline-block;
      margin: 0 5px;
      padding: 0;
      cursor: pointer;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .slider-controls .slick-dots li button {
        font-size: 0;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        padding: 0; }
  .slider-controls--turquoise .vd-slick-prev {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2022%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m18.7%2032.88-15.5-14.7%2015.5-14.98%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E"); }
  .slider-controls--turquoise .vd-slick-next {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2022%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m3.2%2032.88%2015.5-14.7-15.5-14.98%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E"); }
  .slider-controls--turquoise .slick-dots li button {
    background: transparent;
    border: 2px solid #00848d; }
  .slider-controls--turquoise .slick-dots li.slick-active button {
    background: #00848d; }
  .slider-controls--white .vd-slick-prev {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2022%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m18.7%2032.88-15.5-14.7%2015.5-14.98%22%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E"); }
  .slider-controls--white .vd-slick-next {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2022%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m3.2%2032.88%2015.5-14.7-15.5-14.98%22%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E"); }
  .slider-controls--white .slick-dots li button {
    background: transparent;
    border: 2px solid #fff; }
  .slider-controls--white .slick-dots li.slick-active button {
    background: #fff; }

.slick-dotted.slick-slider {
  margin-bottom: 10px; }

.slick-dots-container {
  width: 5.5rem;
  overflow: hidden;
  display: block;
  padding: 0;
  margin: 0.625rem auto;
  height: 0.875rem;
  position: relative; }

.slick-dots-container > ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  position: relative;
  margin: 0;
  list-style: none;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: unset;
  height: 100%; }

.slick-dots-container > ul li {
  width: 0.625rem;
  height: 0.625rem;
  margin: 0 0.25rem;
  background-color: #efd5d5;
  border: none;
  border-radius: 50%; }

.slick-dots-container > ul li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0.3125rem;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0; }

.slick-dots-container > ul li.p-small-1,
.slick-dots-container > ul li.n-small-1 {
  -webkit-transform: scale(0.8);
          transform: scale(0.8); }

.slick-dots-container > ul li.slick-active {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transform-origin: center;
          transform-origin: center;
  background: #3498db; }

.slick-dots li button:before {
  display: none; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.ce.ce--vd_carousel {
  position: relative; }
  .ce.ce--vd_carousel .ce__content > .ce__bodytext {
    background-color: #ffffff;
    padding-bottom: 1.25rem; }
    .ce.ce--vd_carousel .ce__content > .ce__bodytext > * {
      max-width: 950px; }
  .ce.ce--vd_carousel .vd-wrapper > .ce__title h1,
  .ce.ce--vd_carousel .vd-wrapper > .ce__title h2,
  .ce.ce--vd_carousel .vd-wrapper > .ce__title h3,
  .ce.ce--vd_carousel .vd-wrapper > .ce__title .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_carousel .vd-wrapper > .ce__title legend,
  .ce.ce--vd_carousel .vd-wrapper > .ce__title h4 {
    color: #00848d; }
  .ce.ce--vd_carousel .vd-slide {
    position: relative; }
    .ce.ce--vd_carousel .vd-slide--text-image {
      padding-top: 2.5rem;
      margin-bottom: 5.625rem;
      background-color: #FCE5E5; }
      .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__content .ce__title h1,
      .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__content .ce__title h2,
      .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__content .ce__title h3,
      .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__content .ce__title .ce.ce--vd_job_form fieldset legend,
      .ce.ce--vd_job_form fieldset .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__content .ce__title legend,
      .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__content .ce__title h4 {
        color: #00848d;
        margin-bottom: 1.25rem;
        -webkit-hyphens: auto;
            -ms-hyphens: auto;
                hyphens: auto; }
      .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__content .subtitle {
        font-size: 25px;
        font-size: 1.5625rem;
        font-weight: 600; }
      .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__content .ce__bodytext > * {
        font-size: 18px;
        font-size: 1.125rem; }
      .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__content .slide-index {
        font-size: 18px;
        font-size: 1.125rem;
        font-weight: 600;
        margin: 1.5625rem 0;
        text-align: right; }
      .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__image {
        margin-bottom: -5rem; }
        .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__image img {
          width: 100%;
          height: auto; }
    .ce.ce--vd_carousel .vd-slide--image {
      background-color: transparent;
      margin-bottom: 0;
      padding-top: 0; }
      .ce.ce--vd_carousel .vd-slide--image .ce__title h1,
      .ce.ce--vd_carousel .vd-slide--image .ce__title h2,
      .ce.ce--vd_carousel .vd-slide--image .ce__title h3,
      .ce.ce--vd_carousel .vd-slide--image .ce__title .ce.ce--vd_job_form fieldset legend,
      .ce.ce--vd_job_form fieldset .ce.ce--vd_carousel .vd-slide--image .ce__title legend,
      .ce.ce--vd_carousel .vd-slide--image .ce__title h4 {
        color: #ffffff; }
      .ce.ce--vd_carousel .vd-slide--image .vd-slide__image {
        margin-bottom: 0; }
        .ce.ce--vd_carousel .vd-slide--image .vd-slide__image img {
          width: 100%;
          height: auto; }
      .ce.ce--vd_carousel .vd-slide--image .vd-slide__image-caption {
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        font-size: 0.875rem; }
    .ce.ce--vd_carousel .vd-slide--image-gallery {
      margin-bottom: 1.25rem;
      padding-top: 0; }
      .ce.ce--vd_carousel .vd-slide--image-gallery .slide-index {
        text-align: right;
        font-size: 18px;
        font-size: 1.125rem;
        font-weight: 600;
        padding: 1.5625rem 1.5625rem 1.5625rem 0; }
      .ce.ce--vd_carousel .vd-slide--image-gallery .vd-slide__image {
        margin-bottom: 0;
        text-align: center;
        cursor: pointer;
        width: 100%;
        height: auto; }
        @media only screen and (min-width: 769px) {
          .ce.ce--vd_carousel .vd-slide--image-gallery .vd-slide__image {
            max-width: 750px;
            height: auto;
            margin: auto; } }
        .ce.ce--vd_carousel .vd-slide--image-gallery .vd-slide__image figure {
          position: relative;
          margin: 0; }
          .ce.ce--vd_carousel .vd-slide--image-gallery .vd-slide__image figure > img {
            display: block;
            margin: auto;
            width: auto;
            max-width: 100%;
            max-height: 35.75rem;
            -o-object-fit: cover;
               object-fit: cover; }
      .ce.ce--vd_carousel .vd-slide--image-gallery .vd-slide__image-caption {
        padding: 0.5rem 0.5rem;
        color: #000;
        text-align: center;
        max-width: 900px;
        margin: auto; }
        .ce.ce--vd_carousel .vd-slide--image-gallery .vd-slide__image-caption p {
          font-size: 14px;
          font-size: 0.875rem;
          margin: 0rem; }
  .ce.ce--vd_carousel.ce--bg_green__front_bright, .ce.ce--vd_carousel.ce--bg_grey {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem; }
  .ce.ce--vd_carousel.ce--bg_green__front_bright {
    background-color: #00848d; }
    .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper > .ce__title h1,
    .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper > .ce__title h2,
    .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper > .ce__title h3,
    .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper > .ce__title .ce.ce--vd_job_form fieldset legend,
    .ce.ce--vd_job_form fieldset .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper > .ce__title legend,
    .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper > .ce__title h4 {
      color: #fff; }
    .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper .ce__content > .ce__bodytext {
      color: #fff;
      background-color: transparent;
      padding-left: 0;
      padding-right: 0;
      margin: 0; }
  .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper .ce__content > .ce__bodytext {
    padding-left: 0;
    padding-right: 0;
    margin: 0; }
  .ce.ce--vd_carousel.ce--bg_grey .vd-slider {
    background-color: #f2f2f3; }
  .ce.ce--vd_carousel.ce--bg_grey .ce__content {
    position: relative; }
  .ce.ce--vd_carousel.ce--bg_grey .vd-slick-prev,
  .ce.ce--vd_carousel.ce--bg_grey .vd-slick-next {
    display: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%); }
  .ce.ce--vd_carousel.ce--bg_grey .vd-slick-prev {
    left: 1.25rem; }
  .ce.ce--vd_carousel.ce--bg_grey .vd-slick-next {
    right: 1.25rem; }

@media only screen and (min-width: 991px) {
  .ce.ce--vd_carousel .vd-slide--text-image {
    background-color: #fff;
    padding-top: 0rem;
    margin-bottom: 1.25rem; }
    .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__inner {
      background-color: #FCE5E5;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      height: 100%;
      padding: 0.9375rem 0.9375rem 0.9375rem 1.875rem; }
      .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__content .subtitle {
        font-size: 33px;
        font-size: 2.0625rem; }
      .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__content .slide-index {
        margin-top: auto; }
    .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__image {
      margin-bottom: 0rem;
      height: 100%; }
      .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__image figure {
        height: 100%; }
      .ce.ce--vd_carousel .vd-slide--text-image .vd-slide__image img {
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
  .ce.ce--vd_carousel .vd-slide--image .vd-slide__container {
    max-width: initial;
    padding: 0; }
  .ce.ce--vd_carousel .vd-slide--image .vd-slide__inner {
    background-color: transparent;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .ce.ce--vd_carousel .vd-slide--image .ce__title h1,
  .ce.ce--vd_carousel .vd-slide--image .ce__title h2,
  .ce.ce--vd_carousel .vd-slide--image .ce__title h3,
  .ce.ce--vd_carousel .vd-slide--image .ce__title .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_carousel .vd-slide--image .ce__title legend,
  .ce.ce--vd_carousel .vd-slide--image .ce__title h4 {
    border-bottom: 2px solid #fff; }
  .ce.ce--vd_carousel .vd-slide--image .vd-slide__image img {
    width: 100%;
    height: auto; }
    .ce.ce--vd_carousel .vd-slide--image .vd-slide__image img[data-format="landscape"] {
      width: 100%;
      height: auto; }
    .ce.ce--vd_carousel .vd-slide--image .vd-slide__image img[data-format="portrait"] {
      width: 56.20%;
      height: auto;
      -o-object-fit: initial;
         object-fit: initial; }
  .ce.ce--vd_carousel .vd-slide--image-gallery {
    margin-bottom: 1.25rem;
    padding-top: 0; }
    .ce.ce--vd_carousel .vd-slide--image-gallery .vd-slide__inner {
      max-width: 90%;
      margin: 0 auto; }
    .ce.ce--vd_carousel .vd-slide--image-gallery .slide-index {
      padding: 1.25rem 1.5625rem 0 0; }
    .ce.ce--vd_carousel .vd-slide--image-gallery .vd-slide__image figure > img {
      display: block;
      margin: auto;
      height: 37.75rem;
      max-height: 100%;
      max-width: 100%;
      width: auto; }
    .ce.ce--vd_carousel .vd-slide--image-gallery .vd-slide__image-caption {
      padding-top: 20px; }
      .ce.ce--vd_carousel .vd-slide--image-gallery .vd-slide__image-caption p {
        font-size: 18px;
        font-size: 1.125rem; }
  .ce.ce--vd_carousel.ce--bg_green__front_bright {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem; }
    .ce.ce--vd_carousel.ce--bg_green__front_bright .slick-slide {
      margin-left: 1.25rem;
      margin-right: 1.25rem; }
    .ce.ce--vd_carousel.ce--bg_green__front_bright .slick-list {
      margin-left: -1.25rem;
      margin-right: -1.25rem; }
  .ce.ce--vd_carousel.ce--bg_grey .vd-slick-prev,
  .ce.ce--vd_carousel.ce--bg_grey .vd-slick-next {
    display: block; } }

.vd-slick-dots ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .vd-slick-dots ul li {
    float: left;
    width: 20px;
    height: 20px;
    border: 2px solid #015D7D;
    border-radius: 20px;
    margin: 10px; }
    .vd-slick-dots ul li.slick-active {
      background-color: #015D7D; }
    .vd-slick-dots ul li button {
      text-indent: -9999px; }

.ce.ce--vd_image {
  background-color: transparent; }
  @media only screen and (max-width: 767px) {
    .ce.ce--vd_image {
      padding-top: 2.5rem !important;
      padding-bottom: 2.5rem !important; } }
  .ce.ce--vd_image .vd-image img {
    width: calc((100% / 12) * 7);
    height: auto; }
    @media only screen and (max-width: 767px) {
      .ce.ce--vd_image .vd-image img {
        width: 100%; } }

.ce.ce--vd_image {
  padding-top: 1.875rem !important;
  padding-bottom: 1.875rem !important; }

.ce.ce--vd_text, .ce.ce--table {
  padding-bottom: 3.75rem;
  padding-top: 3.75rem; }
  .ce.ce--vd_text .ce__title, .ce.ce--table .ce__title {
    max-width: 800px;
    color: #00848d; }
  .ce.ce--vd_text .ce__content, .ce.ce--table .ce__content {
    max-width: 800px; }
  .ce.ce--vd_text .ce__bodytext p, .ce.ce--table .ce__bodytext p, .ce.ce--vd_text .ce__bodytext ul, .ce.ce--table .ce__bodytext ul, .ce.ce--vd_text .ce__bodytext ol, .ce.ce--table .ce__bodytext ol {
    font-size: 18px;
    font-size: 1.125rem; }
  .ce.ce--vd_text .ce__bodytext h1, .ce.ce--table .ce__bodytext h1,
  .ce.ce--vd_text .ce__bodytext h2,
  .ce.ce--table .ce__bodytext h2,
  .ce.ce--vd_text .ce__bodytext h3,
  .ce.ce--table .ce__bodytext h3,
  .ce.ce--vd_text .ce__bodytext .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_text .ce__bodytext legend,
  .ce.ce--table .ce__bodytext .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--table .ce__bodytext legend,
  .ce.ce--vd_text .ce__bodytext h4,
  .ce.ce--table .ce__bodytext h4 {
    margin: 1.875rem 0 1.25rem 0; }
  .ce.ce--vd_text .ce__bodytext ul, .ce.ce--table .ce__bodytext ul, .ce.ce--vd_text .ce__bodytext ol, .ce.ce--table .ce__bodytext ol {
    padding-left: 1.4375rem; }
    .ce.ce--vd_text .ce__bodytext ul li, .ce.ce--table .ce__bodytext ul li,
    .ce.ce--vd_text .ce__bodytext ol li,
    .ce.ce--table .ce__bodytext ol li {
      margin-bottom: 0.625rem;
      line-height: 1.2; }
      .ce.ce--vd_text .ce__bodytext ul li ul, .ce.ce--table .ce__bodytext ul li ul,
      .ce.ce--vd_text .ce__bodytext ul li ol,
      .ce.ce--table .ce__bodytext ul li ol,
      .ce.ce--vd_text .ce__bodytext ol li ul,
      .ce.ce--table .ce__bodytext ol li ul,
      .ce.ce--vd_text .ce__bodytext ol li ol,
      .ce.ce--table .ce__bodytext ol li ol {
        margin-top: 0.625rem; }
      .ce.ce--vd_text .ce__bodytext ul li ul, .ce.ce--table .ce__bodytext ul li ul,
      .ce.ce--vd_text .ce__bodytext ol li ul,
      .ce.ce--table .ce__bodytext ol li ul {
        padding-left: 0;
        margin-bottom: 0.625rem; }
        .ce.ce--vd_text .ce__bodytext ul li ul > li, .ce.ce--table .ce__bodytext ul li ul > li,
        .ce.ce--vd_text .ce__bodytext ol li ul > li,
        .ce.ce--table .ce__bodytext ol li ul > li {
          list-style: none; }
          .ce.ce--vd_text .ce__bodytext ul li ul > li:before, .ce.ce--table .ce__bodytext ul li ul > li:before,
          .ce.ce--vd_text .ce__bodytext ol li ul > li:before,
          .ce.ce--table .ce__bodytext ol li ul > li:before {
            content: "\2192";
            margin-right: 0.4375rem;
            font-size: 20px;
            font-size: 1.25rem; }
  
  .ce.ce--vd_text .ce__bodytext ol li,
  .ce.ce--table .ce__bodytext ol li {
    padding-left: 5px; }

.ce.ce--vd_text_images .ce__title {
  color: #00848d; }
  @media only screen and (min-width: 768px) {
    .ce.ce--vd_text_images .ce__title {
      margin-top: 40px; } }

.ce.ce--vd_text_images .ce__bodytext > :nth-child(1) {
  margin-top: 0; }

.ce.ce--vd_text_images .vd-images-container .row > :nth-child(1) {
  padding-right: 0.3125rem; }

.ce.ce--vd_text_images .vd-images-container .row > :nth-child(2) {
  padding-left: 0.3125rem; }

.ce.ce--vd_text_images .vd-images > *:not(:last-child) {
  margin-bottom: 0.625rem; }

@media only screen and (min-width: 768px) {
  .ce.ce--vd_text_images .vd-images-container .row > :nth-child(1) {
    padding-right: 0.625rem; }
  .ce.ce--vd_text_images .vd-images-container .row > :nth-child(2) {
    padding-left: 0.625rem; }
  .ce.ce--vd_text_images .vd-images > *:not(:last-child) {
    margin-bottom: 1.25rem; } }

.ce.ce--vd_link_list {
  width: 100%; }
  .ce.ce--vd_link_list.ce--bg_light_red__front_dark .vd-wrapper, .ce.ce--vd_link_list.ce--colorized_background__light_red .vd-wrapper {
    background-color: #FCE5E5; }
  .ce.ce--vd_link_list.ce--colorized_background__light_green .vd-wrapper {
    background-color: #D9EDEE; }
  .ce.ce--vd_link_list.ce--bg_red__front_bright .vd-wrapper, .ce.ce--vd_link_list.ce--default .vd-wrapper {
    background-color: #FFFFFF;
    padding: 0; }
  .ce.ce--vd_link_list .vd-wrapper {
    padding: 1.875rem 1.25rem; }
  .ce.ce--vd_link_list .icon {
    width: 25px;
    height: auto;
    margin-bottom: 0.5rem; }
    .ce.ce--vd_link_list .icon svg {
      width: 100%;
      height: auto; }
  .ce.ce--vd_link_list .ce__title {
    text-align: center;
    margin-bottom: 3.75rem; }
    .ce.ce--vd_link_list .ce__title h1,
    .ce.ce--vd_link_list .ce__title h2,
    .ce.ce--vd_link_list .ce__title h3,
    .ce.ce--vd_link_list .ce__title .ce.ce--vd_job_form fieldset legend,
    .ce.ce--vd_job_form fieldset .ce.ce--vd_link_list .ce__title legend,
    .ce.ce--vd_link_list .ce__title h4 {
      font-size: 25px;
      font-size: 1.5625rem;
      margin: 0; }
    .ce.ce--vd_link_list .ce__title .subtitle {
      font-size: 20px;
      font-size: 1.25rem;
      font-weight: 600;
      line-height: 1.3; }
  .ce.ce--vd_link_list .ce__content .vd-links .row > *:not(:last-child) {
    margin-bottom: 1.875rem; }
  .ce.ce--vd_link_list .ce__content .vd-links .vd-link .header > * {
    font-size: 30px;
    font-size: 1.875rem;
    margin-bottom: 10px; }
  .ce.ce--vd_link_list .ce__content .vd-links .container, .ce.ce--vd_link_list .ce__content .vd-links .vd-breadcrumb, .ce.ce--vd_link_list .ce__content .vd-links .vd-breadcrumb .vd-nav, .vd-breadcrumb .ce.ce--vd_link_list .ce__content .vd-links .vd-nav, .ce.ce--vd_link_list .ce__content .vd-links #tx-solr-search, .ce.ce--vd_link_list .ce__content .vd-links .vd-filter-container, .ce.ce--vd_link_list .ce__content .vd-links .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__bottom .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .vd-section--header .header__navigation--buttons, .vd-section--header .ce.ce--vd_link_list .ce__content .vd-links .header__navigation--buttons, .ce.ce--vd_link_list .ce__content .vd-links body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section--header .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links body:not(.template--startpage) .vd-section .header__navigation--buttons, body:not(.template--startpage) .vd-section .ce.ce--vd_link_list .ce__content .vd-links .header__navigation--buttons, .ce.ce--vd_link_list .ce__content .vd-links body.template--startpage .vd-section--hero .vd-wrapper, body.template--startpage .vd-section--hero .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .content-element.gutachter-list, .ce.ce--vd_link_list .ce__content .vd-links .vd-section--main .vd-message, .vd-section--main .ce.ce--vd_link_list .ce__content .vd-links .vd-message, .ce.ce--vd_link_list .ce__content .vd-links .vd-section--header .header__top .vd-wrapper, .vd-section--header .header__top .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_event_calendar .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_event_registration .vd-wrapper, .ce.ce--vd_event_registration .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--sfeventmgt_pieventdetail .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce--vd_event_list > .vd-wrapper,
  .ce.ce--vd_link_list .ce__content .vd-links .ce--vd_event_search > .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_newsletter_registration, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_services_teaser .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_text_teaser .ce.ce--vd_link_list .ce__content .vd-links .ce__title, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_teaser .ce.ce--vd_link_list .ce__content .vd-links .single-news-teaser, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .ce.ce--vd_link_list .ce__content .vd-links .ce__title, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list .ce.ce--vd_link_list .ce__content .vd-links .icon, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .ce.ce--vd_link_list .ce__content .vd-links .vd-actions, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_news_list .news__cta, .ce.ce--vd_news_list .ce.ce--vd_link_list .ce__content .vd-links .news__cta, .ce.ce--vd_link_list .ce__content .vd-links .ce--vd_accordion .ce__title, .ce--vd_accordion .ce.ce--vd_link_list .ce__content .vd-links .ce__title,
  .ce.ce--vd_link_list .ce__content .vd-links .ce--vd_downloads .ce__title, .ce--vd_downloads .ce.ce--vd_link_list .ce__content .vd-links .ce__title, .ce.ce--vd_link_list .ce--vd_accordion .ce__content .vd-links .ce__bodytext, .ce--vd_accordion .ce.ce--vd_link_list .ce__content .vd-links .ce__bodytext,
  .ce.ce--vd_link_list .ce--vd_downloads .ce__content .vd-links .ce__bodytext, .ce--vd_downloads .ce.ce--vd_link_list .ce__content .vd-links .ce__bodytext, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel .ce.ce--vd_link_list .ce__content .vd-links .ce__content > .ce__bodytext, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_green__front_bright .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .vd-slick-dots, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_image .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_text .vd-wrapper, .ce.ce--vd_text .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--table .vd-wrapper, .ce.ce--table .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--html .vd-wrapper, .ce.ce--html .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_text_images .ce__title, .ce.ce--vd_text_images .ce.ce--vd_link_list .ce__content .vd-links .ce__title, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_link_list, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_quotation, .ce.ce--vd_link_list .ce__content .vd-links .ce--vd_pages_teaser .ce__title, .ce--vd_pages_teaser .ce.ce--vd_link_list .ce__content .vd-links .ce__title, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_video .vd-wrapper, .ce.ce--vd_video .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--form_formframework .vd-wrapper, .ce.ce--form_formframework .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_info_box, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_magazines .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_list_offers .ce__title, .ce.ce--vd_list_offers .ce.ce--vd_link_list .ce__content .vd-links .ce__title, .ce.ce--vd_link_list .ce__content .vd-links .content-element-directories .text, .content-element-directories .ce.ce--vd_link_list .ce__content .vd-links .text, .ce.ce--vd_link_list .ce__content .vd-links .content-element-directories #directories_filter__form, .content-element-directories .ce.ce--vd_link_list .ce__content .vd-links #directories_filter__form, .ce.ce--vd_link_list .ce__content .vd-links .content-element-directories .directories-results, .content-element-directories .ce.ce--vd_link_list .ce__content .vd-links .directories-results, .ce.ce--vd_link_list .ce__content .vd-links #tx-solr-search .vd-wrapper, #tx-solr-search .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links main > .ce.ce--vd_event_teaser .single-event-teaser, main > .ce.ce--vd_event_teaser .ce.ce--vd_link_list .ce__content .vd-links .single-event-teaser, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_departments_list .ce.ce--vd_link_list .ce__content .vd-links .ce__title, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_divisions_list .ce.ce--vd_link_list .ce__content .vd-links .ce__title, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_persons_list .ce.ce--vd_link_list .ce__content .vd-links .ce__title, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_job_form, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce.ce--vd_link_list .ce__content .vd-links .ce--vd_downloads .vd-wrapper, .ce--vd_downloads .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce--vd_download .ce__title, .ce--vd_download .ce.ce--vd_link_list .ce__content .vd-links .ce__title, .ce.ce--vd_link_list .ce__content .vd-links .ce--vd_download .ce__content, .ce--vd_download .ce.ce--vd_link_list .ce__content .vd-links .ce__content, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_menu_teaser .ce.ce--vd_link_list .ce__content .vd-links .vd-wrapper, .ce.ce--vd_link_list .ce__content .vd-links .ce.ce--vd_news_carousel > .vd-wrapper {
    padding: 0px; }
  .ce.ce--vd_link_list .ce__content .header h1,
  .ce.ce--vd_link_list .ce__content .header h2,
  .ce.ce--vd_link_list .ce__content .header h3,
  .ce.ce--vd_link_list .ce__content .header .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_link_list .ce__content .header legend,
  .ce.ce--vd_link_list .ce__content .header h4 {
    margin-top: 0;
    margin-bottom: 0.3125rem;
    font-size: 18px;
    font-size: 1.125rem; }
  .ce.ce--vd_link_list .ce__content .description {
    margin-bottom: 0.625rem; }
    .ce.ce--vd_link_list .ce__content .description > * {
      margin: 0; }
  .ce.ce--vd_link_list .ce__content .link--readmore {
    display: inline-block; }
  .ce.ce--vd_link_list .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }

@media only screen and (min-width: 768px) {
  .ce.ce--vd_link_list .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .ce.ce--vd_link_list .vd-wrapper {
    padding: 2.1875rem 1.875rem; }
  .ce.ce--vd_link_list .icon {
    width: 40px; }
  .ce.ce--vd_link_list .ce__title h1,
  .ce.ce--vd_link_list .ce__title h2,
  .ce.ce--vd_link_list .ce__title h3,
  .ce.ce--vd_link_list .ce__title .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_link_list .ce__title legend,
  .ce.ce--vd_link_list .ce__title h4 {
    font-size: 33px;
    font-size: 2.0625rem; }
  .ce.ce--vd_link_list .ce__title .subtitle {
    font-size: 30px;
    font-size: 1.875rem; } }

.ce.ce--vd_news_detail .meta__category .label-info {
  /*
                @extend .top-label;
                @extend .top-label--red;
*/ }

.ce.ce--vd_news_detail .meta__date {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 600;
  margin: 0.9375rem 0; }
  @media only screen and (min-width: 768px) {
    .ce.ce--vd_news_detail .meta__date {
      font-size: 33px;
      font-size: 2.0625rem; } }

.ce.ce--vd_news_detail .headline {
  color: #00848d;
  line-height: 1.1; }

.ce.ce--vd_news_detail .thumbnail img {
  width: 100%;
  height: auto; }

.ce.ce--vd_news_detail .lead {
  margin-bottom: 1.25rem; }
  .ce.ce--vd_news_detail .lead > * {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 600; }
  .ce.ce--vd_news_detail .lead > :first-child {
    margin-top: 0; }

.ce.ce--vd_news_detail .news-text-wrap > * {
  font-size: 18px;
  font-size: 1.125rem; }

.ce.ce--vd_news_detail .news-text-wrap ul,
.ce.ce--vd_news_detail .news-text-wrap ol {
  padding-left: 1.4375rem; }
  .ce.ce--vd_news_detail .news-text-wrap ul li,
  .ce.ce--vd_news_detail .news-text-wrap ol li {
    margin-bottom: 0.625rem;
    line-height: 1.2; }
    .ce.ce--vd_news_detail .news-text-wrap ul li ul,
    .ce.ce--vd_news_detail .news-text-wrap ul li ol,
    .ce.ce--vd_news_detail .news-text-wrap ol li ul,
    .ce.ce--vd_news_detail .news-text-wrap ol li ol {
      margin-top: 0.625rem; }
    .ce.ce--vd_news_detail .news-text-wrap ul li ul,
    .ce.ce--vd_news_detail .news-text-wrap ol li ul {
      padding-left: 0;
      margin-bottom: 0.625rem; }
      .ce.ce--vd_news_detail .news-text-wrap ul li ul > li,
      .ce.ce--vd_news_detail .news-text-wrap ol li ul > li {
        list-style: none; }
        .ce.ce--vd_news_detail .news-text-wrap ul li ul > li:before,
        .ce.ce--vd_news_detail .news-text-wrap ol li ul > li:before {
          content: "\2192";
          margin-right: 0.4375rem;
          font-size: 20px;
          font-size: 1.25rem; }

.ce.ce--vd_news_detail .news-text-wrap ol li {
  padding-left: 5px; }

.ce.ce--vd_news_detail .back-link {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 2.1875rem; }

.ce.ce--vd_quotation.ce--default .vd-wrapper {
  background-color: #fff; }

.ce.ce--vd_quotation.ce--default .icon svg path {
  stroke: #00848d; }

.ce.ce--vd_quotation.ce--default .ce__title {
  color: #00848d; }

.ce.ce--vd_quotation.ce--default .ce__content {
  color: #00848d; }
  .ce.ce--vd_quotation.ce--default .ce__content .divider {
    background-color: #00848d; }

.ce.ce--vd_quotation.ce--colorized_background__green .vd-wrapper {
  background-color: #00848d; }

.ce.ce--vd_quotation.ce--colorized_background__green .icon svg path {
  stroke: #fff; }

.ce.ce--vd_quotation.ce--colorized_background__green .ce__title {
  color: #fff; }

.ce.ce--vd_quotation.ce--colorized_background__green .ce__content {
  color: #fff; }
  .ce.ce--vd_quotation.ce--colorized_background__green .ce__content .divider {
    background-color: #fff; }

.ce.ce--vd_quotation.ce--colorized_background__light_green .vd-wrapper {
  background-color: #D9EDEE; }

.ce.ce--vd_quotation.ce--colorized_background__light_green .icon svg path {
  stroke: #00848d; }

.ce.ce--vd_quotation.ce--colorized_background__light_green .ce__title {
  color: #00848d; }

.ce.ce--vd_quotation.ce--colorized_background__light_green .ce__content {
  color: #000; }
  .ce.ce--vd_quotation.ce--colorized_background__light_green .ce__content .divider {
    background-color: #000; }

.ce.ce--vd_quotation.ce--colorized_background__red .vd-wrapper {
  background-color: #ea534e; }

.ce.ce--vd_quotation.ce--colorized_background__red .icon svg path {
  stroke: #fff; }

.ce.ce--vd_quotation.ce--colorized_background__red .ce__title {
  color: #fff; }

.ce.ce--vd_quotation.ce--colorized_background__red .ce__content {
  color: #fff; }
  .ce.ce--vd_quotation.ce--colorized_background__red .ce__content .divider {
    background-color: #fff; }

.ce.ce--vd_quotation.ce--colorized_background__light_red .vd-wrapper {
  background-color: #FCE5E5; }

.ce.ce--vd_quotation.ce--colorized_background__light_red .icon svg path {
  stroke: #00848d; }

.ce.ce--vd_quotation.ce--colorized_background__light_red .ce__title {
  color: #00848d; }

.ce.ce--vd_quotation.ce--colorized_background__light_red .ce__content {
  color: #000; }
  .ce.ce--vd_quotation.ce--colorized_background__light_red .ce__content .divider {
    background-color: #000; }

.ce.ce--vd_quotation .vd-wrapper {
  max-width: 605px;
  padding: 1.875rem 1.25rem; }

.ce.ce--vd_quotation .icon {
  width: 37px;
  height: auto; }

.ce.ce--vd_quotation .ce__title h1,
.ce.ce--vd_quotation .ce__title h2,
.ce.ce--vd_quotation .ce__title h3,
.ce.ce--vd_quotation .ce__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_quotation .ce__title legend,
.ce.ce--vd_quotation .ce__title h4 {
  font-size: 25px;
  font-size: 1.5625rem; }

.ce.ce--vd_quotation .ce__content blockquote {
  margin: 0; }
  .ce.ce--vd_quotation .ce__content blockquote > p {
    font-size: 30px;
    font-size: 1.875rem;
    margin: 1.25rem 0; }
    .ce.ce--vd_quotation .ce__content blockquote > p:before {
      content: "„"; }
    .ce.ce--vd_quotation .ce__content blockquote > p:after {
      content: "“"; }

.ce.ce--vd_quotation .ce__content .divider {
  width: 60%;
  height: 2px; }

.ce.ce--vd_quotation .ce__content .author {
  margin-top: 1.25rem; }
  .ce.ce--vd_quotation .ce__content .author__name, .ce.ce--vd_quotation .ce__content .author__title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.3; }
  .ce.ce--vd_quotation .ce__content .author__name {
    font-weight: 700; }

@media only screen and (min-width: 768px) {
  .ce.ce--vd_quotation .vd-wrapper {
    padding-left: 1.875rem;
    padding-right: 1.875rem; }
  .ce.ce--vd_quotation .ce__title h1,
  .ce.ce--vd_quotation .ce__title h2,
  .ce.ce--vd_quotation .ce__title h3,
  .ce.ce--vd_quotation .ce__title .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_quotation .ce__title legend,
  .ce.ce--vd_quotation .ce__title h4 {
    font-size: 33px;
    font-size: 2.0625rem; } }

.ce--vd_pages_teaser .ce__title {
  text-align: center; }
  .ce--vd_pages_teaser .ce__title > * {
    font-family: Hind, "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color: #000;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700; }

.ce--vd_pages_teaser .row > div {
  margin-bottom: 20px; }

@media only screen and (max-width: 991px) {
  .ce--vd_pages_teaser .row .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; } }

.ce--vd_pages_teaser .vd-teaser__wrapper {
  height: 100%; }

.ce--vd_pages_teaser .vd-teaser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5rem 2.5rem;
  height: 100%; }
  .ce--vd_pages_teaser .vd-teaser .vd-image {
    text-align: center; }
    .ce--vd_pages_teaser .vd-teaser .vd-image > * {
      max-width: 130px; }
  .ce--vd_pages_teaser .vd-teaser .vd-teaser__content {
    text-align: center; }
    .ce--vd_pages_teaser .vd-teaser .vd-teaser__content .subtitle {
      font-family: Hind, "Lucida Sans Unicode", "Lucida Grande", sans-serif;
      color: #000;
      text-align: center;
      display: inline-block;
      font-size: 16px;
      font-size: 1rem;
      text-transform: uppercase;
      font-weight: 700;
      margin-top: 2.5rem; }
    .ce--vd_pages_teaser .vd-teaser .vd-teaser__content h2, .ce--vd_pages_teaser .vd-teaser .vd-teaser__content h3, .ce--vd_pages_teaser .vd-teaser .vd-teaser__content .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce--vd_pages_teaser .vd-teaser .vd-teaser__content legend, .ce--vd_pages_teaser .vd-teaser .vd-teaser__content h4 {
      font-size: 30px;
      font-size: 1.875rem; }
  .ce--vd_pages_teaser .vd-teaser .header > * {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 38px;
    margin-bottom: 0px; }
  .ce--vd_pages_teaser .vd-teaser .readmore {
    display: none; }

.ce--vd_pages_teaser.version--minimal.ce--color-sheme {
  padding-bottom: 5rem;
  padding-top: 5rem; }

.ce--vd_pages_teaser.version--minimal.ce--bg-grey {
  background-color: #F7F7F7; }
  .ce--vd_pages_teaser.version--minimal.ce--bg-grey .vd-teaser {
    background-color: #fff; }

.ce--vd_pages_teaser.version--minimal .vd-teaser__title {
  text-align: center; }
  .ce--vd_pages_teaser.version--minimal .vd-teaser__title .subtitle {
    font-family: Hind, "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    color: #000;
    display: inline-block;
    font-size: 16px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700; }
  .ce--vd_pages_teaser.version--minimal .vd-teaser__title h2, .ce--vd_pages_teaser.version--minimal .vd-teaser__title h3, .ce--vd_pages_teaser.version--minimal .vd-teaser__title .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce--vd_pages_teaser.version--minimal .vd-teaser__title legend, .ce--vd_pages_teaser.version--minimal .vd-teaser__title h4 {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 38px; }

.ce--vd_pages_teaser.version--minimal .vd-teaser__content .ce__bodytext > * {
  color: #000;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem; }

.ce--vd_pages_teaser.version--minimal .vd-teaser__cta {
  text-align: center; }
  .ce--vd_pages_teaser.version--minimal .vd-teaser__cta .vd-button--readmore {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.9px;
    color: #015D7D;
    border: none;
    background-color: transparent;
    background-position: calc(100% - 30px) 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23015D7D'/%3E%3C/svg%3E"); }

.ce--vd_pages_teaser.version--quick-links .ce__title {
  margin-bottom: 0.9375rem; }

.ce--vd_pages_teaser.version--quick-links .vd-teaser {
  background-color: #F7F7F7;
  padding: 1.5rem 1.5rem; }

.ce.ce--vd_video .vd-video {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-top: 56.25%; }
  .ce.ce--vd_video .vd-video:before {
    content: "";
    display: block; }
  .ce.ce--vd_video .vd-video .vd-video__container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-position: center center;
    overflow: hidden; }
  .ce.ce--vd_video .vd-video video {
    width: 100%;
    height: 100%; }

.ce.ce--vd_video .ce__content--top {
  padding-bottom: 24px; }

.ce.ce--vd_video .ce__content--bottom {
  padding-top: 24px; }

.ce.ce--form_formframework {
  padding-top: 5rem; }
  .ce.ce--form_formframework .ce__title {
    padding: 1.875rem;
    padding-left: 0rem;
    padding-right: 0rem;
    /*
        &:before {
            content: "";
            display: block;
            width: 40px;
            height: 55px;
            background-image: svg-inline('<svg viewBox="0 0 65 85" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="a"><path d="m0 0h65v85h-65z"/></clipPath><g clip-path="url(#a)"><g fill="#00848d"><path d="m14.83 30.81a2.92 2.92 0 1 1 0 5.82 2.92 2.92 0 1 1 0-5.82"/><path d="m14.83 45.51a2.92 2.92 0 1 1 0 5.82 2.92 2.92 0 1 1 0-5.82"/><path d="m14.83 60.35a2.92 2.92 0 1 1 0 5.82 2.92 2.92 0 1 1 0-5.82"/></g><path d="m3 82v-79h41.18s17.66 16.28 17.82 16.29 0 62.71 0 62.71h-37.13" fill="none" stroke="#00848d" stroke-linecap="round" stroke-linejoin="round" stroke-width="6"/></g><g fill="none" stroke="#00848d" stroke-linecap="round" stroke-linejoin="round" stroke-width="6"><path d="m25.02 33.51h19.7"/><path d="m25.02 48.46h19.7"/><path d="m25.02 63.41h19.7"/></g><g clip-path="url(#a)"><path d="m43.84 4v14.98h16.75" fill="none" stroke="#00848d" stroke-linecap="round" stroke-linejoin="round" stroke-width="6"/></g></svg>');
            background-repeat: no-repeat;
            background-size: 35px;
        }
*/ }
    .ce.ce--form_formframework .ce__title h1,
    .ce.ce--form_formframework .ce__title h2,
    .ce.ce--form_formframework .ce__title h3,
    .ce.ce--form_formframework .ce__title .ce.ce--vd_job_form fieldset legend,
    .ce.ce--vd_job_form fieldset .ce.ce--form_formframework .ce__title legend,
    .ce.ce--form_formframework .ce__title h4 {
      margin: 0; }
  .ce.ce--form_formframework form {
    background: #FAFAFA;
    padding: 0.9375rem; }
    @media only screen and (min-width: 768px) {
      .ce.ce--form_formframework form {
        padding: 1.875rem; } }
  .ce.ce--form_formframework fieldset {
    border: none;
    padding: 0;
    margin: 0; }
    .ce.ce--form_formframework fieldset legend {
      display: none; }
  .ce.ce--form_formframework .field,
  .ce.ce--form_formframework .event-registration-row,
  .ce.ce--form_formframework .form-group {
    position: relative;
    max-width: 780px;
    margin-bottom: 2.5rem; }
    .ce.ce--form_formframework .field .input:not(.checkbox),
    .ce.ce--form_formframework .field .checkboxes-container,
    .ce.ce--form_formframework .event-registration-row .input:not(.checkbox),
    .ce.ce--form_formframework .event-registration-row .checkboxes-container,
    .ce.ce--form_formframework .form-group .input:not(.checkbox),
    .ce.ce--form_formframework .form-group .checkboxes-container {
      position: relative;
      border-bottom: 2px solid #00848d;
      margin-bottom: 0.3125rem; }
    .ce.ce--form_formframework .field--is-intro,
    .ce.ce--form_formframework .event-registration-row--is-intro,
    .ce.ce--form_formframework .form-group--is-intro {
      margin-bottom: 0; }
    .ce.ce--form_formframework .field .control-error,
    .ce.ce--form_formframework .event-registration-row .control-error,
    .ce.ce--form_formframework .form-group .control-error {
      color: var(--c-error);
      font-size: 14px;
      font-size: 0.875rem;
      display: inline-block;
      padding-top: 5px; }
    .ce.ce--form_formframework .field.has-error .input,
    .ce.ce--form_formframework .field.has-error .checkboxes-container,
    .ce.ce--form_formframework .event-registration-row.has-error .input,
    .ce.ce--form_formframework .event-registration-row.has-error .checkboxes-container,
    .ce.ce--form_formframework .form-group.has-error .input,
    .ce.ce--form_formframework .form-group.has-error .checkboxes-container {
      border-bottom-color: var(--c-error); }
    .ce.ce--form_formframework .field.has-error .checkmark,
    .ce.ce--form_formframework .event-registration-row.has-error .checkmark,
    .ce.ce--form_formframework .form-group.has-error .checkmark {
      border-color: var(--c-error); }
    .ce.ce--form_formframework .field.has-error .control-label,
    .ce.ce--form_formframework .event-registration-row.has-error .control-label,
    .ce.ce--form_formframework .form-group.has-error .control-label {
      color: var(--c-error); }
    .ce.ce--form_formframework .field.has-error .control-checkbox span,
    .ce.ce--form_formframework .field.has-error .form-check-label span,
    .ce.ce--form_formframework .event-registration-row.has-error .control-checkbox span,
    .ce.ce--form_formframework .event-registration-row.has-error .form-check-label span,
    .ce.ce--form_formframework .form-group.has-error .control-checkbox span,
    .ce.ce--form_formframework .form-group.has-error .form-check-label span {
      color: var(--c-error); }
    .ce.ce--form_formframework .field .help-block.error,
    .ce.ce--form_formframework .event-registration-row .help-block.error,
    .ce.ce--form_formframework .form-group .help-block.error {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      color: #fff;
      background-color: var(--c-error);
      font-size: 22px;
      font-size: 1.375rem;
      max-width: 780px;
      padding: 0.625rem 1.25rem;
      margin-top: 0.625rem; }
      .ce.ce--form_formframework .field .help-block.error:before,
      .ce.ce--form_formframework .event-registration-row .help-block.error:before,
      .ce.ce--form_formframework .form-group .help-block.error:before {
        content: "";
        display: inline-block;
        background-size: 20px;
        width: 20px;
        height: 20px;
        margin-right: 20px;
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2036%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%3E%3Cpath%20d%3D%22m3.2%203.2%2029.08%2029.08%22%2F%3E%3Cpath%20d%3D%22m32.28%203.2-29.08%2029.08%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat; }
    .ce.ce--form_formframework .field.date-field,
    .ce.ce--form_formframework .event-registration-row.date-field,
    .ce.ce--form_formframework .form-group.date-field {
      max-width: 380px; }
    .ce.ce--form_formframework .field.radiobutton-field > .input,
    .ce.ce--form_formframework .event-registration-row.radiobutton-field > .input,
    .ce.ce--form_formframework .form-group.radiobutton-field > .input {
      border: none; }
    .ce.ce--form_formframework .field.checkbox-field,
    .ce.ce--form_formframework .event-registration-row.checkbox-field,
    .ce.ce--form_formframework .form-group.checkbox-field {
      border: none; }
  .ce.ce--form_formframework label,
  .ce.ce--form_formframework .control-label {
    font-size: 14px;
    font-size: 0.875rem;
    color: #00848d; }
    .ce.ce--form_formframework label--top,
    .ce.ce--form_formframework .control-label--top {
      margin-bottom: 0.9375rem; }
  .ce.ce--form_formframework input[type="text"],
  .ce.ce--form_formframework input[type="email"],
  .ce.ce--form_formframework input[type="tel"],
  .ce.ce--form_formframework input[type="url"],
  .ce.ce--form_formframework textarea,
  .ce.ce--form_formframework select {
    width: 100%;
    height: 60px;
    border: 1px solid transparent;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 0 0 1.25rem;
    margin-bottom: 0.3125rem;
    background-color: transparent;
    -webkit-transition: background-color 350ms ease-in-out;
    transition: background-color 350ms ease-in-out; }
    .ce.ce--form_formframework input[type="text"]::-webkit-input-placeholder, .ce.ce--form_formframework input[type="email"]::-webkit-input-placeholder, .ce.ce--form_formframework input[type="tel"]::-webkit-input-placeholder, .ce.ce--form_formframework input[type="url"]::-webkit-input-placeholder, .ce.ce--form_formframework textarea::-webkit-input-placeholder, .ce.ce--form_formframework select::-webkit-input-placeholder {
      color: #737373; }
    .ce.ce--form_formframework input[type="text"]::-moz-placeholder, .ce.ce--form_formframework input[type="email"]::-moz-placeholder, .ce.ce--form_formframework input[type="tel"]::-moz-placeholder, .ce.ce--form_formframework input[type="url"]::-moz-placeholder, .ce.ce--form_formframework textarea::-moz-placeholder, .ce.ce--form_formframework select::-moz-placeholder {
      color: #737373; }
    .ce.ce--form_formframework input[type="text"]:-ms-input-placeholder, .ce.ce--form_formframework input[type="email"]:-ms-input-placeholder, .ce.ce--form_formframework input[type="tel"]:-ms-input-placeholder, .ce.ce--form_formframework input[type="url"]:-ms-input-placeholder, .ce.ce--form_formframework textarea:-ms-input-placeholder, .ce.ce--form_formframework select:-ms-input-placeholder {
      color: #737373; }
    .ce.ce--form_formframework input[type="text"]::-ms-input-placeholder, .ce.ce--form_formframework input[type="email"]::-ms-input-placeholder, .ce.ce--form_formframework input[type="tel"]::-ms-input-placeholder, .ce.ce--form_formframework input[type="url"]::-ms-input-placeholder, .ce.ce--form_formframework textarea::-ms-input-placeholder, .ce.ce--form_formframework select::-ms-input-placeholder {
      color: #737373; }
    .ce.ce--form_formframework input[type="text"]::placeholder,
    .ce.ce--form_formframework input[type="email"]::placeholder,
    .ce.ce--form_formframework input[type="tel"]::placeholder,
    .ce.ce--form_formframework input[type="url"]::placeholder,
    .ce.ce--form_formframework textarea::placeholder,
    .ce.ce--form_formframework select::placeholder {
      color: #737373; }
    .ce.ce--form_formframework input[type="text"]:not(select):focus,
    .ce.ce--form_formframework input[type="email"]:not(select):focus,
    .ce.ce--form_formframework input[type="tel"]:not(select):focus,
    .ce.ce--form_formframework input[type="url"]:not(select):focus,
    .ce.ce--form_formframework textarea:not(select):focus,
    .ce.ce--form_formframework select:not(select):focus {
      background-color: #D9EDEE;
      border: 1px solid #00848d;
      -webkit-transition: background-color 350ms ease-in-out;
      transition: background-color 350ms ease-in-out; }
    .ce.ce--form_formframework input[type="text"].focus-white:not(select):focus,
    .ce.ce--form_formframework input[type="email"].focus-white:not(select):focus,
    .ce.ce--form_formframework input[type="tel"].focus-white:not(select):focus,
    .ce.ce--form_formframework input[type="url"].focus-white:not(select):focus,
    .ce.ce--form_formframework textarea.focus-white:not(select):focus,
    .ce.ce--form_formframework select.focus-white:not(select):focus {
      background-color: #fff;
      border: none;
      -webkit-transition: background-color 350ms ease-in-out;
      transition: background-color 350ms ease-in-out; }
  .ce.ce--form_formframework textarea {
    height: 150px;
    padding: 1.25rem;
    border: 1px solid #9D9D9C;
    background-color: transparent; }
    .ce.ce--form_formframework textarea:focus {
      border: 1px solid #00848d; }
  .ce.ce--form_formframework .radio-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #00848d !important;
    padding-bottom: 0.3125rem !important; }
    .ce.ce--form_formframework .radio-group legend {
      display: block;
      position: absolute;
      bottom: -1.25rem;
      left: 0;
      font-size: 14px;
      font-size: 0.875rem;
      color: #00848d; }
  .ce.ce--form_formframework .radio-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 1.25rem;
    height: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .ce.ce--form_formframework .radio-wrapper label {
      font-size: 18px;
      font-size: 1.125rem;
      position: relative;
      color: #000000;
      bottom: auto;
      left: auto;
      width: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin: 0;
      cursor: pointer; }
    .ce.ce--form_formframework .radio-wrapper [type="radio"]:checked,
    .ce.ce--form_formframework .radio-wrapper [type="radio"]:not(:checked) {
      position: absolute;
      left: -9999px; }
    .ce.ce--form_formframework .radio-wrapper [type="radio"]:checked + label,
    .ce.ce--form_formframework .radio-wrapper [type="radio"]:not(:checked) + label {
      position: relative;
      padding-left: 28px;
      cursor: pointer;
      line-height: 20px;
      display: inline-block;
      color: #000; }
    .ce.ce--form_formframework .radio-wrapper [type="radio"]:checked + label:before,
    .ce.ce--form_formframework .radio-wrapper [type="radio"]:not(:checked) + label:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 18px;
      height: 18px;
      border-radius: 100%;
      background: #D9EDEE; }
    .ce.ce--form_formframework .radio-wrapper [type="radio"]:checked + label:after,
    .ce.ce--form_formframework .radio-wrapper [type="radio"]:not(:checked) + label:after {
      content: '';
      width: 10px;
      height: 10px;
      background: #00848d;
      position: absolute;
      top: 4px;
      left: 4px;
      border-radius: 100%;
      -webkit-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    .ce.ce--form_formframework .radio-wrapper [type="radio"]:not(:checked) + label:after {
      opacity: 0;
      -webkit-transform: scale(0);
              transform: scale(0); }
    .ce.ce--form_formframework .radio-wrapper [type="radio"]:checked + label:after {
      opacity: 1;
      -webkit-transform: scale(1);
              transform: scale(1); }
  .ce.ce--form_formframework .checkboxes-container:not(.checkboxes-container--fullsize) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .ce.ce--form_formframework .checkboxes-container:not(.checkboxes-container--fullsize) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
    .ce.ce--form_formframework .checkboxes-container:not(.checkboxes-container--fullsize) > * {
      margin-right: 20px;
      margin-bottom: 0.625rem;
      /*
            @media only screen and (min-width: 768px) {
                width: 30%;
                min-width: 210px;
            }
*/ }
  .ce.ce--form_formframework .checkboxes-container:not(.checkboxes-container--fullsize) .checkbox-wrapper {
    display: inline-block; }
  .ce.ce--form_formframework .checkboxes-container.checkboxes-container--fullsize .control-checkbox {
    margin-bottom: 15px; }
  .ce.ce--form_formframework .checkbox-wrapper {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    font-size: 1.125rem;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    line-height: 1.4; }
    .ce.ce--form_formframework .checkbox-wrapper [type="checkbox"] {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0; }
      .ce.ce--form_formframework .checkbox-wrapper [type="checkbox"]:checked ~ .checkmark:after {
        display: block; }
    .ce.ce--form_formframework .checkbox-wrapper .checkmark:after {
      content: "";
      position: absolute;
      display: none; }
    .ce.ce--form_formframework .checkbox-wrapper .checkmark {
      position: absolute;
      top: 4px;
      left: 0;
      height: 20px;
      width: 20px;
      background-color: #eee;
      border: 1px solid #00848d; }
      .ce.ce--form_formframework .checkbox-wrapper .checkmark:after {
        left: -9px;
        top: -6px;
        -webkit-transform: rotate(45deg) scale(0.5);
                transform: rotate(45deg) scale(0.5);
        height: 29px;
        width: 15px;
        margin-left: 60%;
        border-bottom: 8px solid #00848d;
        border-right: 8px solid #00848d; }
  .ce.ce--form_formframework .select-wrapper {
    position: relative; }
    .ce.ce--form_formframework .select-wrapper.disabled {
      opacity: 0.4; }
    .ce.ce--form_formframework .select-wrapper select {
      -moz-appearance: none;
           appearance: none;
      -webkit-appearance: none;
      border-radius: 0;
      position: relative;
      z-index: 1;
      cursor: pointer;
      border: 1px solid #00848d;
      font-weight: 600;
      line-height: 1.2;
      color: #000000; }
      .ce.ce--form_formframework .select-wrapper select:disabled {
        cursor: auto;
        opacity: 0.6; }
      .ce.ce--form_formframework .select-wrapper select option {
        font-size: 18px;
        font-size: 1.125rem;
        background-color: initial;
        font-weight: 400; }
    .ce.ce--form_formframework .select-wrapper select::-ms-expand {
      display: none; }
    .ce.ce--form_formframework .select-wrapper:after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 0 4px 4px 0;
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2037%2022%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m32.88%203.2-14.7%2015.5-14.98-15.5%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E");
      background-repeat: no-repeat;
      background-size: 50%;
      background-position: center;
      z-index: 0; }
    .ce.ce--form_formframework .select-wrapper.multiple select {
      height: 150px;
      padding: 0 0.9375rem;
      background-color: #fff; }
    .ce.ce--form_formframework .select-wrapper.multiple:after {
      content: none;
      background-image: none; }
  .ce.ce--form_formframework label {
    position: relative;
    display: block; }
    .ce.ce--form_formframework label.form-error {
      padding-top: 5px;
      color: var(--c-error);
      font-weight: bold; }
  .ce.ce--form_formframework .form-group.textarea-field label .textarea-counter {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1; }
  .ce.ce--form_formframework form {
    background-color: transparent;
    width: 100%;
    padding-right: 0px !important;
    padding-left: 0.9375rem !important; }
    .ce.ce--form_formframework form fieldset {
      border: none; }
    .ce.ce--form_formframework form .actions {
      padding-top: 2.5rem; }
  .ce.ce--form_formframework input {
    margin-bottom: 0px !important; }
  .ce.ce--form_formframework .field .input:not(.checkbox),
  .ce.ce--form_formframework .field .checkboxes-container,
  .ce.ce--form_formframework .event-registration-row .input:not(.checkbox),
  .ce.ce--form_formframework .event-registration-row .checkboxes-container,
  .ce.ce--form_formframework .form-group .input:not(.checkbox),
  .ce.ce--form_formframework .form-group .checkboxes-container {
    border: 1px solid #015D7D !important; }
  .ce.ce--form_formframework label,
  .ce.ce--form_formframework .control-label {
    font-size: 18px;
    font-size: 1.125rem;
    color: #000 !important; }
  .ce.ce--form_formframework .control-label {
    font-weight: 700; }
  .ce.ce--form_formframework .checkbox-wrapper .checkmark {
    background-color: #fff !important; }
  .ce.ce--form_formframework .form-group.radiobutton-field .input {
    border: none !important; }
  .ce.ce--form_formframework .radio-group {
    border-bottom: none !important; }
  .ce.ce--form_formframework .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .ce.ce--form_formframework .form-group .input {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
    .ce.ce--form_formframework .form-group .control-label {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      margin-bottom: 10px; }
    .ce.ce--form_formframework .form-group.radiobutton-field {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 0px; }
      .ce.ce--form_formframework .form-group.radiobutton-field .input {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
      .ce.ce--form_formframework .form-group.radiobutton-field .inputs-list {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; }
      .ce.ce--form_formframework .form-group.radiobutton-field .control-label {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; }
  .ce.ce--form_formframework .radio-wrapper [type="radio"]:checked + label::before,
  .ce.ce--form_formframework .radio-wrapper [type="radio"]:not(:checked) + label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    background: #fff;
    border: 1px solid #015D7D; }
  .ce.ce--form_formframework .radio-wrapper [type="radio"]:checked + label::after,
  .ce.ce--form_formframework .radio-wrapper [type="radio"]:not(:checked) + label::after {
    background: #015D7D !important; }
  .ce.ce--form_formframework .select-wrapper select,
  .ce.ce--form_formframework textarea {
    border: none !important;
    margin-bottom: 0px !important; }
  .ce.ce--form_formframework .select-wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 0 4px 4px 0;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2037%2022%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m32.88%203.2-14.7%2015.5-14.98-15.5%22%20fill%3D%22none%22%20stroke%3D%22%23015D7D%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    z-index: 0; }
  .ce.ce--form_formframework textarea {
    margin-bottom: 0 !important;
    resize: none !important; }
  .ce.ce--form_formframework .vd-button, .ce.ce--form_formframework #cookie_approval .button, #cookie_approval .ce.ce--form_formframework .button, .ce.ce--form_formframework .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .ce.ce--form_formframework input[type="submit"] {
    border-radius: 0px;
    margin: 0px;
    line-height: 21px;
    background-color: #015D7D !important; }
  .ce.ce--form_formframework .vd-message {
    margin-top: 2.5rem;
    background-color: transparent !important;
    padding: 0 !important; }
    .ce.ce--form_formframework .vd-message.vd-message--ok * {
      color: #000 !important; }
  .ce.ce--form_formframework .vd-filter-button--abort {
    display: none; }
  .ce.ce--form_formframework .field.date-field,
  .ce.ce--form_formframework .event-registration-row.date-field,
  .ce.ce--form_formframework .form-group.date-field {
    max-width: 780px !important; }
  .ce.ce--form_formframework .vd-button--text:hover, .ce.ce--form_formframework #cookie_approval .button:hover, #cookie_approval .ce.ce--form_formframework .button:hover, .ce.ce--form_formframework .tx-sf-event-mgt .registration input:hover[type="submit"], .tx-sf-event-mgt .registration .ce.ce--form_formframework input:hover[type="submit"],
  .ce.ce--form_formframework #cookie_approval .button:hover,
  .ce.ce--form_formframework .tx-sf-event-mgt .registration input:hover[type="submit"],
  .ce.ce--form_formframework + .vd-button--text:focus,
  #cookie_approval .ce.ce--form_formframework + .button:focus,
  .tx-sf-event-mgt .registration .ce.ce--form_formframework + input:focus[type="submit"],
  .ce.ce--form_formframework #cookie_approval .button:focus,
  .ce.ce--form_formframework .tx-sf-event-mgt .registration input:focus[type="submit"] {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    background-color: #D9EDEE !important;
    color: #015D7D !important; }
  .ce.ce--form_formframework .event-registration form {
    background-color: #F7F7F7;
    padding: 0.9375rem !important;
    margin-bottom: 2.5rem; }
    .ce.ce--form_formframework .event-registration form input {
      background-color: #fff !important; }
    .ce.ce--form_formframework .event-registration form .submit {
      border: 1px solid #015D7D !important;
      color: #fff !important;
      background-color: #015D7D !important;
      font-size: 18px;
      font-size: 1.125rem;
      font-weight: 700;
      line-height: 29px;
      padding: 0.625rem 1.25rem;
      letter-spacing: 0.9px;
      height: 50px;
      cursor: pointer;
      -webkit-transition: all 230ms ease-in-out;
      transition: all 230ms ease-in-out; }
      .ce.ce--form_formframework .event-registration form .submit:hover {
        color: #015D7D !important;
        background-color: #D9EDEE !important;
        -webkit-transition: all 230ms ease-in-out;
        transition: all 230ms ease-in-out; }
    .ce.ce--form_formframework .event-registration form .event-registration-row {
      margin-bottom: 1.25rem !important; }
  .ce.ce--form_formframework .event-registration .back-links {
    margin-bottom: 2.5rem; }
    .ce.ce--form_formframework .event-registration .back-links .vd-button--text, .ce.ce--form_formframework .event-registration .back-links #cookie_approval .button, #cookie_approval .ce.ce--form_formframework .event-registration .back-links .button, .ce.ce--form_formframework .event-registration .back-links .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .ce.ce--form_formframework .event-registration .back-links input[type="submit"] {
      background-color: #fff !important;
      line-height: 29px;
      /*
            border-color: $blue-dark !important;
            color: #fff !important;
            background-color: $blue-dark !important;
*/ }
      .ce.ce--form_formframework .event-registration .back-links .vd-button--text:hover, .ce.ce--form_formframework .event-registration .back-links #cookie_approval .button:hover, #cookie_approval .ce.ce--form_formframework .event-registration .back-links .button:hover, .ce.ce--form_formframework .event-registration .back-links .tx-sf-event-mgt .registration input:hover[type="submit"], .tx-sf-event-mgt .registration .ce.ce--form_formframework .event-registration .back-links input:hover[type="submit"], .ce.ce--form_formframework .event-registration .back-links .vd-button--text:focus, .ce.ce--form_formframework .event-registration .back-links #cookie_approval .button:focus, #cookie_approval .ce.ce--form_formframework .event-registration .back-links .button:focus, .ce.ce--form_formframework .event-registration .back-links .tx-sf-event-mgt .registration input:focus[type="submit"], .tx-sf-event-mgt .registration .ce.ce--form_formframework .event-registration .back-links input:focus[type="submit"] {
        -webkit-box-shadow: none !important;
                box-shadow: none !important;
        background-color: #D9EDEE !important;
        color: #015D7D !important; }
    .ce.ce--form_formframework .event-registration .back-links a:not(:last-child) {
      margin-right: 0.9375rem; }

.grid-container-2-cols--75-25 form.vd-filter--news {
  /*
        @media only screen and (min-width: 992px) {
            margin-right: calc((100% / 12) * -9);
        }
*/ }

.flatpickr-calendar .flatpickr-month {
  background: #015D7D !important; }

.flatpickr-calendar .flatpickr-weekdays {
  background: #015D7D !important; }

.flatpickr-input {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2065%2085%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23015D7D%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%3E%3Cpath%20d%3D%22m3.02%2082v-63.23h58.98v63.23h-37.09%22%2F%3E%3Cpath%20d%3D%22m18.4%202.96v13.84%22%2F%3E%3Cpath%20d%3D%22m46.16%202.96v13.84%22%2F%3E%3Cpath%20d%3D%22m45.7%2044.91v.44%22%2F%3E%3Cpath%20d%3D%22m45.7%2056.38v.44%22%2F%3E%3Cpath%20d%3D%22m45.7%2067.85v.44%22%2F%3E%3Cpath%20d%3D%22m31.66%2044.91v.44%22%2F%3E%3Cpath%20d%3D%22m31.66%2056.38v.44%22%2F%3E%3Cpath%20d%3D%22m31.66%2067.85v.44%22%2F%3E%3Cpath%20d%3D%22m17.63%2044.91v.44%22%2F%3E%3Cpath%20d%3D%22m17.63%2056.38v.44%22%2F%3E%3Cpath%20d%3D%22m17.63%2067.85v.44%22%2F%3E%3Cpath%20d%3D%22m4.33%2031.15h57%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

.grid-container.grid-container-2-cols--75-25 .ce--form_formframework {
  padding-top: 0px !important; }

.ce.ce--vd_info_box.ce--bg_green__front_bright .vd-wrapper {
  background-color: #00848d; }

.ce.ce--vd_info_box.ce--bg_green__front_bright .icon svg path {
  stroke: #fff; }

.ce.ce--vd_info_box.ce--bg_green__front_bright .icon svg > :nth-child(3) {
  fill: #fff; }

.ce.ce--vd_info_box.ce--bg_green__front_bright .ce__title h1,
.ce.ce--vd_info_box.ce--bg_green__front_bright .ce__title h2,
.ce.ce--vd_info_box.ce--bg_green__front_bright .ce__title h3,
.ce.ce--vd_info_box.ce--bg_green__front_bright .ce__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__title legend,
.ce.ce--vd_info_box.ce--bg_green__front_bright .ce__title h4 {
  color: #fff; }

.ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content {
  color: #fff; }
  .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content h1,
  .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content h2,
  .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content h3,
  .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content legend,
  .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content h4 {
    color: #fff; }
  .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content .link--dotted-arrow, .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content .vd-section--hero.version--extra-large .hero__front .textbox__wrapper a, .vd-section--hero.version--extra-large .hero__front .textbox__wrapper .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content .vd-section--hero.version--illustration .hero__front .textbox__wrapper a, .vd-section--hero.version--illustration .hero__front .textbox__wrapper .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content #cookie_approval .text a, #cookie_approval .text .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content .tx-sf-event-mgt .registration a, .tx-sf-event-mgt .registration .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content .ce--sfeventmgt_pieventdetail .event ul a, .ce--sfeventmgt_pieventdetail .event ul .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content .ce--sfeventmgt_pieventdetail .event a:not(.vd-button) , .ce--sfeventmgt_pieventdetail .event .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content a:not(.vd-button) , .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content .vd-form-wrapper.vd-form-wrapper--cleverreach form a, .vd-form-wrapper.vd-form-wrapper--cleverreach form .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content .ce.ce--vd_text .ce__bodytext p a, .ce.ce--vd_text .ce__bodytext p .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content .ce.ce--table .ce__bodytext p a, .ce.ce--table .ce__bodytext p .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content .ce.ce--vd_news_detail .lead a, .ce.ce--vd_news_detail .lead .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content .ce.ce--vd_news_detail .news-text-wrap p a, .ce.ce--vd_news_detail .news-text-wrap p .ce.ce--vd_info_box.ce--bg_green__front_bright .ce__content a {
    color: #fff;
    border-color: #fff; }

.ce.ce--vd_info_box.ce--bg_light_green__front_dark .vd-wrapper {
  background-color: #D9EDEE; }

.ce.ce--vd_info_box.ce--bg_light_green__front_dark .icon svg path {
  stroke: #00848d; }

.ce.ce--vd_info_box.ce--bg_light_green__front_dark .icon svg > :nth-child(3) {
  fill: #00848d; }

.ce.ce--vd_info_box.ce--bg_light_green__front_dark .ce__title h1,
.ce.ce--vd_info_box.ce--bg_light_green__front_dark .ce__title h2,
.ce.ce--vd_info_box.ce--bg_light_green__front_dark .ce__title h3,
.ce.ce--vd_info_box.ce--bg_light_green__front_dark .ce__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_info_box.ce--bg_light_green__front_dark .ce__title legend,
.ce.ce--vd_info_box.ce--bg_light_green__front_dark .ce__title h4 {
  color: #00848d; }

.ce.ce--vd_info_box.ce--bg_light_green__front_dark .ce__content {
  color: #000; }
  .ce.ce--vd_info_box.ce--bg_light_green__front_dark .ce__content h1,
  .ce.ce--vd_info_box.ce--bg_light_green__front_dark .ce__content h2,
  .ce.ce--vd_info_box.ce--bg_light_green__front_dark .ce__content h3,
  .ce.ce--vd_info_box.ce--bg_light_green__front_dark .ce__content .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_info_box.ce--bg_light_green__front_dark .ce__content legend,
  .ce.ce--vd_info_box.ce--bg_light_green__front_dark .ce__content h4 {
    color: #000; }

.ce.ce--vd_info_box.ce--bg_red__front_bright .vd-wrapper {
  background-color: #ea534e; }

.ce.ce--vd_info_box.ce--bg_red__front_bright .icon svg path {
  stroke: #fff; }

.ce.ce--vd_info_box.ce--bg_red__front_bright .icon svg > :nth-child(3) {
  fill: #fff; }

.ce.ce--vd_info_box.ce--bg_red__front_bright .ce__title h1,
.ce.ce--vd_info_box.ce--bg_red__front_bright .ce__title h2,
.ce.ce--vd_info_box.ce--bg_red__front_bright .ce__title h3,
.ce.ce--vd_info_box.ce--bg_red__front_bright .ce__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__title legend,
.ce.ce--vd_info_box.ce--bg_red__front_bright .ce__title h4 {
  color: #fff; }

.ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content {
  color: #fff; }
  .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content h1,
  .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content h2,
  .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content h3,
  .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content legend,
  .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content h4 {
    color: #fff; }
  .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content .link--dotted-arrow, .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content .vd-section--hero.version--extra-large .hero__front .textbox__wrapper a, .vd-section--hero.version--extra-large .hero__front .textbox__wrapper .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content .vd-section--hero.version--illustration .hero__front .textbox__wrapper a, .vd-section--hero.version--illustration .hero__front .textbox__wrapper .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content #cookie_approval .text a, #cookie_approval .text .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content .tx-sf-event-mgt .registration a, .tx-sf-event-mgt .registration .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content .ce--sfeventmgt_pieventdetail .event ul a, .ce--sfeventmgt_pieventdetail .event ul .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content .ce--sfeventmgt_pieventdetail .event a:not(.vd-button) , .ce--sfeventmgt_pieventdetail .event .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content a:not(.vd-button) , .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content .vd-form-wrapper.vd-form-wrapper--cleverreach form a, .vd-form-wrapper.vd-form-wrapper--cleverreach form .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content .ce.ce--vd_text .ce__bodytext p a, .ce.ce--vd_text .ce__bodytext p .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content .ce.ce--table .ce__bodytext p a, .ce.ce--table .ce__bodytext p .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content .ce.ce--vd_news_detail .lead a, .ce.ce--vd_news_detail .lead .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content a, .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content .ce.ce--vd_news_detail .news-text-wrap p a, .ce.ce--vd_news_detail .news-text-wrap p .ce.ce--vd_info_box.ce--bg_red__front_bright .ce__content a {
    color: #fff;
    border-color: #fff; }

.ce.ce--vd_info_box.ce--bg_light_red__front_dark .vd-wrapper {
  background-color: #FCE5E5; }

.ce.ce--vd_info_box.ce--bg_light_red__front_dark .icon svg path {
  stroke: #00848d; }

.ce.ce--vd_info_box.ce--bg_light_red__front_dark .icon svg > :nth-child(3) {
  fill: #00848d; }

.ce.ce--vd_info_box.ce--bg_light_red__front_dark .ce__title h1,
.ce.ce--vd_info_box.ce--bg_light_red__front_dark .ce__title h2,
.ce.ce--vd_info_box.ce--bg_light_red__front_dark .ce__title h3,
.ce.ce--vd_info_box.ce--bg_light_red__front_dark .ce__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_info_box.ce--bg_light_red__front_dark .ce__title legend,
.ce.ce--vd_info_box.ce--bg_light_red__front_dark .ce__title h4 {
  color: #00848d; }

.ce.ce--vd_info_box.ce--bg_light_red__front_dark .ce__content {
  color: #000; }
  .ce.ce--vd_info_box.ce--bg_light_red__front_dark .ce__content h1,
  .ce.ce--vd_info_box.ce--bg_light_red__front_dark .ce__content h2,
  .ce.ce--vd_info_box.ce--bg_light_red__front_dark .ce__content h3,
  .ce.ce--vd_info_box.ce--bg_light_red__front_dark .ce__content .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_info_box.ce--bg_light_red__front_dark .ce__content legend,
  .ce.ce--vd_info_box.ce--bg_light_red__front_dark .ce__content h4 {
    color: #000; }

.ce.ce--vd_info_box .vd-wrapper {
  max-width: 605px;
  background-color: #D9EDEE;
  padding: 1.875rem 1.25rem; }
  @media only screen and (min-width: 768px) {
    .ce.ce--vd_info_box .vd-wrapper {
      padding: 1.875rem; } }

.ce.ce--vd_info_box .icon {
  width: 35px;
  height: auto; }

.ce.ce--vd_info_box .ce__title h1,
.ce.ce--vd_info_box .ce__title h2,
.ce.ce--vd_info_box .ce__title h3,
.ce.ce--vd_info_box .ce__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_info_box .ce__title legend,
.ce.ce--vd_info_box .ce__title h4 {
  color: #00848d;
  margin: 0.3125rem 0;
  font-size: 25px;
  font-size: 1.5625rem; }
  @media only screen and (min-width: 768px) {
    .ce.ce--vd_info_box .ce__title h1,
    .ce.ce--vd_info_box .ce__title h2,
    .ce.ce--vd_info_box .ce__title h3,
    .ce.ce--vd_info_box .ce__title .ce.ce--vd_job_form fieldset legend,
    .ce.ce--vd_job_form fieldset .ce.ce--vd_info_box .ce__title legend,
    .ce.ce--vd_info_box .ce__title h4 {
      font-size: 33px;
      font-size: 2.0625rem; } }

.ce.ce--vd_info_box .ce__content h1,
.ce.ce--vd_info_box .ce__content h2,
.ce.ce--vd_info_box .ce__content h3,
.ce.ce--vd_info_box .ce__content .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_info_box .ce__content legend,
.ce.ce--vd_info_box .ce__content h4 {
  margin-top: 0;
  margin-bottom: 1.5625rem;
  font-size: 25px;
  font-size: 1.5625rem; }
  @media only screen and (min-width: 768px) {
    .ce.ce--vd_info_box .ce__content h1,
    .ce.ce--vd_info_box .ce__content h2,
    .ce.ce--vd_info_box .ce__content h3,
    .ce.ce--vd_info_box .ce__content .ce.ce--vd_job_form fieldset legend,
    .ce.ce--vd_job_form fieldset .ce.ce--vd_info_box .ce__content legend,
    .ce.ce--vd_info_box .ce__content h4 {
      font-size: 33px;
      font-size: 2.0625rem; } }

.ce.ce--vd_info_box .ce__content p, .ce.ce--vd_info_box .ce__content ul, .ce.ce--vd_info_box .ce__content ol {
  font-size: 18px;
  font-size: 1.125rem; }
  .ce.ce--vd_info_box .ce__content p li, .ce.ce--vd_info_box .ce__content ul li, .ce.ce--vd_info_box .ce__content ol li {
    margin-bottom: 1.25rem; }

.event-detail__box,
.ce--vd_contact_card,
.ce--vd_department_card,
.ce--info_box {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px #00000029;
          box-shadow: 0px 0px 6px #00000029;
  position: relative;
  z-index: 3; }
  .event-detail__box .vd-wrapper,
  .event-detail__box .ce__wrapper,
  .ce--vd_contact_card .vd-wrapper,
  .ce--vd_contact_card .ce__wrapper,
  .ce--vd_department_card .vd-wrapper,
  .ce--vd_department_card .ce__wrapper,
  .ce--info_box .vd-wrapper,
  .ce--info_box .ce__wrapper {
    padding: 15px 0px 15px 20px;
    background-color: #fff; }
    @media only screen and (min-width: 992px) {
      .event-detail__box .vd-wrapper,
      .event-detail__box .ce__wrapper,
      .ce--vd_contact_card .vd-wrapper,
      .ce--vd_contact_card .ce__wrapper,
      .ce--vd_department_card .vd-wrapper,
      .ce--vd_department_card .ce__wrapper,
      .ce--info_box .vd-wrapper,
      .ce--info_box .ce__wrapper {
        padding: 30px 0px 30px 30px; } }
  .event-detail__box .ce__title h2,
  .event-detail__box .ce__title h3,
  .event-detail__box .ce__title .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .event-detail__box .ce__title legend,
  .event-detail__box .ce__title h4,
  .event-detail__box .ce__title h5,
  .ce--vd_contact_card .ce__title h2,
  .ce--vd_contact_card .ce__title h3,
  .ce--vd_contact_card .ce__title .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce--vd_contact_card .ce__title legend,
  .ce--vd_contact_card .ce__title h4,
  .ce--vd_contact_card .ce__title h5,
  .ce--vd_department_card .ce__title h2,
  .ce--vd_department_card .ce__title h3,
  .ce--vd_department_card .ce__title .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce--vd_department_card .ce__title legend,
  .ce--vd_department_card .ce__title h4,
  .ce--vd_department_card .ce__title h5,
  .ce--info_box .ce__title h2,
  .ce--info_box .ce__title h3,
  .ce--info_box .ce__title .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce--info_box .ce__title legend,
  .ce--info_box .ce__title h4,
  .ce--info_box .ce__title h5 {
    margin-top: 0px;
    color: #000;
    font-size: 22px;
    font-size: 1.375rem; }
  .event-detail__box .ce__content,
  .ce--vd_contact_card .ce__content,
  .ce--vd_department_card .ce__content,
  .ce--info_box .ce__content {
    background-color: #fff;
    padding-right: 110px;
    background-repeat: no-repeat;
    background-position: calc(100% - 30px) 10px; }
    @media only screen and (max-width: 991px) {
      .event-detail__box .ce__content,
      .ce--vd_contact_card .ce__content,
      .ce--vd_department_card .ce__content,
      .ce--info_box .ce__content {
        background-position: calc(100% - 10px) 10px;
        padding-right: 70px;
        background-size: 70px; } }
    .event-detail__box .ce__content p,
    .ce--vd_contact_card .ce__content p,
    .ce--vd_department_card .ce__content p,
    .ce--info_box .ce__content p {
      line-height: 30px; }
    .event-detail__box .ce__content .card *,
    .ce--vd_contact_card .ce__content .card *,
    .ce--vd_department_card .ce__content .card *,
    .ce--info_box .ce__content .card * {
      font-size: 18px;
      font-size: 1.125rem;
      line-height: 30px; }
  .event-detail__box:before,
  .ce--vd_contact_card:before,
  .ce--vd_department_card:before,
  .ce--info_box:before {
    content: '';
    display: inline-block;
    position: absolute;
    z-index: -1;
    height: calc(100% + 0px);
    width: 50%;
    right: -8px;
    bottom: -8.75px;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 166%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='476' height='392' viewBox='0 0 476 392'%3E%3Cg id='puenktchen' transform='translate(23131 14468)'%3E%3Cg id='Gruppe_4124' data-name='Gruppe 4124'%3E%3Ccircle id='Ellipse_152' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-2' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-2' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-2' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-2' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-2' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-2' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-2' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-2' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-2' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-2' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-3' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-3' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-3' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-3' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-3' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-3' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-3' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-3' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-3' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-3' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-4' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-4' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-4' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-4' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-4' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-4' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-4' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-4' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-4' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-4' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4128' data-name='Gruppe 4128' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-5' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-5' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-5' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-5' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-5' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-5' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-5' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-5' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-5' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-5' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-6' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-6' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-6' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-6' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-6' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-6' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-6' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-6' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-6' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-6' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-7' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-7' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-7' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-7' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-7' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-7' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-7' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-7' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-7' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-7' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-8' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-8' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-8' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-8' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-8' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-8' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-8' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-8' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-8' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-8' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4126' data-name='Gruppe 4126' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-9' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-9' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-9' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-9' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-9' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-9' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-9' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-9' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-9' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-9' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-10' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-10' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-10' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-10' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-10' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-10' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-10' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-10' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-10' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-10' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-11' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-11' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-11' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-11' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-11' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-11' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-11' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-11' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-11' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-11' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-12' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-12' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-12' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-12' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-12' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-12' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-12' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-12' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-12' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-12' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4129' data-name='Gruppe 4129' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-13' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-13' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-13' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-13' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-13' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-13' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-13' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-13' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-13' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-13' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-14' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-14' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-14' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-14' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-14' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-14' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-14' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-14' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-14' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-14' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-15' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-15' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-15' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-15' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-15' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-15' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-15' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-15' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-15' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-15' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-16' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-16' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-16' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-16' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-16' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-16' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-16' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-16' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-16' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-16' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4133' data-name='Gruppe 4133' transform='translate(-84)'%3E%3Ccircle id='Ellipse_152-17' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-17' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-17' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-17' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-17' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-17' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-17' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-17' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-17' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-17' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-18' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-18' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-18' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-18' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-18' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-18' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-18' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-18' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-18' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-18' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-19' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-19' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-19' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-19' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-19' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-19' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-19' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-19' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-19' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-19' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-20' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-20' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-20' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-20' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-20' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-20' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-20' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-20' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-20' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-20' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4134' data-name='Gruppe 4134' transform='translate(-96)'%3E%3Ccircle id='Ellipse_152-21' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-21' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-21' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-21' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-21' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-21' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-21' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-21' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-21' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-21' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-22' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-22' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-22' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-22' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-22' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-22' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-22' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-22' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-22' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-22' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-23' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-23' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-23' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-23' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-23' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-23' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-23' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-23' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-23' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-23' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-24' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-24' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-24' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-24' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-24' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-24' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-24' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-24' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-24' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-24' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4135' data-name='Gruppe 4135' transform='translate(-108)'%3E%3Ccircle id='Ellipse_152-25' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-25' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-25' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-25' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-25' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-25' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-25' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-25' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-25' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-25' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-26' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-26' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-26' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-26' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-26' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-26' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-26' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-26' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-26' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-26' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-27' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-27' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-27' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-27' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-27' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-27' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-27' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-27' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-27' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-27' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-28' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-28' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-28' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-28' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-28' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-28' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-28' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-28' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-28' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-28' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4136' data-name='Gruppe 4136' transform='translate(-120)'%3E%3Ccircle id='Ellipse_152-29' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-29' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-29' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-29' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-29' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-29' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-29' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-29' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-29' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-29' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-30' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-30' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-30' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-30' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-30' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-30' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-30' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-30' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-30' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-30' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-31' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-31' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-31' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-31' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-31' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-31' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-31' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-31' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-31' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-31' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-32' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-32' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-32' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-32' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-32' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-32' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-32' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-32' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-32' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-32' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4137' data-name='Gruppe 4137' transform='translate(-132)'%3E%3Ccircle id='Ellipse_152-33' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-33' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-33' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-33' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-33' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-33' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-33' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-33' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-33' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-33' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-34' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-34' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-34' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-34' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-34' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-34' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-34' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-34' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-34' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-34' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-35' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-35' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-35' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-35' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-35' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-35' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-35' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4138' data-name='Gruppe 4138' transform='translate(-144)'%3E%3Ccircle id='Ellipse_152-35' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-36' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-35' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-36' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-35' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-36' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-36' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-36' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-36' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-36' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-36' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-37' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-36' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-37' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-36' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-37' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-37' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-37' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-37' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-37' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-38' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-38' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-38' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-38' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-38' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-38' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-38' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4139' data-name='Gruppe 4139' transform='translate(-156)'%3E%3Ccircle id='Ellipse_152-37' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-39' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-37' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-39' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-37' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-39' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-39' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-39' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-39' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-39' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-38' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-40' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-38' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-40' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-38' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-40' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-40' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-40' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-40' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-40' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-41' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-41' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-41' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-41' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-41' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-41' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-41' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4140' data-name='Gruppe 4140' transform='translate(-168)'%3E%3Ccircle id='Ellipse_152-39' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-42' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-39' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-42' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-39' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-42' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-42' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-42' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-42' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-42' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-40' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-43' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-40' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-43' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-40' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-43' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-43' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-43' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-43' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-43' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-44' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-44' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-44' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-44' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-44' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-44' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-44' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4141' data-name='Gruppe 4141' transform='translate(-180)'%3E%3Ccircle id='Ellipse_152-41' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-45' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-41' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-45' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-41' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-45' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-45' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-45' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-45' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-45' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-42' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-46' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-42' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-46' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-42' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-46' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-46' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-46' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-46' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-46' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-47' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-47' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-47' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-47' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-47' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-47' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-47' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4142' data-name='Gruppe 4142' transform='translate(-192)'%3E%3Ccircle id='Ellipse_152-43' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-48' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-43' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-48' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-43' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-48' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-48' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-48' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-48' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-48' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-44' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-49' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-44' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-49' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-44' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-49' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-49' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-49' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-49' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-49' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-50' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-50' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-50' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-50' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-50' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-50' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-50' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4143' data-name='Gruppe 4143' transform='translate(-204)'%3E%3Ccircle id='Ellipse_152-45' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-51' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-45' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-51' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-45' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-51' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-51' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-51' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-51' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-51' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-46' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-52' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-46' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-52' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-46' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-52' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-52' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-52' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-52' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-52' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-53' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-53' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-53' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-53' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-53' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-53' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-53' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4144' data-name='Gruppe 4144' transform='translate(-216)'%3E%3Ccircle id='Ellipse_152-47' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-54' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-47' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-54' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-47' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-54' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-54' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-54' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-54' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-54' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-48' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-55' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-48' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-55' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-48' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-55' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-55' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-55' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-55' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-55' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-56' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-56' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-56' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-56' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-56' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-56' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-56' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4145' data-name='Gruppe 4145' transform='translate(-228)'%3E%3Ccircle id='Ellipse_152-49' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-57' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-49' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-57' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-49' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-57' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-57' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-57' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-57' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-57' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-50' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-58' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-50' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-58' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-50' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-58' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-58' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-58' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-58' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-58' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-59' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-59' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-59' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-59' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-59' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-59' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-59' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4146' data-name='Gruppe 4146' transform='translate(-240)'%3E%3Ccircle id='Ellipse_152-51' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-60' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-51' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-60' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-51' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-60' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-60' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-60' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-60' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-60' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-52' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-61' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-52' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-61' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-52' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-61' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-61' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-61' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-61' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-61' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-62' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-62' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-62' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-62' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-62' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-62' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-62' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4147' data-name='Gruppe 4147' transform='translate(-252)'%3E%3Ccircle id='Ellipse_152-53' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-63' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-53' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-63' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-53' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-63' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-63' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-63' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-63' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-63' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-54' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-64' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-54' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-64' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-54' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-64' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-64' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-64' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-64' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-64' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-65' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-65' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-65' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-65' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-65' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-65' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-65' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4148' data-name='Gruppe 4148' transform='translate(-264)'%3E%3Ccircle id='Ellipse_152-55' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-66' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-55' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-66' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-55' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-66' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-66' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-66' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-66' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-66' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-56' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-67' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-56' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-67' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-56' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-67' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-67' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-67' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-67' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-67' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-68' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-68' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-68' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-68' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-68' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-68' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-68' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4149' data-name='Gruppe 4149' transform='translate(-276)'%3E%3Ccircle id='Ellipse_152-57' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-69' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-57' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-69' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-57' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-69' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-69' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-69' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-69' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-69' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-58' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-70' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-58' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-70' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-58' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-70' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-70' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-70' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-70' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-70' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-71' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-71' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-71' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-71' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-71' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-71' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-71' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4150' data-name='Gruppe 4150' transform='translate(-288)'%3E%3Ccircle id='Ellipse_152-59' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-72' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-59' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-72' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-59' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-72' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-72' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-72' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-72' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-72' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-60' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-73' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-60' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-73' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-60' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-73' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-73' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-73' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-73' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-73' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-74' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-74' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-74' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-74' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-74' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-74' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-74' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4151' data-name='Gruppe 4151' transform='translate(-300)'%3E%3Ccircle id='Ellipse_152-61' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-75' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-61' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-75' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-61' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-75' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-75' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-75' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-75' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-75' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-62' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-76' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-62' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-76' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-62' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-76' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-76' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-76' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-76' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-76' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-77' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-77' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-77' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-77' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-77' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-77' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-77' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4152' data-name='Gruppe 4152' transform='translate(-312)'%3E%3Ccircle id='Ellipse_152-63' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-78' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-63' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-78' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-63' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-78' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-78' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-78' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-78' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-78' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-64' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-79' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-64' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-79' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-64' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-79' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-79' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-79' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-79' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-79' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-80' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-80' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-80' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-80' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-80' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-80' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-80' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4153' data-name='Gruppe 4153' transform='translate(-324)'%3E%3Ccircle id='Ellipse_152-65' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-81' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-65' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-81' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-65' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-81' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-81' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-81' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-81' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-81' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-66' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-82' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-66' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-82' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-66' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-82' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-82' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-82' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-82' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-82' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-83' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-83' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-83' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-83' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-83' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-83' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-83' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4154' data-name='Gruppe 4154' transform='translate(-336)'%3E%3Ccircle id='Ellipse_152-67' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-84' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-67' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-84' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-67' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-84' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-84' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-84' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-84' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-84' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-68' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-85' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-68' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-85' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-68' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-85' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-85' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-85' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-85' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-85' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-86' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-86' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-86' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-86' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-86' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-86' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-86' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4155' data-name='Gruppe 4155' transform='translate(-348)'%3E%3Ccircle id='Ellipse_152-69' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-87' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-69' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-87' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-69' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-87' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-87' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-87' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-87' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-87' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-70' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-88' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-70' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-88' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-70' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-88' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-88' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-88' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-88' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-88' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-89' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-89' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-89' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-89' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-89' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-89' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-89' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4156' data-name='Gruppe 4156' transform='translate(-360)'%3E%3Ccircle id='Ellipse_152-71' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-90' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-71' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-90' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-71' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-90' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-90' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-90' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-90' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-90' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-72' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-91' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-72' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-91' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-72' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-91' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-91' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-91' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-91' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-91' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-92' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-92' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-92' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-92' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-92' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-92' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-92' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4123' data-name='Gruppe 4123'%3E%3Ccircle id='Ellipse_152-73' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-93' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-73' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-93' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-73' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-93' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-93' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-93' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-93' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-93' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-74' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-94' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-74' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-94' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-74' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-94' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-94' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-94' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-94' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-94' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-75' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-95' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-75' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-95' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-75' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-95' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-95' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-95' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-95' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-95' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-76' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-96' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-76' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-96' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-76' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-96' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-96' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-96' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-96' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-96' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4127' data-name='Gruppe 4127' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-77' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-97' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-77' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-97' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-77' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-97' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-97' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-97' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-97' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-97' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-78' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-98' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-78' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-98' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-78' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-98' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-98' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-98' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-98' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-98' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-79' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-99' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-79' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-99' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-79' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-99' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-99' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-99' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-99' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-99' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-80' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-100' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-80' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-100' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-80' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-100' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-100' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-100' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-100' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-100' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4125' data-name='Gruppe 4125' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-81' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-101' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-81' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-101' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-81' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-101' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-101' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-101' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-101' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-101' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-82' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-102' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-82' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-102' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-82' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-102' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-102' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-102' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-102' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-102' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-83' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-103' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-83' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-103' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-83' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-103' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-103' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-103' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-103' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-103' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-84' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-104' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-84' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-104' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-84' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-104' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-104' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-104' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-104' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-104' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4130' data-name='Gruppe 4130' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-85' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-105' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-85' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-105' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-85' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-105' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-105' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-105' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-105' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-105' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-86' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-106' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-86' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-106' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-86' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-106' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-106' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-106' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-106' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-106' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-87' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-107' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-87' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-107' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-87' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-107' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-107' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-107' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-107' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-107' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-88' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-108' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-88' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-108' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-88' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-108' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-108' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-108' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-108' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-108' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4131' data-name='Gruppe 4131' transform='translate(96)'%3E%3Cg id='Gruppe_4124-2' data-name='Gruppe 4124'%3E%3Ccircle id='Ellipse_152-89' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-109' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-89' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-109' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-89' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-109' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-109' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-109' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-109' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-109' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-90' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-110' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-90' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-110' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-90' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-110' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-110' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-110' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-110' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-110' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-91' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-111' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-91' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-111' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-91' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-111' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-111' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-111' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-111' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-111' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-92' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-112' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-92' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-112' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-92' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-112' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-112' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-112' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-112' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-112' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4128-2' data-name='Gruppe 4128' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-93' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-113' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-93' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-113' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-93' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-113' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-113' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-113' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-113' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-113' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-94' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-114' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-94' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-114' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-94' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-114' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-114' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-114' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-114' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-114' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-95' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-115' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-95' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-115' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-95' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-115' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-115' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-115' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-115' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-115' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-96' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-116' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-96' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-116' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-96' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-116' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-116' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-116' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-116' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-116' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4126-2' data-name='Gruppe 4126' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-97' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-117' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-97' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-117' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-97' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-117' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-117' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-117' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-117' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-117' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-98' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-118' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-98' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-118' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-98' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-118' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-118' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-118' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-118' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-118' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-99' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-119' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-99' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-119' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-99' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-119' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-119' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-119' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-119' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-119' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-100' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-120' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-100' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-120' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-100' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-120' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-120' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-120' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-120' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-120' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4129-2' data-name='Gruppe 4129' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-101' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-121' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-101' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-121' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-101' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-121' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-121' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-121' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-121' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-121' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-102' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-122' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-102' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-122' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-102' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-122' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-122' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-122' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-122' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-122' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-103' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-123' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-103' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-123' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-103' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-123' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-123' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-123' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-123' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-123' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-104' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-124' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-104' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-124' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-104' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-124' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-124' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-124' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-124' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-124' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4123-2' data-name='Gruppe 4123'%3E%3Ccircle id='Ellipse_152-105' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-125' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-105' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-125' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-105' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-125' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-125' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-125' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-125' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-125' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-106' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-126' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-106' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-126' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-106' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-126' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-126' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-126' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-126' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-126' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-107' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-127' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-107' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-127' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-107' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-127' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-127' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-127' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-127' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-127' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-108' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-128' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-108' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-128' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-108' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-128' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-128' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-128' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-128' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-128' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4127-2' data-name='Gruppe 4127' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-109' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-129' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-109' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-129' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-109' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-129' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-129' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-129' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-129' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-129' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-110' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-130' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-110' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-130' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-110' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-130' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-130' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-130' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-130' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-130' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-111' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-131' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-111' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-131' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-111' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-131' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-131' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-131' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-131' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-131' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-112' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-132' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-112' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-132' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-112' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-132' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-132' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-132' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-132' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-132' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4125-2' data-name='Gruppe 4125' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-113' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-133' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-113' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-133' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-113' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-133' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-133' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-133' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-133' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-133' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-114' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-134' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-114' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-134' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-114' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-134' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-134' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-134' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-134' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-134' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-115' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-135' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-115' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-135' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-115' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-135' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-135' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-135' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-135' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-135' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-116' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-136' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-116' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-136' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-116' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-136' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-136' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-136' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-136' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-136' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4130-2' data-name='Gruppe 4130' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-117' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-137' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-117' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-137' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-117' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-137' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-137' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-137' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-137' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-137' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-118' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-138' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-118' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-138' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-118' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-138' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-138' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-138' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-138' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-138' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-119' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-139' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-119' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-139' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-119' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-139' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-139' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-139' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-139' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-139' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-120' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-140' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-120' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-140' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-120' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-140' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-140' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-140' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-140' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-140' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A"); }

.ce--vd_contact_card .ce__content {
  background-image: none; }

.ce--vd_contact_card .card .vd-image img {
  max-width: 120px; }

.ce--vd_contact_card.ce-layout--aside-box {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem; }
  .ce--vd_contact_card.ce-layout--aside-box:before, .ce--vd_contact_card.ce-layout--aside-box .ce--info_box::before {
    height: calc(100% + 14px); }

.event-detail__box .event-detail__box__section {
  background-color: #fff;
  padding: 20px; }
  .event-detail__box .event-detail__box__section .event-detail__box__title * {
    margin: 0px; }
  .event-detail__box .event-detail__box__section .event-detail__box__content p:last-child {
    margin-bottom: 0px; }

.ce-layout--aside-box {
  margin-top: 40px;
  margin-bottom: 40px; }
  .ce-layout--aside-box:not(.ce--color-sheme) {
    background-color: #fff !important;
    /*
           padding-top: 20px;
           padding-bottom: 20px;
*/ }
    .ce-layout--aside-box:not(.ce--color-sheme):before {
      content: '';
      display: inline-block;
      position: absolute;
      z-index: -1;
      height: calc(100% + 0px);
      width: 50%;
      right: -8px;
      bottom: -8.75px;
      background-position: right bottom;
      background-repeat: no-repeat;
      background-size: 166%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='476' height='392' viewBox='0 0 476 392'%3E%3Cg id='puenktchen' transform='translate(23131 14468)'%3E%3Cg id='Gruppe_4124' data-name='Gruppe 4124'%3E%3Ccircle id='Ellipse_152' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-2' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-2' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-2' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-2' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-2' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-2' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-2' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-2' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-2' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-2' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-3' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-3' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-3' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-3' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-3' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-3' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-3' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-3' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-3' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-3' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-4' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-4' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-4' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-4' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-4' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-4' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-4' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-4' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-4' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-4' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4128' data-name='Gruppe 4128' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-5' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-5' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-5' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-5' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-5' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-5' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-5' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-5' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-5' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-5' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-6' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-6' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-6' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-6' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-6' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-6' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-6' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-6' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-6' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-6' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-7' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-7' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-7' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-7' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-7' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-7' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-7' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-7' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-7' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-7' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-8' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-8' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-8' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-8' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-8' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-8' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-8' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-8' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-8' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-8' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4126' data-name='Gruppe 4126' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-9' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-9' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-9' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-9' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-9' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-9' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-9' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-9' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-9' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-9' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-10' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-10' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-10' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-10' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-10' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-10' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-10' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-10' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-10' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-10' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-11' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-11' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-11' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-11' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-11' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-11' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-11' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-11' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-11' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-11' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-12' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-12' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-12' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-12' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-12' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-12' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-12' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-12' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-12' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-12' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4129' data-name='Gruppe 4129' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-13' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-13' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-13' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-13' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-13' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-13' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-13' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-13' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-13' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-13' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-14' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-14' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-14' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-14' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-14' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-14' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-14' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-14' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-14' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-14' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-15' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-15' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-15' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-15' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-15' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-15' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-15' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-15' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-15' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-15' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-16' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-16' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-16' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-16' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-16' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-16' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-16' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-16' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-16' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-16' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4133' data-name='Gruppe 4133' transform='translate(-84)'%3E%3Ccircle id='Ellipse_152-17' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-17' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-17' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-17' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-17' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-17' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-17' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-17' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-17' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-17' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-18' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-18' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-18' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-18' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-18' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-18' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-18' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-18' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-18' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-18' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-19' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-19' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-19' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-19' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-19' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-19' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-19' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-19' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-19' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-19' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-20' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-20' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-20' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-20' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-20' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-20' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-20' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-20' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-20' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-20' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4134' data-name='Gruppe 4134' transform='translate(-96)'%3E%3Ccircle id='Ellipse_152-21' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-21' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-21' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-21' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-21' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-21' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-21' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-21' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-21' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-21' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-22' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-22' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-22' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-22' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-22' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-22' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-22' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-22' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-22' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-22' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-23' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-23' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-23' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-23' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-23' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-23' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-23' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-23' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-23' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-23' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-24' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-24' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-24' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-24' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-24' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-24' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-24' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-24' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-24' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-24' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4135' data-name='Gruppe 4135' transform='translate(-108)'%3E%3Ccircle id='Ellipse_152-25' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-25' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-25' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-25' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-25' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-25' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-25' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-25' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-25' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-25' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-26' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-26' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-26' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-26' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-26' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-26' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-26' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-26' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-26' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-26' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-27' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-27' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-27' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-27' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-27' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-27' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-27' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-27' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-27' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-27' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-28' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-28' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-28' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-28' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-28' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-28' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-28' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-28' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-28' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-28' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4136' data-name='Gruppe 4136' transform='translate(-120)'%3E%3Ccircle id='Ellipse_152-29' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-29' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-29' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-29' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-29' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-29' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-29' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-29' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-29' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-29' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-30' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-30' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-30' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-30' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-30' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-30' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-30' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-30' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-30' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-30' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-31' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-31' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-31' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-31' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-31' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-31' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-31' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-31' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-31' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-31' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-32' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-32' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-32' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-32' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-32' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-32' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-32' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-32' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-32' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-32' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4137' data-name='Gruppe 4137' transform='translate(-132)'%3E%3Ccircle id='Ellipse_152-33' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-33' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-33' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-33' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-33' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-33' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-33' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-33' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-33' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-33' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-34' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-34' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-34' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-34' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-34' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-34' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-34' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-34' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-34' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-34' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-35' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-35' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-35' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-35' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-35' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-35' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-35' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4138' data-name='Gruppe 4138' transform='translate(-144)'%3E%3Ccircle id='Ellipse_152-35' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-36' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-35' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-36' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-35' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-36' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-36' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-36' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-36' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-36' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-36' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-37' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-36' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-37' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-36' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-37' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-37' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-37' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-37' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-37' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-38' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-38' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-38' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-38' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-38' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-38' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-38' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4139' data-name='Gruppe 4139' transform='translate(-156)'%3E%3Ccircle id='Ellipse_152-37' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-39' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-37' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-39' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-37' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-39' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-39' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-39' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-39' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-39' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-38' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-40' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-38' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-40' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-38' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-40' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-40' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-40' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-40' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-40' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-41' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-41' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-41' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-41' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-41' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-41' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-41' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4140' data-name='Gruppe 4140' transform='translate(-168)'%3E%3Ccircle id='Ellipse_152-39' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-42' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-39' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-42' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-39' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-42' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-42' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-42' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-42' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-42' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-40' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-43' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-40' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-43' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-40' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-43' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-43' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-43' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-43' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-43' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-44' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-44' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-44' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-44' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-44' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-44' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-44' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4141' data-name='Gruppe 4141' transform='translate(-180)'%3E%3Ccircle id='Ellipse_152-41' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-45' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-41' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-45' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-41' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-45' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-45' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-45' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-45' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-45' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-42' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-46' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-42' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-46' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-42' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-46' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-46' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-46' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-46' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-46' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-47' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-47' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-47' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-47' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-47' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-47' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-47' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4142' data-name='Gruppe 4142' transform='translate(-192)'%3E%3Ccircle id='Ellipse_152-43' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-48' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-43' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-48' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-43' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-48' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-48' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-48' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-48' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-48' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-44' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-49' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-44' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-49' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-44' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-49' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-49' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-49' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-49' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-49' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-50' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-50' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-50' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-50' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-50' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-50' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-50' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4143' data-name='Gruppe 4143' transform='translate(-204)'%3E%3Ccircle id='Ellipse_152-45' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-51' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-45' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-51' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-45' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-51' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-51' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-51' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-51' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-51' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-46' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-52' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-46' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-52' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-46' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-52' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-52' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-52' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-52' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-52' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-53' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-53' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-53' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-53' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-53' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-53' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-53' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4144' data-name='Gruppe 4144' transform='translate(-216)'%3E%3Ccircle id='Ellipse_152-47' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-54' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-47' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-54' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-47' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-54' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-54' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-54' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-54' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-54' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-48' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-55' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-48' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-55' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-48' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-55' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-55' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-55' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-55' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-55' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-56' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-56' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-56' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-56' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-56' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-56' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-56' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4145' data-name='Gruppe 4145' transform='translate(-228)'%3E%3Ccircle id='Ellipse_152-49' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-57' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-49' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-57' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-49' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-57' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-57' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-57' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-57' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-57' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-50' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-58' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-50' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-58' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-50' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-58' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-58' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-58' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-58' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-58' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-59' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-59' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-59' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-59' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-59' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-59' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-59' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4146' data-name='Gruppe 4146' transform='translate(-240)'%3E%3Ccircle id='Ellipse_152-51' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-60' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-51' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-60' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-51' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-60' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-60' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-60' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-60' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-60' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-52' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-61' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-52' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-61' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-52' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-61' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-61' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-61' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-61' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-61' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-62' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-62' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-62' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-62' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-62' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-62' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-62' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4147' data-name='Gruppe 4147' transform='translate(-252)'%3E%3Ccircle id='Ellipse_152-53' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-63' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-53' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-63' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-53' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-63' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-63' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-63' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-63' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-63' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-54' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-64' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-54' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-64' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-54' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-64' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-64' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-64' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-64' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-64' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-65' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-65' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-65' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-65' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-65' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-65' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-65' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4148' data-name='Gruppe 4148' transform='translate(-264)'%3E%3Ccircle id='Ellipse_152-55' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-66' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-55' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-66' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-55' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-66' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-66' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-66' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-66' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-66' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-56' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-67' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-56' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-67' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-56' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-67' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-67' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-67' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-67' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-67' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-68' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-68' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-68' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-68' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-68' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-68' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-68' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4149' data-name='Gruppe 4149' transform='translate(-276)'%3E%3Ccircle id='Ellipse_152-57' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-69' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-57' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-69' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-57' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-69' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-69' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-69' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-69' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-69' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-58' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-70' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-58' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-70' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-58' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-70' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-70' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-70' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-70' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-70' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-71' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-71' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-71' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-71' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-71' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-71' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-71' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4150' data-name='Gruppe 4150' transform='translate(-288)'%3E%3Ccircle id='Ellipse_152-59' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-72' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-59' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-72' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-59' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-72' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-72' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-72' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-72' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-72' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-60' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-73' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-60' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-73' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-60' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-73' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-73' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-73' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-73' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-73' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-74' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-74' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-74' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-74' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-74' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-74' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-74' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4151' data-name='Gruppe 4151' transform='translate(-300)'%3E%3Ccircle id='Ellipse_152-61' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-75' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-61' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-75' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-61' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-75' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-75' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-75' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-75' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-75' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-62' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-76' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-62' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-76' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-62' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-76' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-76' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-76' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-76' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-76' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-77' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-77' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-77' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-77' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-77' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-77' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-77' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4152' data-name='Gruppe 4152' transform='translate(-312)'%3E%3Ccircle id='Ellipse_152-63' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-78' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-63' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-78' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-63' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-78' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-78' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-78' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-78' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-78' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-64' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-79' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-64' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-79' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-64' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-79' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-79' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-79' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-79' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-79' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-80' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-80' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-80' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-80' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-80' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-80' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-80' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4153' data-name='Gruppe 4153' transform='translate(-324)'%3E%3Ccircle id='Ellipse_152-65' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-81' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-65' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-81' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-65' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-81' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-81' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-81' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-81' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-81' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-66' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-82' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-66' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-82' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-66' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-82' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-82' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-82' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-82' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-82' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-83' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-83' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-83' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-83' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-83' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-83' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-83' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4154' data-name='Gruppe 4154' transform='translate(-336)'%3E%3Ccircle id='Ellipse_152-67' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-84' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-67' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-84' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-67' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-84' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-84' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-84' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-84' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-84' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-68' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-85' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-68' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-85' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-68' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-85' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-85' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-85' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-85' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-85' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-86' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-86' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-86' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-86' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-86' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-86' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-86' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4155' data-name='Gruppe 4155' transform='translate(-348)'%3E%3Ccircle id='Ellipse_152-69' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-87' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-69' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-87' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-69' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-87' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-87' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-87' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-87' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-87' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-70' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-88' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-70' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-88' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-70' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-88' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-88' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-88' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-88' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-88' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-89' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-89' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-89' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-89' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-89' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-89' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-89' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4156' data-name='Gruppe 4156' transform='translate(-360)'%3E%3Ccircle id='Ellipse_152-71' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-90' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-71' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-90' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-71' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-90' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-90' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-90' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-90' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-90' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-72' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-91' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-72' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-91' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-72' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-91' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-91' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-91' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-91' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-91' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-92' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-92' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-92' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-92' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-92' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-92' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-92' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4123' data-name='Gruppe 4123'%3E%3Ccircle id='Ellipse_152-73' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-93' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-73' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-93' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-73' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-93' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-93' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-93' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-93' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-93' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-74' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-94' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-74' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-94' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-74' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-94' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-94' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-94' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-94' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-94' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-75' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-95' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-75' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-95' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-75' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-95' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-95' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-95' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-95' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-95' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-76' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-96' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-76' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-96' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-76' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-96' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-96' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-96' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-96' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-96' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4127' data-name='Gruppe 4127' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-77' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-97' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-77' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-97' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-77' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-97' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-97' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-97' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-97' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-97' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-78' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-98' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-78' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-98' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-78' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-98' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-98' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-98' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-98' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-98' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-79' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-99' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-79' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-99' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-79' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-99' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-99' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-99' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-99' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-99' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-80' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-100' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-80' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-100' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-80' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-100' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-100' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-100' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-100' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-100' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4125' data-name='Gruppe 4125' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-81' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-101' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-81' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-101' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-81' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-101' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-101' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-101' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-101' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-101' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-82' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-102' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-82' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-102' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-82' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-102' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-102' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-102' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-102' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-102' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-83' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-103' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-83' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-103' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-83' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-103' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-103' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-103' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-103' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-103' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-84' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-104' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-84' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-104' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-84' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-104' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-104' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-104' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-104' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-104' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4130' data-name='Gruppe 4130' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-85' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-105' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-85' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-105' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-85' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-105' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-105' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-105' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-105' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-105' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-86' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-106' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-86' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-106' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-86' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-106' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-106' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-106' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-106' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-106' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-87' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-107' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-87' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-107' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-87' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-107' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-107' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-107' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-107' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-107' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-88' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-108' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-88' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-108' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-88' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-108' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-108' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-108' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-108' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-108' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4131' data-name='Gruppe 4131' transform='translate(96)'%3E%3Cg id='Gruppe_4124-2' data-name='Gruppe 4124'%3E%3Ccircle id='Ellipse_152-89' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-109' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-89' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-109' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-89' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-109' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-109' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-109' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-109' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-109' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-90' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-110' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-90' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-110' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-90' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-110' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-110' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-110' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-110' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-110' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-91' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-111' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-91' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-111' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-91' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-111' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-111' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-111' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-111' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-111' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-92' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-112' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-92' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-112' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-92' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-112' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-112' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-112' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-112' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-112' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4128-2' data-name='Gruppe 4128' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-93' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-113' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-93' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-113' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-93' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-113' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-113' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-113' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-113' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-113' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-94' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-114' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-94' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-114' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-94' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-114' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-114' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-114' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-114' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-114' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-95' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-115' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-95' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-115' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-95' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-115' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-115' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-115' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-115' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-115' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-96' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-116' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-96' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-116' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-96' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-116' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-116' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-116' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-116' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-116' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4126-2' data-name='Gruppe 4126' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-97' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-117' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-97' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-117' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-97' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-117' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-117' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-117' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-117' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-117' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-98' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-118' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-98' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-118' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-98' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-118' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-118' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-118' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-118' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-118' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-99' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-119' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-99' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-119' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-99' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-119' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-119' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-119' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-119' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-119' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-100' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-120' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-100' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-120' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-100' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-120' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-120' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-120' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-120' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-120' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4129-2' data-name='Gruppe 4129' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-101' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-121' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-101' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-121' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-101' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-121' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-121' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-121' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-121' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-121' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-102' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-122' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-102' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-122' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-102' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-122' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-122' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-122' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-122' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-122' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-103' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-123' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-103' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-123' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-103' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-123' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-123' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-123' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-123' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-123' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-104' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-124' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-104' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-124' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-104' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-124' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-124' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-124' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-124' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-124' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4123-2' data-name='Gruppe 4123'%3E%3Ccircle id='Ellipse_152-105' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-125' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-105' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-125' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-105' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-125' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-125' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-125' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-125' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-125' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-106' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-126' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-106' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-126' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-106' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-126' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-126' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-126' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-126' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-126' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-107' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-127' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-107' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-127' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-107' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-127' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-127' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-127' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-127' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-127' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-108' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-128' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-108' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-128' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-108' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-128' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-128' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-128' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-128' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-128' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4127-2' data-name='Gruppe 4127' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-109' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-129' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-109' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-129' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-109' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-129' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-129' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-129' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-129' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-129' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-110' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-130' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-110' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-130' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-110' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-130' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-130' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-130' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-130' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-130' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-111' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-131' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-111' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-131' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-111' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-131' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-131' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-131' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-131' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-131' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-112' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-132' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-112' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-132' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-112' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-132' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-132' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-132' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-132' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-132' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4125-2' data-name='Gruppe 4125' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-113' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-133' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-113' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-133' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-113' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-133' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-133' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-133' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-133' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-133' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-114' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-134' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-114' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-134' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-114' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-134' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-134' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-134' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-134' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-134' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-115' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-135' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-115' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-135' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-115' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-135' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-135' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-135' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-135' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-135' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-116' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-136' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-116' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-136' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-116' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-136' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-136' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-136' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-136' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-136' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_4130-2' data-name='Gruppe 4130' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-117' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-137' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-117' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-137' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-117' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-137' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-137' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-137' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-137' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-137' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-118' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-138' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-118' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-138' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-118' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-138' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-138' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-138' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-138' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-138' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-119' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-139' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-119' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-139' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-119' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-139' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-139' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-139' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-139' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-139' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_152-120' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_220-140' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_216-120' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_221-140' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_217-120' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_222-140' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_218-140' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_223-140' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_219-140' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23005d7d'/%3E%3Ccircle id='Ellipse_224-140' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23005d7d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A"); }
  .ce-layout--aside-box.ce--color-sheme:before {
    content: '';
    display: inline-block;
    position: absolute;
    z-index: -1;
    height: calc(100% + 0px);
    width: 50%;
    right: -8px;
    bottom: -8.75px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='476' height='392' viewBox='0 0 476 392'%3E%3Cg id='puenktchen' transform='translate(23131 14468)'%3E%3Cg id='Gruppe_4124' data-name='Gruppe 4124'%3E%3Ccircle id='Ellipse_152' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-2' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-2' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-2' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-2' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-2' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-2' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-2' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-2' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-2' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-2' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-3' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-3' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-3' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-3' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-3' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-3' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-3' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-3' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-3' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-3' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-4' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-4' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-4' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-4' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-4' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-4' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-4' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-4' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-4' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-4' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4128' data-name='Gruppe 4128' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-5' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-5' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-5' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-5' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-5' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-5' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-5' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-5' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-5' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-5' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-6' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-6' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-6' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-6' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-6' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-6' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-6' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-6' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-6' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-6' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-7' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-7' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-7' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-7' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-7' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-7' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-7' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-7' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-7' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-7' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-8' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-8' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-8' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-8' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-8' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-8' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-8' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-8' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-8' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-8' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4126' data-name='Gruppe 4126' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-9' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-9' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-9' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-9' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-9' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-9' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-9' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-9' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-9' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-9' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-10' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-10' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-10' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-10' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-10' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-10' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-10' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-10' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-10' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-10' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-11' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-11' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-11' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-11' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-11' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-11' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-11' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-11' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-11' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-11' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-12' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-12' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-12' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-12' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-12' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-12' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-12' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-12' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-12' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-12' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4129' data-name='Gruppe 4129' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-13' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-13' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-13' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-13' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-13' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-13' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-13' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-13' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-13' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-13' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-14' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-14' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-14' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-14' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-14' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-14' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-14' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-14' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-14' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-14' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-15' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-15' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-15' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-15' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-15' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-15' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-15' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-15' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-15' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-15' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-16' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-16' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-16' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-16' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-16' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-16' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-16' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-16' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-16' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-16' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4133' data-name='Gruppe 4133' transform='translate(-84)'%3E%3Ccircle id='Ellipse_152-17' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-17' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-17' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-17' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-17' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-17' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-17' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-17' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-17' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-17' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-18' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-18' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-18' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-18' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-18' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-18' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-18' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-18' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-18' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-18' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-19' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-19' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-19' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-19' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-19' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-19' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-19' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-19' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-19' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-19' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-20' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-20' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-20' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-20' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-20' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-20' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-20' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-20' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-20' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-20' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4134' data-name='Gruppe 4134' transform='translate(-96)'%3E%3Ccircle id='Ellipse_152-21' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-21' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-21' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-21' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-21' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-21' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-21' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-21' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-21' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-21' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-22' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-22' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-22' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-22' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-22' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-22' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-22' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-22' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-22' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-22' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-23' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-23' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-23' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-23' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-23' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-23' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-23' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-23' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-23' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-23' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-24' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-24' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-24' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-24' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-24' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-24' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-24' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-24' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-24' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-24' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4135' data-name='Gruppe 4135' transform='translate(-108)'%3E%3Ccircle id='Ellipse_152-25' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-25' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-25' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-25' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-25' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-25' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-25' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-25' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-25' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-25' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-26' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-26' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-26' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-26' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-26' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-26' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-26' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-26' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-26' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-26' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-27' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-27' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-27' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-27' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-27' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-27' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-27' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-27' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-27' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-27' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-28' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-28' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-28' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-28' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-28' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-28' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-28' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-28' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-28' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-28' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4136' data-name='Gruppe 4136' transform='translate(-120)'%3E%3Ccircle id='Ellipse_152-29' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-29' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-29' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-29' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-29' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-29' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-29' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-29' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-29' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-29' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-30' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-30' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-30' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-30' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-30' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-30' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-30' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-30' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-30' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-30' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-31' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-31' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-31' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-31' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-31' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-31' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-31' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-31' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-31' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-31' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-32' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-32' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-32' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-32' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-32' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-32' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-32' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-32' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-32' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-32' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4137' data-name='Gruppe 4137' transform='translate(-132)'%3E%3Ccircle id='Ellipse_152-33' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-33' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-33' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-33' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-33' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-33' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-33' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-33' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-33' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-33' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-34' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-34' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-34' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-34' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-34' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-34' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-34' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-34' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-34' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-34' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-35' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-35' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-35' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-35' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-35' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-35' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-35' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4138' data-name='Gruppe 4138' transform='translate(-144)'%3E%3Ccircle id='Ellipse_152-35' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-36' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-35' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-36' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-35' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-36' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-36' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-36' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-36' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-36' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-36' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-37' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-36' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-37' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-36' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-37' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-37' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-37' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-37' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-37' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-38' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-38' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-38' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-38' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-38' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-38' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-38' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4139' data-name='Gruppe 4139' transform='translate(-156)'%3E%3Ccircle id='Ellipse_152-37' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-39' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-37' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-39' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-37' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-39' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-39' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-39' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-39' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-39' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-38' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-40' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-38' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-40' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-38' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-40' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-40' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-40' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-40' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-40' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-41' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-41' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-41' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-41' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-41' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-41' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-41' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4140' data-name='Gruppe 4140' transform='translate(-168)'%3E%3Ccircle id='Ellipse_152-39' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-42' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-39' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-42' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-39' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-42' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-42' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-42' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-42' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-42' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-40' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-43' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-40' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-43' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-40' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-43' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-43' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-43' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-43' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-43' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-44' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-44' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-44' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-44' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-44' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-44' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-44' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4141' data-name='Gruppe 4141' transform='translate(-180)'%3E%3Ccircle id='Ellipse_152-41' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-45' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-41' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-45' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-41' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-45' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-45' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-45' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-45' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-45' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-42' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-46' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-42' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-46' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-42' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-46' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-46' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-46' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-46' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-46' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-47' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-47' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-47' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-47' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-47' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-47' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-47' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4142' data-name='Gruppe 4142' transform='translate(-192)'%3E%3Ccircle id='Ellipse_152-43' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-48' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-43' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-48' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-43' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-48' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-48' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-48' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-48' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-48' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-44' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-49' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-44' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-49' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-44' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-49' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-49' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-49' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-49' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-49' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-50' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-50' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-50' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-50' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-50' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-50' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-50' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4143' data-name='Gruppe 4143' transform='translate(-204)'%3E%3Ccircle id='Ellipse_152-45' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-51' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-45' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-51' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-45' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-51' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-51' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-51' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-51' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-51' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-46' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-52' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-46' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-52' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-46' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-52' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-52' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-52' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-52' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-52' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-53' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-53' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-53' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-53' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-53' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-53' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-53' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4144' data-name='Gruppe 4144' transform='translate(-216)'%3E%3Ccircle id='Ellipse_152-47' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-54' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-47' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-54' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-47' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-54' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-54' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-54' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-54' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-54' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-48' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-55' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-48' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-55' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-48' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-55' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-55' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-55' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-55' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-55' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-56' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-56' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-56' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-56' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-56' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-56' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-56' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4145' data-name='Gruppe 4145' transform='translate(-228)'%3E%3Ccircle id='Ellipse_152-49' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-57' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-49' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-57' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-49' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-57' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-57' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-57' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-57' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-57' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-50' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-58' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-50' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-58' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-50' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-58' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-58' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-58' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-58' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-58' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-59' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-59' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-59' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-59' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-59' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-59' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-59' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4146' data-name='Gruppe 4146' transform='translate(-240)'%3E%3Ccircle id='Ellipse_152-51' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-60' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-51' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-60' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-51' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-60' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-60' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-60' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-60' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-60' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-52' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-61' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-52' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-61' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-52' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-61' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-61' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-61' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-61' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-61' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-62' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-62' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-62' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-62' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-62' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-62' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-62' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4147' data-name='Gruppe 4147' transform='translate(-252)'%3E%3Ccircle id='Ellipse_152-53' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-63' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-53' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-63' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-53' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-63' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-63' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-63' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-63' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-63' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-54' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-64' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-54' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-64' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-54' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-64' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-64' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-64' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-64' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-64' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-65' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-65' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-65' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-65' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-65' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-65' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-65' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4148' data-name='Gruppe 4148' transform='translate(-264)'%3E%3Ccircle id='Ellipse_152-55' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-66' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-55' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-66' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-55' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-66' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-66' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-66' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-66' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-66' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-56' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-67' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-56' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-67' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-56' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-67' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-67' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-67' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-67' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-67' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-68' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-68' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-68' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-68' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-68' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-68' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-68' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4149' data-name='Gruppe 4149' transform='translate(-276)'%3E%3Ccircle id='Ellipse_152-57' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-69' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-57' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-69' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-57' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-69' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-69' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-69' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-69' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-69' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-58' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-70' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-58' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-70' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-58' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-70' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-70' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-70' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-70' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-70' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-71' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-71' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-71' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-71' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-71' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-71' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-71' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4150' data-name='Gruppe 4150' transform='translate(-288)'%3E%3Ccircle id='Ellipse_152-59' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-72' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-59' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-72' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-59' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-72' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-72' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-72' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-72' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-72' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-60' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-73' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-60' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-73' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-60' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-73' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-73' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-73' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-73' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-73' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-74' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-74' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-74' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-74' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-74' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-74' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-74' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4151' data-name='Gruppe 4151' transform='translate(-300)'%3E%3Ccircle id='Ellipse_152-61' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-75' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-61' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-75' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-61' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-75' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-75' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-75' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-75' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-75' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-62' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-76' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-62' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-76' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-62' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-76' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-76' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-76' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-76' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-76' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-77' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-77' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-77' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-77' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-77' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-77' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-77' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4152' data-name='Gruppe 4152' transform='translate(-312)'%3E%3Ccircle id='Ellipse_152-63' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-78' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-63' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-78' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-63' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-78' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-78' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-78' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-78' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-78' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-64' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-79' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-64' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-79' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-64' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-79' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-79' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-79' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-79' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-79' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-80' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-80' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-80' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-80' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-80' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-80' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-80' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4153' data-name='Gruppe 4153' transform='translate(-324)'%3E%3Ccircle id='Ellipse_152-65' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-81' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-65' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-81' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-65' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-81' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-81' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-81' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-81' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-81' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-66' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-82' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-66' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-82' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-66' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-82' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-82' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-82' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-82' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-82' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-83' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-83' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-83' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-83' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-83' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-83' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-83' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4154' data-name='Gruppe 4154' transform='translate(-336)'%3E%3Ccircle id='Ellipse_152-67' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-84' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-67' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-84' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-67' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-84' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-84' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-84' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-84' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-84' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-68' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-85' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-68' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-85' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-68' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-85' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-85' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-85' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-85' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-85' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-86' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-86' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-86' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-86' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-86' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-86' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-86' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4155' data-name='Gruppe 4155' transform='translate(-348)'%3E%3Ccircle id='Ellipse_152-69' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-87' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-69' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-87' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-69' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-87' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-87' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-87' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-87' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-87' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-70' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-88' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-70' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-88' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-70' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-88' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-88' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-88' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-88' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-88' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-89' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-89' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-89' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-89' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-89' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-89' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-89' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4156' data-name='Gruppe 4156' transform='translate(-360)'%3E%3Ccircle id='Ellipse_152-71' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-90' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-71' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-90' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-71' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-90' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-90' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-90' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-90' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-90' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-72' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-91' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-72' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-91' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-72' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-91' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-91' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-91' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-91' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-91' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-92' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-92' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-92' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-92' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-92' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-92' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-92' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4123' data-name='Gruppe 4123'%3E%3Ccircle id='Ellipse_152-73' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-93' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-73' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-93' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-73' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-93' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-93' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-93' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-93' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-93' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-74' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-94' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-74' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-94' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-74' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-94' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-94' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-94' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-94' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-94' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-75' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-95' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-75' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-95' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-75' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-95' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-95' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-95' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-95' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-95' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-76' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-96' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-76' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-96' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-76' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-96' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-96' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-96' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-96' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-96' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4127' data-name='Gruppe 4127' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-77' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-97' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-77' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-97' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-77' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-97' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-97' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-97' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-97' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-97' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-78' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-98' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-78' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-98' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-78' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-98' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-98' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-98' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-98' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-98' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-79' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-99' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-79' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-99' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-79' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-99' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-99' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-99' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-99' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-99' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-80' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-100' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-80' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-100' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-80' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-100' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-100' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-100' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-100' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-100' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4125' data-name='Gruppe 4125' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-81' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-101' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-81' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-101' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-81' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-101' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-101' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-101' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-101' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-101' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-82' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-102' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-82' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-102' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-82' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-102' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-102' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-102' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-102' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-102' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-83' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-103' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-83' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-103' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-83' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-103' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-103' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-103' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-103' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-103' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-84' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-104' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-84' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-104' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-84' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-104' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-104' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-104' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-104' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-104' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4130' data-name='Gruppe 4130' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-85' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-105' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-85' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-105' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-85' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-105' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-105' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-105' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-105' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-105' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-86' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-106' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-86' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-106' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-86' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-106' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-106' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-106' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-106' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-106' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-87' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-107' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-87' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-107' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-87' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-107' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-107' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-107' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-107' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-107' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-88' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-108' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-88' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-108' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-88' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-108' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-108' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-108' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-108' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-108' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4131' data-name='Gruppe 4131' transform='translate(96)'%3E%3Cg id='Gruppe_4124-2' data-name='Gruppe 4124'%3E%3Ccircle id='Ellipse_152-89' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-109' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-89' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-109' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-89' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-109' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-109' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-109' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-109' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-109' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-90' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-110' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-90' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-110' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-90' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-110' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-110' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-110' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-110' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-110' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-91' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-111' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-91' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-111' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-91' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-111' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-111' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-111' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-111' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-111' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-92' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-112' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-92' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-112' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-92' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-112' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-112' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-112' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-112' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-112' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4128-2' data-name='Gruppe 4128' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-93' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-113' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-93' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-113' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-93' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-113' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-113' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-113' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-113' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-113' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-94' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-114' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-94' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-114' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-94' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-114' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-114' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-114' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-114' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-114' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-95' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-115' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-95' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-115' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-95' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-115' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-115' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-115' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-115' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-115' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-96' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-116' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-96' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-116' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-96' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-116' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-116' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-116' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-116' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-116' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4126-2' data-name='Gruppe 4126' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-97' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-117' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-97' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-117' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-97' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-117' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-117' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-117' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-117' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-117' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-98' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-118' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-98' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-118' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-98' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-118' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-118' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-118' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-118' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-118' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-99' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-119' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-99' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-119' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-99' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-119' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-119' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-119' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-119' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-119' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-100' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-120' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-100' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-120' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-100' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-120' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-120' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-120' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-120' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-120' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4129-2' data-name='Gruppe 4129' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-101' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-121' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-101' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-121' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-101' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-121' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-121' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-121' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-121' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-121' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-102' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-122' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-102' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-122' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-102' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-122' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-122' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-122' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-122' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-122' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-103' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-123' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-103' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-123' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-103' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-123' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-123' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-123' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-123' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-123' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-104' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22771 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-124' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22771 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-104' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22771 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-124' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22771 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-104' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22771 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-124' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22771 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-124' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22771 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-124' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22771 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-124' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22771 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-124' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22771 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4123-2' data-name='Gruppe 4123'%3E%3Ccircle id='Ellipse_152-105' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-125' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-105' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-125' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-105' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-125' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-125' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-125' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-125' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-125' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-106' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-126' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-106' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-126' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-106' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-126' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-126' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-126' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-126' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-126' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-107' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-127' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-107' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-127' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-107' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-127' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-127' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-127' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-127' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-127' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-108' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-128' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-108' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-128' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-108' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-128' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-128' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-128' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-128' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-128' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4127-2' data-name='Gruppe 4127' transform='translate(-48)'%3E%3Ccircle id='Ellipse_152-109' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-129' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-109' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-129' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-109' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-129' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-129' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-129' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-129' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-129' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-110' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-130' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-110' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-130' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-110' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-130' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-130' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-130' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-130' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-130' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-111' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-131' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-111' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-131' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-111' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-131' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-131' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-131' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-131' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-131' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-112' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-132' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-112' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-132' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-112' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-132' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-132' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-132' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-132' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-132' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4125-2' data-name='Gruppe 4125' transform='translate(-24)'%3E%3Ccircle id='Ellipse_152-113' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-133' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-113' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-133' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-113' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-133' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-133' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-133' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-133' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-133' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-114' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-134' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-114' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-134' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-114' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-134' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-134' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-134' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-134' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-134' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-115' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-135' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-115' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-135' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-115' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-135' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-135' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-135' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-135' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-135' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-116' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-136' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-116' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-136' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-116' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-136' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-136' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-136' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-136' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-136' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3Cg id='Gruppe_4130-2' data-name='Gruppe 4130' transform='translate(-72)'%3E%3Ccircle id='Ellipse_152-117' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14192)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-137' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14132)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-117' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14180)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-137' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14120)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-117' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14168)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-137' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14108)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-137' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14156)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-137' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14096)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-137' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14144)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-137' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14084)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-118' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-138' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-118' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-138' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-118' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-138' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14228)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-138' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-138' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14216)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-138' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-138' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14204)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-119' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14348)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-139' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14288)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-119' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14336)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-139' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14276)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-119' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14324)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-139' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14264)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-139' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14312)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-139' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14252)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-139' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14300)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-139' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14240)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_152-120' data-name='Ellipse 152' cx='4' cy='4' r='4' transform='translate(-22759 -14468)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_220-140' data-name='Ellipse 220' cx='4' cy='4' r='4' transform='translate(-22759 -14408)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_216-120' data-name='Ellipse 216' cx='4' cy='4' r='4' transform='translate(-22759 -14456)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_221-140' data-name='Ellipse 221' cx='4' cy='4' r='4' transform='translate(-22759 -14396)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_217-120' data-name='Ellipse 217' cx='4' cy='4' r='4' transform='translate(-22759 -14444)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_222-140' data-name='Ellipse 222' cx='4' cy='4' r='4' transform='translate(-22759 -14384)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_218-140' data-name='Ellipse 218' cx='4' cy='4' r='4' transform='translate(-22759 -14432)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_223-140' data-name='Ellipse 223' cx='4' cy='4' r='4' transform='translate(-22759 -14372)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_219-140' data-name='Ellipse 219' cx='4' cy='4' r='4' transform='translate(-22759 -14420)' fill='%23EEF8F7'/%3E%3Ccircle id='Ellipse_224-140' data-name='Ellipse 224' cx='4' cy='4' r='4' transform='translate(-22759 -14360)' fill='%23EEF8F7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 166%; }
  .ce-layout--aside-box.ce--color-sheme.ce--vd_download, .ce-layout--aside-box.ce--color-sheme.ce--vd_pages_teaser, .ce-layout--aside-box.ce--color-sheme.ce--vd_page_teaser {
    padding: 20px !important; }
  .ce-layout--aside-box .ce__title {
    width: 100% !important;
    padding: 0px !important;
    position: relative !important;
    background-color: transparent !important; }
    .ce-layout--aside-box .ce__title * {
      color: #000 !important;
      font-size: 22px !important;
      font-size: 1.375rem !important;
      text-align: left !important;
      text-transform: none !important;
      line-height: normal !important;
      width: 100%; }
  .ce-layout--aside-box.ce--vd_contact_card .ce__content, .ce-layout--aside-box.ce--vd_department_card .ce__content {
    padding-left: 0px !important; }
  .ce-layout--aside-box.ce--vd_download .vd-wrapper, .ce-layout--aside-box.ce--vd_downloads .vd-wrapper {
    padding: 0px !important; }
  .ce-layout--aside-box.ce--vd_download .vd-teaser__title, .ce-layout--aside-box.ce--vd_downloads .vd-teaser__title {
    text-align: left !important; }
  .ce-layout--aside-box.ce--vd_pages_teaser .vd-teaser {
    padding: 20px !important;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important; }
  .ce-layout--aside-box.ce--vd_pages_teaser .vd-teaser__title {
    text-align: left !important; }
    .ce-layout--aside-box.ce--vd_pages_teaser .vd-teaser__title * {
      font-size: 22px !important;
      font-size: 1.375rem !important;
      text-align: left !important;
      text-transform: none !important;
      line-height: normal !important;
      width: 100%; }
  .ce-layout--aside-box.ce--vd_pages_teaser .vd-teaser__cta {
    text-align: left !important; }
  .ce-layout--aside-box .container, .ce-layout--aside-box .vd-breadcrumb, .ce-layout--aside-box .vd-breadcrumb .vd-nav, .vd-breadcrumb .ce-layout--aside-box .vd-nav, .ce-layout--aside-box #tx-solr-search, .ce-layout--aside-box .vd-filter-container, .ce-layout--aside-box .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__bottom .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .vd-section--header .header__navigation--buttons, .vd-section--header .ce-layout--aside-box .header__navigation--buttons, .ce-layout--aside-box body.template--startpage .vd-section--header .header__top .vd-wrapper, body.template--startpage .vd-section--header .header__top .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section--header .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box body:not(.template--startpage) .vd-section .header__navigation--buttons, body:not(.template--startpage) .vd-section .ce-layout--aside-box .header__navigation--buttons, .ce-layout--aside-box body.template--startpage .vd-section--hero .vd-wrapper, body.template--startpage .vd-section--hero .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .content-element.gutachter-list, .ce-layout--aside-box .vd-section--main .vd-message, .vd-section--main .ce-layout--aside-box .vd-message, .ce-layout--aside-box .vd-section--header .header__top .vd-wrapper, .vd-section--header .header__top .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_event_calendar .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce.ce--vd_events_list > .vd-wrapper, .ce-layout--aside-box .ce.ce--vd_events_search > .vd-wrapper, .ce-layout--aside-box .ce.ce--vd_event_registration .vd-wrapper, .ce.ce--vd_event_registration .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--sfeventmgt_pieventdetail .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce--vd_event_list > .vd-wrapper,
  .ce-layout--aside-box .ce--vd_event_search > .vd-wrapper, .ce-layout--aside-box .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce.ce--vd_newsletter_registration, .ce-layout--aside-box .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_services_teaser .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_text_teaser .ce-layout--aside-box .ce__title, .ce-layout--aside-box .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_teaser .ce-layout--aside-box .single-news-teaser, .ce-layout--aside-box .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .ce-layout--aside-box .ce__title, .ce-layout--aside-box .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list .ce-layout--aside-box .icon, .ce-layout--aside-box .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .ce-layout--aside-box .vd-actions, .ce-layout--aside-box .ce.ce--vd_news_list .news__cta, .ce.ce--vd_news_list .ce-layout--aside-box .news__cta, .ce-layout--aside-box .ce--vd_accordion .ce__title, .ce--vd_accordion .ce-layout--aside-box .ce__title,
  .ce-layout--aside-box .ce--vd_downloads .ce__title, .ce--vd_downloads .ce-layout--aside-box .ce__title, .ce-layout--aside-box .ce--vd_accordion .ce__content .ce__bodytext, .ce--vd_accordion .ce__content .ce-layout--aside-box .ce__bodytext,
  .ce-layout--aside-box .ce--vd_downloads .ce__content .ce__bodytext, .ce--vd_downloads .ce__content .ce-layout--aside-box .ce__bodytext, .ce-layout--aside-box .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel .ce-layout--aside-box .ce__content > .ce__bodytext, .ce-layout--aside-box .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_green__front_bright .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .vd-slick-dots, .ce-layout--aside-box .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_image .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce.ce--vd_text .vd-wrapper, .ce.ce--vd_text .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce.ce--table .vd-wrapper, .ce.ce--table .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce.ce--html .vd-wrapper, .ce.ce--html .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce.ce--vd_text_images .ce__title, .ce.ce--vd_text_images .ce-layout--aside-box .ce__title, .ce-layout--aside-box .ce.ce--vd_link_list, .ce-layout--aside-box .ce.ce--vd_quotation, .ce-layout--aside-box .ce--vd_pages_teaser .ce__title, .ce--vd_pages_teaser .ce-layout--aside-box .ce__title, .ce-layout--aside-box .ce.ce--vd_video .vd-wrapper, .ce.ce--vd_video .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce.ce--form_formframework .vd-wrapper, .ce.ce--form_formframework .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce.ce--vd_info_box, .ce-layout--aside-box .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_magazines .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce.ce--vd_list_offers .ce__title, .ce.ce--vd_list_offers .ce-layout--aside-box .ce__title, .ce-layout--aside-box .content-element-directories .text, .content-element-directories .ce-layout--aside-box .text, .ce-layout--aside-box .content-element-directories #directories_filter__form, .content-element-directories .ce-layout--aside-box #directories_filter__form, .ce-layout--aside-box .content-element-directories .directories-results, .content-element-directories .ce-layout--aside-box .directories-results, .ce-layout--aside-box #tx-solr-search .vd-wrapper, #tx-solr-search .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box main > .ce.ce--vd_event_teaser .single-event-teaser, main > .ce.ce--vd_event_teaser .ce-layout--aside-box .single-event-teaser, .ce-layout--aside-box .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_departments_list .ce-layout--aside-box .ce__title, .ce-layout--aside-box .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_divisions_list .ce-layout--aside-box .ce__title, .ce-layout--aside-box .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_persons_list .ce-layout--aside-box .ce__title, .ce-layout--aside-box .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce.ce--vd_job_form, .ce-layout--aside-box .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce-layout--aside-box .ce--vd_downloads .vd-wrapper, .ce--vd_downloads .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce--vd_download .ce__title, .ce--vd_download .ce-layout--aside-box .ce__title, .ce-layout--aside-box .ce--vd_download .ce__content, .ce--vd_download .ce-layout--aside-box .ce__content, .ce-layout--aside-box .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_menu_teaser .ce-layout--aside-box .vd-wrapper, .ce-layout--aside-box .ce.ce--vd_news_carousel > .vd-wrapper {
    padding: 0 !important;
    margin: 0 !important; }
  .ce-layout--aside-box.ce--vd_page_teaser {
    background-color: #EEF8F7 !important; }
    .ce-layout--aside-box.ce--vd_page_teaser .col-sm-9 {
      -webkit-box-flex: 0 !important;
          -ms-flex: 0 0 100% !important;
              flex: 0 0 100% !important;
      max-width: 100% !important; }
    .ce-layout--aside-box.ce--vd_page_teaser .col-sm-3 {
      display: none !important; }
  .ce-layout--aside-box .col-xl-4 {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 100% !important;
            flex: 0 0 100% !important;
    max-width: 100% !important; }
  .ce-layout--aside-box .vd-button, .ce-layout--aside-box #cookie_approval .button, #cookie_approval .ce-layout--aside-box .button, .ce-layout--aside-box .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .ce-layout--aside-box input[type="submit"] {
    border: 2px solid transparent !important;
    padding-left: 0px !important;
    color: #015D7D !important;
    background-color: transparent !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23015D7D'/%3E%3C/svg%3E"); }

.ce.ce--vd_magazines [class*="col-"] {
  margin-bottom: 3.125rem; }

.ce.ce--vd_magazines .accordion__header {
  border: none;
  background: none;
  padding: 1.875rem 0;
  width: 100%;
  position: relative;
  text-align: left;
  font-size: 30px;
  font-size: 1.875rem;
  color: #00848d;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media only screen and (min-width: 768px) {
    .ce.ce--vd_magazines .accordion__header {
      font-size: 40px;
      font-size: 2.5rem; } }
  .ce.ce--vd_magazines .accordion__header:after {
    content: "";
    display: inline-block;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2037%2022%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m32.88%203.2-14.7%2015.5-14.98-15.5%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%224%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    width: 24px;
    height: 13px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  .ce.ce--vd_magazines .accordion__header[aria-expanded="true"]:after {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  .ce.ce--vd_magazines .accordion__header[aria-expanded="false"] {
    border-bottom: 1px solid #000000; }

.ce.ce--vd_magazines .accordion__panel {
  -webkit-transition: height .35s ease-in-out;
  transition: height .35s ease-in-out;
  overflow: hidden; }
  .ce.ce--vd_magazines .accordion__panel:not(.active) {
    display: none; }

.ce.ce--vd_magazines .vd-magazine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%; }
  .ce.ce--vd_magazines .vd-magazine__cover {
    border: 1px solid #d7d5d5; }
    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
      .ce.ce--vd_magazines .vd-magazine__cover {
        max-height: 533px; } }
  .ce.ce--vd_magazines .vd-magazine__title {
    margin: 0.625rem 0 0 0; }
  .ce.ce--vd_magazines .vd-magazine__teaser_text {
    font-weight: 700; }
  .ce.ce--vd_magazines .vd-magazine__filesize {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 0.625rem; }

.vd-filter {
  margin-bottom: 3.125rem; }
  .vd-filter form {
    background: #FAFAFA;
    padding: 0.9375rem; }
    @media only screen and (min-width: 768px) {
      .vd-filter form {
        padding: 1.875rem; } }
  .vd-filter fieldset {
    border: none;
    padding: 0;
    margin: 0; }
    .vd-filter fieldset legend {
      display: none; }
  .vd-filter .field,
  .vd-filter .event-registration-row,
  .vd-filter .form-group {
    position: relative;
    max-width: 780px;
    margin-bottom: 2.5rem; }
    .vd-filter .field .input:not(.checkbox),
    .vd-filter .field .checkboxes-container,
    .vd-filter .event-registration-row .input:not(.checkbox),
    .vd-filter .event-registration-row .checkboxes-container,
    .vd-filter .form-group .input:not(.checkbox),
    .vd-filter .form-group .checkboxes-container {
      position: relative;
      border-bottom: 2px solid #00848d;
      margin-bottom: 0.3125rem; }
    .vd-filter .field--is-intro,
    .vd-filter .event-registration-row--is-intro,
    .vd-filter .form-group--is-intro {
      margin-bottom: 0; }
    .vd-filter .field .control-error,
    .vd-filter .event-registration-row .control-error,
    .vd-filter .form-group .control-error {
      color: var(--c-error);
      font-size: 14px;
      font-size: 0.875rem;
      display: inline-block;
      padding-top: 5px; }
    .vd-filter .field.has-error .input,
    .vd-filter .field.has-error .checkboxes-container,
    .vd-filter .event-registration-row.has-error .input,
    .vd-filter .event-registration-row.has-error .checkboxes-container,
    .vd-filter .form-group.has-error .input,
    .vd-filter .form-group.has-error .checkboxes-container {
      border-bottom-color: var(--c-error); }
    .vd-filter .field.has-error .checkmark,
    .vd-filter .event-registration-row.has-error .checkmark,
    .vd-filter .form-group.has-error .checkmark {
      border-color: var(--c-error); }
    .vd-filter .field.has-error .control-label,
    .vd-filter .event-registration-row.has-error .control-label,
    .vd-filter .form-group.has-error .control-label {
      color: var(--c-error); }
    .vd-filter .field.has-error .control-checkbox span,
    .vd-filter .field.has-error .form-check-label span,
    .vd-filter .event-registration-row.has-error .control-checkbox span,
    .vd-filter .event-registration-row.has-error .form-check-label span,
    .vd-filter .form-group.has-error .control-checkbox span,
    .vd-filter .form-group.has-error .form-check-label span {
      color: var(--c-error); }
    .vd-filter .field .help-block.error,
    .vd-filter .event-registration-row .help-block.error,
    .vd-filter .form-group .help-block.error {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      color: #fff;
      background-color: var(--c-error);
      font-size: 22px;
      font-size: 1.375rem;
      max-width: 780px;
      padding: 0.625rem 1.25rem;
      margin-top: 0.625rem; }
      .vd-filter .field .help-block.error:before,
      .vd-filter .event-registration-row .help-block.error:before,
      .vd-filter .form-group .help-block.error:before {
        content: "";
        display: inline-block;
        background-size: 20px;
        width: 20px;
        height: 20px;
        margin-right: 20px;
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2036%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%3E%3Cpath%20d%3D%22m3.2%203.2%2029.08%2029.08%22%2F%3E%3Cpath%20d%3D%22m32.28%203.2-29.08%2029.08%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat; }
    .vd-filter .field.date-field,
    .vd-filter .event-registration-row.date-field,
    .vd-filter .form-group.date-field {
      max-width: 380px; }
    .vd-filter .field.radiobutton-field > .input,
    .vd-filter .event-registration-row.radiobutton-field > .input,
    .vd-filter .form-group.radiobutton-field > .input {
      border: none; }
    .vd-filter .field.checkbox-field,
    .vd-filter .event-registration-row.checkbox-field,
    .vd-filter .form-group.checkbox-field {
      border: none; }
  .vd-filter label,
  .vd-filter .control-label {
    font-size: 14px;
    font-size: 0.875rem;
    color: #00848d; }
    .vd-filter label--top,
    .vd-filter .control-label--top {
      margin-bottom: 0.9375rem; }
  .vd-filter input[type="text"],
  .vd-filter input[type="email"],
  .vd-filter input[type="tel"],
  .vd-filter input[type="url"],
  .vd-filter textarea,
  .vd-filter select {
    width: 100%;
    height: 60px;
    border: 1px solid transparent;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 0 0 1.25rem;
    margin-bottom: 0.3125rem;
    background-color: transparent;
    -webkit-transition: background-color 350ms ease-in-out;
    transition: background-color 350ms ease-in-out; }
    .vd-filter input[type="text"]::-webkit-input-placeholder, .vd-filter input[type="email"]::-webkit-input-placeholder, .vd-filter input[type="tel"]::-webkit-input-placeholder, .vd-filter input[type="url"]::-webkit-input-placeholder, .vd-filter textarea::-webkit-input-placeholder, .vd-filter select::-webkit-input-placeholder {
      color: #737373; }
    .vd-filter input[type="text"]::-moz-placeholder, .vd-filter input[type="email"]::-moz-placeholder, .vd-filter input[type="tel"]::-moz-placeholder, .vd-filter input[type="url"]::-moz-placeholder, .vd-filter textarea::-moz-placeholder, .vd-filter select::-moz-placeholder {
      color: #737373; }
    .vd-filter input[type="text"]:-ms-input-placeholder, .vd-filter input[type="email"]:-ms-input-placeholder, .vd-filter input[type="tel"]:-ms-input-placeholder, .vd-filter input[type="url"]:-ms-input-placeholder, .vd-filter textarea:-ms-input-placeholder, .vd-filter select:-ms-input-placeholder {
      color: #737373; }
    .vd-filter input[type="text"]::-ms-input-placeholder, .vd-filter input[type="email"]::-ms-input-placeholder, .vd-filter input[type="tel"]::-ms-input-placeholder, .vd-filter input[type="url"]::-ms-input-placeholder, .vd-filter textarea::-ms-input-placeholder, .vd-filter select::-ms-input-placeholder {
      color: #737373; }
    .vd-filter input[type="text"]::placeholder,
    .vd-filter input[type="email"]::placeholder,
    .vd-filter input[type="tel"]::placeholder,
    .vd-filter input[type="url"]::placeholder,
    .vd-filter textarea::placeholder,
    .vd-filter select::placeholder {
      color: #737373; }
    .vd-filter input[type="text"]:not(select):focus,
    .vd-filter input[type="email"]:not(select):focus,
    .vd-filter input[type="tel"]:not(select):focus,
    .vd-filter input[type="url"]:not(select):focus,
    .vd-filter textarea:not(select):focus,
    .vd-filter select:not(select):focus {
      background-color: #D9EDEE;
      border: 1px solid #00848d;
      -webkit-transition: background-color 350ms ease-in-out;
      transition: background-color 350ms ease-in-out; }
    .vd-filter input[type="text"].focus-white:not(select):focus,
    .vd-filter input[type="email"].focus-white:not(select):focus,
    .vd-filter input[type="tel"].focus-white:not(select):focus,
    .vd-filter input[type="url"].focus-white:not(select):focus,
    .vd-filter textarea.focus-white:not(select):focus,
    .vd-filter select.focus-white:not(select):focus {
      background-color: #fff;
      border: none;
      -webkit-transition: background-color 350ms ease-in-out;
      transition: background-color 350ms ease-in-out; }
  .vd-filter textarea {
    height: 150px;
    padding: 1.25rem;
    border: 1px solid #9D9D9C;
    background-color: transparent; }
    .vd-filter textarea:focus {
      border: 1px solid #00848d; }
  .vd-filter .radio-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #00848d !important;
    padding-bottom: 0.3125rem !important; }
    .vd-filter .radio-group legend {
      display: block;
      position: absolute;
      bottom: -1.25rem;
      left: 0;
      font-size: 14px;
      font-size: 0.875rem;
      color: #00848d; }
  .vd-filter .radio-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 1.25rem;
    height: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .vd-filter .radio-wrapper label {
      font-size: 18px;
      font-size: 1.125rem;
      position: relative;
      color: #000000;
      bottom: auto;
      left: auto;
      width: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin: 0;
      cursor: pointer; }
    .vd-filter .radio-wrapper [type="radio"]:checked,
    .vd-filter .radio-wrapper [type="radio"]:not(:checked) {
      position: absolute;
      left: -9999px; }
    .vd-filter .radio-wrapper [type="radio"]:checked + label,
    .vd-filter .radio-wrapper [type="radio"]:not(:checked) + label {
      position: relative;
      padding-left: 28px;
      cursor: pointer;
      line-height: 20px;
      display: inline-block;
      color: #000; }
    .vd-filter .radio-wrapper [type="radio"]:checked + label:before,
    .vd-filter .radio-wrapper [type="radio"]:not(:checked) + label:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 18px;
      height: 18px;
      border-radius: 100%;
      background: #D9EDEE; }
    .vd-filter .radio-wrapper [type="radio"]:checked + label:after,
    .vd-filter .radio-wrapper [type="radio"]:not(:checked) + label:after {
      content: '';
      width: 10px;
      height: 10px;
      background: #00848d;
      position: absolute;
      top: 4px;
      left: 4px;
      border-radius: 100%;
      -webkit-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    .vd-filter .radio-wrapper [type="radio"]:not(:checked) + label:after {
      opacity: 0;
      -webkit-transform: scale(0);
              transform: scale(0); }
    .vd-filter .radio-wrapper [type="radio"]:checked + label:after {
      opacity: 1;
      -webkit-transform: scale(1);
              transform: scale(1); }
  .vd-filter .checkboxes-container:not(.checkboxes-container--fullsize) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .vd-filter .checkboxes-container:not(.checkboxes-container--fullsize) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
    .vd-filter .checkboxes-container:not(.checkboxes-container--fullsize) > * {
      margin-right: 20px;
      margin-bottom: 0.625rem;
      /*
            @media only screen and (min-width: 768px) {
                width: 30%;
                min-width: 210px;
            }
*/ }
  .vd-filter .checkboxes-container:not(.checkboxes-container--fullsize) .checkbox-wrapper {
    display: inline-block; }
  .vd-filter .checkboxes-container.checkboxes-container--fullsize .control-checkbox {
    margin-bottom: 15px; }
  .vd-filter .checkbox-wrapper {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    font-size: 1.125rem;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    line-height: 1.4; }
    .vd-filter .checkbox-wrapper [type="checkbox"] {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0; }
      .vd-filter .checkbox-wrapper [type="checkbox"]:checked ~ .checkmark:after {
        display: block; }
    .vd-filter .checkbox-wrapper .checkmark:after {
      content: "";
      position: absolute;
      display: none; }
    .vd-filter .checkbox-wrapper .checkmark {
      position: absolute;
      top: 4px;
      left: 0;
      height: 20px;
      width: 20px;
      background-color: #eee;
      border: 1px solid #00848d; }
      .vd-filter .checkbox-wrapper .checkmark:after {
        left: -9px;
        top: -6px;
        -webkit-transform: rotate(45deg) scale(0.5);
                transform: rotate(45deg) scale(0.5);
        height: 29px;
        width: 15px;
        margin-left: 60%;
        border-bottom: 8px solid #00848d;
        border-right: 8px solid #00848d; }
  .vd-filter .select-wrapper {
    position: relative; }
    .vd-filter .select-wrapper.disabled {
      opacity: 0.4; }
    .vd-filter .select-wrapper select {
      -moz-appearance: none;
           appearance: none;
      -webkit-appearance: none;
      border-radius: 0;
      position: relative;
      z-index: 1;
      cursor: pointer;
      border: 1px solid #00848d;
      font-weight: 600;
      line-height: 1.2;
      color: #000000; }
      .vd-filter .select-wrapper select:disabled {
        cursor: auto;
        opacity: 0.6; }
      .vd-filter .select-wrapper select option {
        font-size: 18px;
        font-size: 1.125rem;
        background-color: initial;
        font-weight: 400; }
    .vd-filter .select-wrapper select::-ms-expand {
      display: none; }
    .vd-filter .select-wrapper:after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 0 4px 4px 0;
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2037%2022%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m32.88%203.2-14.7%2015.5-14.98-15.5%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E");
      background-repeat: no-repeat;
      background-size: 50%;
      background-position: center;
      z-index: 0; }
    .vd-filter .select-wrapper.multiple select {
      height: 150px;
      padding: 0 0.9375rem;
      background-color: #fff; }
    .vd-filter .select-wrapper.multiple:after {
      content: none;
      background-image: none; }
  .vd-filter label {
    position: relative;
    display: block; }
    .vd-filter label.form-error {
      padding-top: 5px;
      color: var(--c-error);
      font-weight: bold; }
  .vd-filter .form-group.textarea-field label .textarea-counter {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1; }
  .vd-filter .search-mask {
    background: #FAFAFA;
    padding: 0.9375rem; }
    @media only screen and (min-width: 768px) {
      .vd-filter .search-mask {
        padding: 1.875rem; } }
    .vd-filter .search-mask .vd-button--filter-results, .vd-filter .search-mask .vd-button--reset-filter {
      margin-bottom: 1.25rem; }
  .vd-filter .vd-result-info > p {
    font-size: 16px;
    font-size: 1rem; }
  .vd-filter .radio-group {
    margin-bottom: 0; }

.vd-result-list > :nth-child(even) {
  background-color: #D9EDEE; }

.vd-result-list__header {
  display: none; }

.vd-result-list p {
  margin-top: 0; }

.vd-result-list .col--name,
.vd-result-list .col--address {
  font-size: 18px;
  font-size: 1.125rem; }

.vd-result-list .col--address {
  margin-bottom: 1.25rem; }
  .vd-result-list .col--address address {
    line-height: 1.3 !important;
    font-style: normal; }
    .vd-result-list .col--address address span {
      display: inline-block;
      margin: 0.125rem 0; }

.vd-result-list .col--name {
  font-weight: 600;
  margin-bottom: 1.25rem; }

.vd-result-list .col--meta .top-label, .vd-result-list .col--meta .tag {
  margin: 0.3125rem 0 0.625rem 0; }

.vd-result-list .col--additional ul {
  list-style: none;
  padding-left: 0; }

.vd-result-list .col--additional date.is-expired-date {
  color: var(--c-error); }

.vd-result-list__item {
  padding: 1.25rem 0.625rem;
  border-bottom: 1px solid #00848d; }
  .vd-result-list__item.inactive p, .vd-result-list__item.inactive address, .vd-result-list__item.inactive li {
    color: #757575; }
  .vd-result-list__item.inactive .top-label, .vd-result-list__item.inactive .tag {
    margin-bottom: 0.625rem; }
  .vd-result-list__item .row.row--additional {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem; }
    .vd-result-list__item .row.row--additional ul,
    .vd-result-list__item .row.row--additional ol {
      padding-left: 1.4375rem; }
      .vd-result-list__item .row.row--additional ul li,
      .vd-result-list__item .row.row--additional ol li {
        margin-bottom: 0.625rem;
        line-height: 1.2; }
        .vd-result-list__item .row.row--additional ul li ul,
        .vd-result-list__item .row.row--additional ul li ol,
        .vd-result-list__item .row.row--additional ol li ul,
        .vd-result-list__item .row.row--additional ol li ol {
          margin-top: 0.625rem; }
        .vd-result-list__item .row.row--additional ul li ul,
        .vd-result-list__item .row.row--additional ol li ul {
          padding-left: 0;
          margin-bottom: 0.625rem; }
          .vd-result-list__item .row.row--additional ul li ul > li,
          .vd-result-list__item .row.row--additional ol li ul > li {
            list-style: none; }
            .vd-result-list__item .row.row--additional ul li ul > li:before,
            .vd-result-list__item .row.row--additional ol li ul > li:before {
              content: "\2192";
              margin-right: 0.4375rem;
              font-size: 20px;
              font-size: 1.25rem; }
    .vd-result-list__item .row.row--additional ol li {
      padding-left: 5px; }
    .vd-result-list__item .row.row--additional .reviewer__details {
      padding-top: 1.25rem; }
      .vd-result-list__item .row.row--additional .reviewer__details--specialization {
        margin-top: 1.875rem;
        border-top: 1px solid #93ccce; }
      .vd-result-list__item .row.row--additional .reviewer__details h3, .vd-result-list__item .row.row--additional .reviewer__details .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .vd-result-list__item .row.row--additional .reviewer__details legend {
        font-size: 20px;
        font-size: 1.25rem; }
    .vd-result-list__item .row.row--additional:not(.status.status--open) {
      display: none; }
  .vd-result-list__item .text--tags {
    padding: 9px 0 12px; }

.vd-result-list__item-title {
  color: #00848d;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700; }

.vd-result-list .activeIn-group .top-label, .vd-result-list .activeIn-group .tag {
  margin-bottom: 0.625rem;
  margin-right: 0.3125rem;
  font-size: 16px;
  font-size: 1rem; }

nav[aria-label="pagebrowser"] {
  background-color: transparent !important; }

.f3-widget-paginator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.125rem;
  background-color: transparent !important; }
  .f3-widget-paginator li {
    margin: 0 0.3125rem; }
    .f3-widget-paginator li > *:not(.disabled) {
      color: #000;
      font-weight: 600;
      font-size: 18px;
      font-size: 1.125rem;
      text-decoration: none; }
      .f3-widget-paginator li > *:not(.disabled):hover, .f3-widget-paginator li > *:not(.disabled):focus {
        text-decoration: underline;
        color: #00848d; }
    .f3-widget-paginator li.current {
      font-size: 18px;
      font-size: 1.125rem;
      font-weight: 600;
      line-height: 1;
      text-decoration: underline;
      color: #00848d; }
  .f3-widget-paginator .previous a,
  .f3-widget-paginator .next a {
    line-height: 0 !important;
    font-size: 0 !important;
    color: transparent !important;
    width: 20px;
    height: 20px;
    display: block;
    background-repeat: no-repeat; }
  .f3-widget-paginator .previous {
    margin-right: 0.9375rem !important; }
    .f3-widget-paginator .previous a {
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2022%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m18.7%2032.88-15.5-14.7%2015.5-14.98%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E"); }
  .f3-widget-paginator .next {
    margin-left: 0.9375rem !important; }
    .f3-widget-paginator .next a {
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2022%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m3.2%2032.88%2015.5-14.7-15.5-14.98%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E"); }

.ce.ce--vd_list_offers .vd-result-list .top-label, .ce.ce--vd_list_offers .vd-result-list .tag {
  margin-bottom: 0.9375rem; }

.ce.ce--vd_list_offers .vd-result-list .col--contact-data.reorder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .ce.ce--vd_list_offers .vd-result-list .col--contact-data.reorder > :nth-child(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
  .ce.ce--vd_list_offers .vd-result-list .col--contact-data.reorder > :nth-child(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
  .ce.ce--vd_list_offers .vd-result-list .col--contact-data.reorder > :nth-child(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3; }
  .ce.ce--vd_list_offers .vd-result-list .col--contact-data.reorder > :nth-child(4) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4; }
  .ce.ce--vd_list_offers .vd-result-list .col--contact-data.reorder > :nth-child(5) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5; }
  .ce.ce--vd_list_offers .vd-result-list .col--contact-data.reorder > :nth-child(6) {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6; }
  .ce.ce--vd_list_offers .vd-result-list .col--contact-data.reorder > :nth-child(7) {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7; }

.ce.ce--vd_list_offers .vd-result-list .label {
  line-height: 1.2;
  font-size: 18px;
  font-size: 1.125rem; }

@media only screen and (max-width: 990px) {
  .ce.ce--vd_list_offers .vd-result-list__header {
    display: none; }
  .ce.ce--vd_list_offers .vd-result-list__item-title {
    display: block;
    color: #00848d;
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 700; } }

@media only screen and (min-width: 768px) {
  .vd-filter form {
    background: #FAFAFA;
    padding: 0.9375rem; } }
  @media only screen and (min-width: 768px) and (min-width: 768px) {
    .vd-filter form {
      padding: 1.875rem; } }

@media only screen and (min-width: 768px) {
  .vd-filter fieldset {
    border: none;
    padding: 0;
    margin: 0; }
    .vd-filter fieldset legend {
      display: none; }
  .vd-filter .field,
  .vd-filter .event-registration-row,
  .vd-filter .form-group {
    position: relative;
    max-width: 780px;
    margin-bottom: 2.5rem; }
    .vd-filter .field .input:not(.checkbox),
    .vd-filter .field .checkboxes-container,
    .vd-filter .event-registration-row .input:not(.checkbox),
    .vd-filter .event-registration-row .checkboxes-container,
    .vd-filter .form-group .input:not(.checkbox),
    .vd-filter .form-group .checkboxes-container {
      position: relative;
      border-bottom: 2px solid #00848d;
      margin-bottom: 0.3125rem; }
    .vd-filter .field--is-intro,
    .vd-filter .event-registration-row--is-intro,
    .vd-filter .form-group--is-intro {
      margin-bottom: 0; }
    .vd-filter .field .control-error,
    .vd-filter .event-registration-row .control-error,
    .vd-filter .form-group .control-error {
      color: var(--c-error);
      font-size: 14px;
      font-size: 0.875rem;
      display: inline-block;
      padding-top: 5px; }
    .vd-filter .field.has-error .input,
    .vd-filter .field.has-error .checkboxes-container,
    .vd-filter .event-registration-row.has-error .input,
    .vd-filter .event-registration-row.has-error .checkboxes-container,
    .vd-filter .form-group.has-error .input,
    .vd-filter .form-group.has-error .checkboxes-container {
      border-bottom-color: var(--c-error); }
    .vd-filter .field.has-error .checkmark,
    .vd-filter .event-registration-row.has-error .checkmark,
    .vd-filter .form-group.has-error .checkmark {
      border-color: var(--c-error); }
    .vd-filter .field.has-error .control-label,
    .vd-filter .event-registration-row.has-error .control-label,
    .vd-filter .form-group.has-error .control-label {
      color: var(--c-error); }
    .vd-filter .field.has-error .control-checkbox span,
    .vd-filter .field.has-error .form-check-label span,
    .vd-filter .event-registration-row.has-error .control-checkbox span,
    .vd-filter .event-registration-row.has-error .form-check-label span,
    .vd-filter .form-group.has-error .control-checkbox span,
    .vd-filter .form-group.has-error .form-check-label span {
      color: var(--c-error); }
    .vd-filter .field .help-block.error,
    .vd-filter .event-registration-row .help-block.error,
    .vd-filter .form-group .help-block.error {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      color: #fff;
      background-color: var(--c-error);
      font-size: 22px;
      font-size: 1.375rem;
      max-width: 780px;
      padding: 0.625rem 1.25rem;
      margin-top: 0.625rem; }
      .vd-filter .field .help-block.error:before,
      .vd-filter .event-registration-row .help-block.error:before,
      .vd-filter .form-group .help-block.error:before {
        content: "";
        display: inline-block;
        background-size: 20px;
        width: 20px;
        height: 20px;
        margin-right: 20px;
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2036%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%3E%3Cpath%20d%3D%22m3.2%203.2%2029.08%2029.08%22%2F%3E%3Cpath%20d%3D%22m32.28%203.2-29.08%2029.08%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat; }
    .vd-filter .field.date-field,
    .vd-filter .event-registration-row.date-field,
    .vd-filter .form-group.date-field {
      max-width: 380px; }
    .vd-filter .field.radiobutton-field > .input,
    .vd-filter .event-registration-row.radiobutton-field > .input,
    .vd-filter .form-group.radiobutton-field > .input {
      border: none; }
    .vd-filter .field.checkbox-field,
    .vd-filter .event-registration-row.checkbox-field,
    .vd-filter .form-group.checkbox-field {
      border: none; }
  .vd-filter label,
  .vd-filter .control-label {
    font-size: 14px;
    font-size: 0.875rem;
    color: #00848d; }
    .vd-filter label--top,
    .vd-filter .control-label--top {
      margin-bottom: 0.9375rem; }
  .vd-filter input[type="text"],
  .vd-filter input[type="email"],
  .vd-filter input[type="tel"],
  .vd-filter input[type="url"],
  .vd-filter textarea,
  .vd-filter select {
    width: 100%;
    height: 60px;
    border: 1px solid transparent;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 0 0 1.25rem;
    margin-bottom: 0.3125rem;
    background-color: transparent;
    -webkit-transition: background-color 350ms ease-in-out;
    transition: background-color 350ms ease-in-out; }
    .vd-filter input[type="text"]::-webkit-input-placeholder, .vd-filter input[type="email"]::-webkit-input-placeholder, .vd-filter input[type="tel"]::-webkit-input-placeholder, .vd-filter input[type="url"]::-webkit-input-placeholder, .vd-filter textarea::-webkit-input-placeholder, .vd-filter select::-webkit-input-placeholder {
      color: #737373; }
    .vd-filter input[type="text"]::-moz-placeholder, .vd-filter input[type="email"]::-moz-placeholder, .vd-filter input[type="tel"]::-moz-placeholder, .vd-filter input[type="url"]::-moz-placeholder, .vd-filter textarea::-moz-placeholder, .vd-filter select::-moz-placeholder {
      color: #737373; }
    .vd-filter input[type="text"]:-ms-input-placeholder, .vd-filter input[type="email"]:-ms-input-placeholder, .vd-filter input[type="tel"]:-ms-input-placeholder, .vd-filter input[type="url"]:-ms-input-placeholder, .vd-filter textarea:-ms-input-placeholder, .vd-filter select:-ms-input-placeholder {
      color: #737373; }
    .vd-filter input[type="text"]::-ms-input-placeholder, .vd-filter input[type="email"]::-ms-input-placeholder, .vd-filter input[type="tel"]::-ms-input-placeholder, .vd-filter input[type="url"]::-ms-input-placeholder, .vd-filter textarea::-ms-input-placeholder, .vd-filter select::-ms-input-placeholder {
      color: #737373; }
    .vd-filter input[type="text"]::placeholder,
    .vd-filter input[type="email"]::placeholder,
    .vd-filter input[type="tel"]::placeholder,
    .vd-filter input[type="url"]::placeholder,
    .vd-filter textarea::placeholder,
    .vd-filter select::placeholder {
      color: #737373; }
    .vd-filter input[type="text"]:not(select):focus,
    .vd-filter input[type="email"]:not(select):focus,
    .vd-filter input[type="tel"]:not(select):focus,
    .vd-filter input[type="url"]:not(select):focus,
    .vd-filter textarea:not(select):focus,
    .vd-filter select:not(select):focus {
      background-color: #D9EDEE;
      border: 1px solid #00848d;
      -webkit-transition: background-color 350ms ease-in-out;
      transition: background-color 350ms ease-in-out; }
    .vd-filter input[type="text"].focus-white:not(select):focus,
    .vd-filter input[type="email"].focus-white:not(select):focus,
    .vd-filter input[type="tel"].focus-white:not(select):focus,
    .vd-filter input[type="url"].focus-white:not(select):focus,
    .vd-filter textarea.focus-white:not(select):focus,
    .vd-filter select.focus-white:not(select):focus {
      background-color: #fff;
      border: none;
      -webkit-transition: background-color 350ms ease-in-out;
      transition: background-color 350ms ease-in-out; }
  .vd-filter textarea {
    height: 150px;
    padding: 1.25rem;
    border: 1px solid #9D9D9C;
    background-color: transparent; }
    .vd-filter textarea:focus {
      border: 1px solid #00848d; }
  .vd-filter .radio-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #00848d !important;
    padding-bottom: 0.3125rem !important; }
    .vd-filter .radio-group legend {
      display: block;
      position: absolute;
      bottom: -1.25rem;
      left: 0;
      font-size: 14px;
      font-size: 0.875rem;
      color: #00848d; }
  .vd-filter .radio-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 1.25rem;
    height: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .vd-filter .radio-wrapper label {
      font-size: 18px;
      font-size: 1.125rem;
      position: relative;
      color: #000000;
      bottom: auto;
      left: auto;
      width: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin: 0;
      cursor: pointer; }
    .vd-filter .radio-wrapper [type="radio"]:checked,
    .vd-filter .radio-wrapper [type="radio"]:not(:checked) {
      position: absolute;
      left: -9999px; }
    .vd-filter .radio-wrapper [type="radio"]:checked + label,
    .vd-filter .radio-wrapper [type="radio"]:not(:checked) + label {
      position: relative;
      padding-left: 28px;
      cursor: pointer;
      line-height: 20px;
      display: inline-block;
      color: #000; }
    .vd-filter .radio-wrapper [type="radio"]:checked + label:before,
    .vd-filter .radio-wrapper [type="radio"]:not(:checked) + label:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 18px;
      height: 18px;
      border-radius: 100%;
      background: #D9EDEE; }
    .vd-filter .radio-wrapper [type="radio"]:checked + label:after,
    .vd-filter .radio-wrapper [type="radio"]:not(:checked) + label:after {
      content: '';
      width: 10px;
      height: 10px;
      background: #00848d;
      position: absolute;
      top: 4px;
      left: 4px;
      border-radius: 100%;
      -webkit-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    .vd-filter .radio-wrapper [type="radio"]:not(:checked) + label:after {
      opacity: 0;
      -webkit-transform: scale(0);
              transform: scale(0); }
    .vd-filter .radio-wrapper [type="radio"]:checked + label:after {
      opacity: 1;
      -webkit-transform: scale(1);
              transform: scale(1); }
  .vd-filter .checkboxes-container:not(.checkboxes-container--fullsize) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }
  @media only screen and (min-width: 768px) and (max-width: 767px) {
    .vd-filter .checkboxes-container:not(.checkboxes-container--fullsize) {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }

@media only screen and (min-width: 768px) {
    .vd-filter .checkboxes-container:not(.checkboxes-container--fullsize) > * {
      margin-right: 20px;
      margin-bottom: 0.625rem;
      /*
            @media only screen and (min-width: 768px) {
                width: 30%;
                min-width: 210px;
            }
*/ }
  .vd-filter .checkboxes-container:not(.checkboxes-container--fullsize) .checkbox-wrapper {
    display: inline-block; }
  .vd-filter .checkboxes-container.checkboxes-container--fullsize .control-checkbox {
    margin-bottom: 15px; }
  .vd-filter .checkbox-wrapper {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    font-size: 1.125rem;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    line-height: 1.4; }
    .vd-filter .checkbox-wrapper [type="checkbox"] {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0; }
      .vd-filter .checkbox-wrapper [type="checkbox"]:checked ~ .checkmark:after {
        display: block; }
    .vd-filter .checkbox-wrapper .checkmark:after {
      content: "";
      position: absolute;
      display: none; }
    .vd-filter .checkbox-wrapper .checkmark {
      position: absolute;
      top: 4px;
      left: 0;
      height: 20px;
      width: 20px;
      background-color: #eee;
      border: 1px solid #00848d; }
      .vd-filter .checkbox-wrapper .checkmark:after {
        left: -9px;
        top: -6px;
        -webkit-transform: rotate(45deg) scale(0.5);
                transform: rotate(45deg) scale(0.5);
        height: 29px;
        width: 15px;
        margin-left: 60%;
        border-bottom: 8px solid #00848d;
        border-right: 8px solid #00848d; }
  .vd-filter .select-wrapper {
    position: relative; }
    .vd-filter .select-wrapper.disabled {
      opacity: 0.4; }
    .vd-filter .select-wrapper select {
      -moz-appearance: none;
           appearance: none;
      -webkit-appearance: none;
      border-radius: 0;
      position: relative;
      z-index: 1;
      cursor: pointer;
      border: 1px solid #00848d;
      font-weight: 600;
      line-height: 1.2;
      color: #000000; }
      .vd-filter .select-wrapper select:disabled {
        cursor: auto;
        opacity: 0.6; }
      .vd-filter .select-wrapper select option {
        font-size: 18px;
        font-size: 1.125rem;
        background-color: initial;
        font-weight: 400; }
    .vd-filter .select-wrapper select::-ms-expand {
      display: none; }
    .vd-filter .select-wrapper:after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 0 4px 4px 0;
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2037%2022%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m32.88%203.2-14.7%2015.5-14.98-15.5%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E");
      background-repeat: no-repeat;
      background-size: 50%;
      background-position: center;
      z-index: 0; }
    .vd-filter .select-wrapper.multiple select {
      height: 150px;
      padding: 0 0.9375rem;
      background-color: #fff; }
    .vd-filter .select-wrapper.multiple:after {
      content: none;
      background-image: none; }
  .vd-filter label {
    position: relative;
    display: block; }
    .vd-filter label.form-error {
      padding-top: 5px;
      color: var(--c-error);
      font-weight: bold; }
  .vd-filter .form-group.textarea-field label .textarea-counter {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1; }
  .vd-filter .search-mask {
    padding: 1.875rem; }
  .vd-filter .vd-result-info > p {
    text-align: right;
    font-size: 18px;
    font-size: 1.125rem; }
  .vd-filter .radio-group {
    margin-bottom: 0; }
  .vd-result-list__header {
    display: block;
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 600;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #00848d; }
    .vd-result-list__header span {
      -webkit-hyphens: auto;
          -ms-hyphens: auto;
              hyphens: auto; }
  .vd-result-list__item-title {
    display: none; }
  .vd-result-list [class*="col--"] {
    font-size: 18px;
    font-size: 1.125rem; }
  .vd-result-list .col--name {
    font-weight: 600;
    margin-bottom: 0; }
  .vd-result-list .col--address {
    margin-bottom: 0; }
  .vd-result-list .col--details > h3, .vd-result-list .ce.ce--vd_job_form fieldset .col--details > legend, .ce.ce--vd_job_form fieldset .vd-result-list .col--details > legend {
    margin-top: 0; } }

.content-element-directories .headline {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 40px;
  padding-top: 40px; }
  @media only screen and (min-width: 576px) {
    .content-element-directories .headline {
      max-width: 540px; } }
  @media only screen and (min-width: 768px) {
    .content-element-directories .headline {
      max-width: 720px; } }
  @media only screen and (min-width: 992px) {
    .content-element-directories .headline {
      max-width: 960px; } }
  @media only screen and (min-width: 1200px) {
    .content-element-directories .headline {
      max-width: 1440px;
      padding-right: calc(5.638em / 2 - 10px);
      padding-left: calc(5.638em / 2 - 10px); } }

.content-element-directories .text > * {
  padding-left: 10px;
  padding-right: 10px; }

.content-element-directories .plugin-directories {
  background-color: #F0F0F0; }

.content-element-directories .directories-filters {
  background-color: #F0F0F0;
  text-align: center; }

.content-element-directories #directories_filter__form {
  text-align: left; }
  @media only screen and (max-width: 767px) {
    .content-element-directories #directories_filter__form .filter.select,
    .content-element-directories #directories_filter__form .filter.input {
      width: calc(100% - 20px); } }

.content-element-directories .directories-results {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem; }

.content-element-directories .directories-item {
  background-color: #fff;
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem;
  display: inline-block;
  width: 100%;
  padding: 1.875rem; }
  .content-element-directories .directories-item dl {
    display: block;
    width: 100%;
    float: left;
    /*
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
*/
    font-size: 18px;
    font-size: 1.125rem; }
  .content-element-directories .directories-item dt {
    width: 150px;
    float: left;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 30px;
    display: block; }
    @media only screen and (max-width: 767px) {
      .content-element-directories .directories-item dt {
        width: 100%; } }
  .content-element-directories .directories-item dd {
    width: calc(100% - 150px);
    float: left;
    padding-right: 300px;
    line-height: 30px;
    display: block;
    margin: 0;
    margin-bottom: 10px; }
    @media only screen and (max-width: 767px) {
      .content-element-directories .directories-item dd {
        width: 100%;
        padding-right: 0px; } }
    .content-element-directories .directories-item dd > * {
      line-height: 30px; }
  .content-element-directories .directories-item details {
    width: 100%;
    position: relative;
    display: inline-block;
    float: none;
    clear: both; }
    .content-element-directories .directories-item details dd {
      padding-right: 0px; }
    .content-element-directories .directories-item details summary {
      text-align: right;
      position: absolute;
      top: -34px;
      width: 100%;
      cursor: pointer;
      list-style: none;
      color: #015D7D;
      font-weight: 700;
      letter-spacing: 0.9px; }
      @media only screen and (max-width: 767px) {
        .content-element-directories .directories-item details summary {
          top: unset;
          bottom: -20px; } }
      .content-element-directories .directories-item details summary::after {
        content: '';
        height: 18px;
        width: 32px;
        display: inline-block;
        top: 4px;
        position: relative;
        margin-left: 13px;
        background-repeat: no-repeat;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23015D7D'/%3E%3C/svg%3E");
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg); }
    .content-element-directories .directories-item details[open] summary::after {
      -webkit-transform: rotate(-90deg);
              transform: rotate(-90deg); }

.content-element-directories .directories-items_available {
  text-align: right;
  font-size: 22px;
  font-size: 1.375rem; }

.content-element-directories .button_wrapper {
  display: block;
  width: 100%;
  margin-left: 0px;
  margin-right: 0px;
  float: left; }

.content-element-directories #directories_more__submit {
  cursor: pointer; }

.content-element-directories #directories_filter__reset {
  margin-left: 10px;
  margin-right: 10px;
  background-color: transparent;
  color: #015D7D;
  line-height: 33px;
  height: 50px;
  padding: 0.625rem 1.25rem;
  padding-left: 0px;
  padding-right: 0px;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.9px;
  font-weight: 700;
  text-decoration: underline; }

.content-element-directories #directories_more__form {
  width: 100%;
  text-align: center;
  margin-bottom: 40px; }

.content-element-directories .directories-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 10px;
  margin-left: -10px;
  margin-right: -10px; }
  .content-element-directories .directories-row .directories-column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding-left: 10px;
    padding-right: 10px; }

.content-element-directories .directories-notice--alert {
  color: #015D7D;
  font-weight: 600; }

.content-element-directories.aerzte-list dl, .content-element-directories.verkehrsmediziner-list dl, .content-element-directories.gutachter-list dl, .content-element-directories.veranstaltungen-list dl, .content-element-directories.befugte-list dl {
  margin: 0px; }

.content-element-directories.aerzte-list dt, .content-element-directories.verkehrsmediziner-list dt, .content-element-directories.gutachter-list dt, .content-element-directories.veranstaltungen-list dt, .content-element-directories.befugte-list dt {
  width: 100%;
  margin-bottom: 0px; }

.content-element-directories.aerzte-list dd, .content-element-directories.verkehrsmediziner-list dd, .content-element-directories.gutachter-list dd, .content-element-directories.veranstaltungen-list dd, .content-element-directories.befugte-list dd {
  width: 100%;
  padding-right: 0px; }

@media only screen and (max-width: 767px) {
  .content-element-directories.aerzte-list .directories-row, .content-element-directories.verkehrsmediziner-list .directories-row, .content-element-directories.gutachter-list .directories-row, .content-element-directories.veranstaltungen-list .directories-row, .content-element-directories.befugte-list .directories-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }

@media only screen and (max-width: 767px) {
  .content-element-directories.aerzte-list .directories-column, .content-element-directories.verkehrsmediziner-list .directories-column, .content-element-directories.gutachter-list .directories-column, .content-element-directories.veranstaltungen-list .directories-column, .content-element-directories.befugte-list .directories-column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; } }

#tx-solr-search .search-form > :last-child .form-group {
  margin-bottom: 0px; }

#tx-solr-search .search-form__input:focus + .search-form__submit {
  background-color: transparent; }

#tx-solr-search .search-form .form-group .input:not(.checkbox),
#tx-solr-search .search-form .checkboxes-container,
#tx-solr-search .search-form .search-form__wrapper {
  border-color: #015D7D !important; }
  #tx-solr-search .search-form .form-group .input:not(.checkbox) *,
  #tx-solr-search .search-form .checkboxes-container *,
  #tx-solr-search .search-form .search-form__wrapper * {
    color: #015D7D !important; }
  #tx-solr-search .search-form .form-group .input:not(.checkbox) input,
  #tx-solr-search .search-form .checkboxes-container input,
  #tx-solr-search .search-form .search-form__wrapper input {
    color: #000 !important;
    font-size: 22px;
    font-size: 1.375rem; }
  #tx-solr-search .search-form .form-group .input:not(.checkbox) .checkboxes-container,
  #tx-solr-search .search-form .checkboxes-container .checkboxes-container,
  #tx-solr-search .search-form .search-form__wrapper .checkboxes-container {
    line-height: 30px; }

#tx-solr-search .search-form .control-label {
  color: #015D7D !important; }

#tx-solr-search .tx-solr-search-form {
  margin-bottom: 3.125rem; }

#tx-solr-search .tx-solr-search-info {
  display: none; }

#tx-solr-search .pagination li {
  margin: 0 0.625rem !important; }
  #tx-solr-search .pagination li.active > :not(.disabled) {
    color: #015D7D !important; }
  #tx-solr-search .pagination li > :not(.disabled):hover,
  #tx-solr-search .pagination li > :not(.disabled):focus {
    color: #015D7D !important; }

#tx-solr-search .pagination .previous a {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2022%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m18.7%2032.88-15.5-14.7%2015.5-14.98%22%20fill%3D%22none%22%20stroke%3D%22%23015D7D%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E") !important; }

#tx-solr-search .pagination .next a {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2022%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m3.2%2032.88%2015.5-14.7-15.5-14.98%22%20fill%3D%22none%22%20stroke%3D%22%23015D7D%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E") !important; }

#tx-solr-search .search-result {
  border-bottom: 1px solid #015D7D;
  padding: 1.25rem 0;
  margin-bottom: 0.625rem; }
  #tx-solr-search .search-result .meta .meta__category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  #tx-solr-search .search-result .meta .label {
    font-size: 18px;
    font-size: 1.125rem;
    color: #015D7D;
    font-weight: 600; }
  #tx-solr-search .search-result .meta .icon {
    margin-right: 0.625rem;
    position: relative;
    padding-left: 20px;
    /*
                top: -2px;
                position: relative;
*/ }
    #tx-solr-search .search-result .meta .icon img {
      display: none; }
    #tx-solr-search .search-result .meta .icon:before {
      display: inline-block;
      content: '';
      width: 16px;
      height: 20px;
      position: absolute;
      top: -1px;
      left: 0px;
      background-position: 0px 0px;
      background-size: contain;
      background-repeat: no-repeat;
      background-image: url("data:image/svg+xml,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 65 85'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23015D7D;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M62,85H24.91a3,3,0,1,1,0-6H59V21.77H6V82a3,3,0,0,1-6,0V18.77a3,3,0,0,1,3-3H62a3,3,0,0,1,3,3V82A3,3,0,0,1,62,85Z'/%3E%3Cpath class='cls-1' d='M18.4,19.8a3,3,0,0,1-3-3V3a3,3,0,0,1,6,0V16.8A3,3,0,0,1,18.4,19.8Z'/%3E%3Cpath class='cls-1' d='M46.16,19.8a3,3,0,0,1-3-3V3a3,3,0,0,1,6,0V16.8A3,3,0,0,1,46.16,19.8Z'/%3E%3Cpath class='cls-1' d='M45.7,48.35a3,3,0,0,1-3-3v-.44a3,3,0,0,1,6,0v.44A3,3,0,0,1,45.7,48.35Z'/%3E%3Cpath class='cls-1' d='M45.7,59.82a3,3,0,0,1-3-3v-.44a3,3,0,0,1,6,0v.44A3,3,0,0,1,45.7,59.82Z'/%3E%3Cpath class='cls-1' d='M45.7,71.29a3,3,0,0,1-3-3v-.44a3,3,0,0,1,6,0v.44A3,3,0,0,1,45.7,71.29Z'/%3E%3Cpath class='cls-1' d='M31.66,48.35a3,3,0,0,1-3-3v-.44a3,3,0,1,1,6,0v.44A3,3,0,0,1,31.66,48.35Z'/%3E%3Cpath class='cls-1' d='M31.66,59.82a3,3,0,0,1-3-3v-.44a3,3,0,1,1,6,0v.44A3,3,0,0,1,31.66,59.82Z'/%3E%3Cpath class='cls-1' d='M31.66,71.29a3,3,0,0,1-3-3v-.44a3,3,0,1,1,6,0v.44A3,3,0,0,1,31.66,71.29Z'/%3E%3Cpath class='cls-1' d='M17.63,48.35a3,3,0,0,1-3-3v-.44a3,3,0,0,1,6,0v.44A3,3,0,0,1,17.63,48.35Z'/%3E%3Cpath class='cls-1' d='M17.63,59.82a3,3,0,0,1-3-3v-.44a3,3,0,0,1,6,0v.44A3,3,0,0,1,17.63,59.82Z'/%3E%3Cpath class='cls-1' d='M17.63,71.29a3,3,0,0,1-3-3v-.44a3,3,0,0,1,6,0v.44A3,3,0,0,1,17.63,71.29Z'/%3E%3Cpath class='cls-1' d='M61.33,34.15h-57a3,3,0,1,1,0-6h57a3,3,0,0,1,0,6Z'/%3E%3C/svg%3E"); }
  #tx-solr-search .search-result .header h3, #tx-solr-search .search-result .header .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset #tx-solr-search .search-result .header legend {
    margin-bottom: 1.25rem; }
    #tx-solr-search .search-result .header h3 > a, #tx-solr-search .search-result .header .ce.ce--vd_job_form fieldset legend > a, .ce.ce--vd_job_form fieldset #tx-solr-search .search-result .header legend > a {
      color: #015D7D;
      font-weight: 600;
      text-decoration: none; }
  #tx-solr-search .search-result .results-teaser {
    max-width: 920px; }
    #tx-solr-search .search-result .results-teaser .highlight {
      font-weight: 700; }
    #tx-solr-search .search-result .results-teaser .address {
      font-size: 18px;
      font-size: 1.125rem;
      font-style: normal;
      line-height: 1.3; }
  #tx-solr-search .search-result .aside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    padding: 0.625rem 0 1.25rem 0; }
    #tx-solr-search .search-result .aside__label, #tx-solr-search .search-result .aside__value {
      display: block;
      font-size: 18px;
      font-size: 1.125rem; }
    #tx-solr-search .search-result .aside__label {
      font-weight: 700;
      margin-bottom: 0.5rem; }
    #tx-solr-search .search-result .aside__value {
      max-width: 300px; }
    #tx-solr-search .search-result .aside__date, #tx-solr-search .search-result .aside__relevance {
      margin-bottom: 0.9375rem; }
    #tx-solr-search .search-result .aside > :last-child {
      margin: auto 0 0 0; }
    #tx-solr-search .search-result .aside .progress-bar {
      background-color: #36AFA4 !important; }

.vd-dropdown-search {
  position: absolute;
  z-index: 6;
  width: 100%;
  background-color: #F0F0F0;
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  height: 0px;
  visibility: hidden;
  -webkit-transition: all 230ms ease-in-out;
  transition: all 230ms ease-in-out; }
  .vd-dropdown-search .vd-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #F0F0F0;
    position: relative;
    padding-left: 1.25rem;
    padding-right: 1.25rem; }
  .vd-dropdown-search .vd-dropdown-search__title {
    margin: 0; }
  .vd-dropdown-search .vd-dropdown-search__teaser {
    width: calc((100% / 12) * 5);
    float: left; }
    @media only screen and (max-width: 991px) {
      .vd-dropdown-search .vd-dropdown-search__teaser {
        display: none; } }
  .vd-dropdown-search .search-input {
    width: calc((100% / 12) * 7);
    float: left; }
    @media only screen and (max-width: 991px) {
      .vd-dropdown-search .search-input {
        width: 100%; } }
  .vd-dropdown-search .vd-dropdown-search__close {
    position: absolute;
    z-index: 9;
    right: 1.25rem;
    top: 15px;
    width: 24px;
    cursor: pointer; }
  .vd-dropdown-search .search-form__submit {
    width: 59px;
    height: 59px;
    margin-left: 0px;
    margin-right: 0px; }

/*
#tx-solr-searchresults {
    padding-top: rem(40);
    padding-bottom: rem(40);
    
    .results-list {
        .list-group__item {
            border-bottom: 1px solid $blue-dark;
            padding: 1.25rem 0;
            margin-bottom: .625rem;
        }
    }
    
}
*/
.tx_solr .vd-search-results .tx-solr-search-info {
  display: none; }

body.open_search .vd-dropdown-search {
  height: 473px !important;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  visibility: visible;
  -webkit-transition: all 230ms ease-in-out;
  transition: all 230ms ease-in-out; }
  @media only screen and (max-width: 767px) {
    body.open_search .vd-dropdown-search {
      height: 300px !important; } }

body:not(.template--startpage) .vd-dropdown-search {
  top: 151px;
  left: 0px; }

@media only screen and (min-width: 768px) {
  .ce.ce--solr_pi_results .search-form__wrapper > input {
    font-size: 22px;
    font-size: 1.375rem; }
  .ce.ce--solr_pi_results .search-result .results-teaser .result-content {
    margin-bottom: 0; } }

main > .ce.ce--vd_event_teaser .single-event-teaser__wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 2.5rem 1em; }

main > .ce.ce--vd_event_teaser .single-event-teaser.layout--default .single-event-teaser__wrapper {
  background-color: #D9EDEE; }

main > .ce.ce--vd_event_teaser .single-event-teaser.layout--default .header {
  color: #00848d; }

main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_white__background_red .single-event-teaser__wrapper, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--front_white__background_red .single-event-teaser__wrapper {
  background-color: #ea534e; }

main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_white__background_red .header, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--front_white__background_red .header {
  color: #fff; }

main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_white__background_red .ce__dates *, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--front_white__background_red .ce__dates * {
  color: #fff; }

main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_white__background_red .vd-button--ghost, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_white__background_red #cookie_approval .button, #cookie_approval main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_white__background_red .button, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--front_white__background_red .vd-button--ghost, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--front_white__background_red #cookie_approval .button, #cookie_approval main > .ce.ce--vd_event_teaser .single-event-teaser.layout--front_white__background_red .button {
  color: #fff;
  border-color: #fff; }
  main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_white__background_red .vd-button--ghost:hover, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_white__background_red #cookie_approval .button:hover, #cookie_approval main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_white__background_red .button:hover, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_white__background_red .vd-button--ghost:focus, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_white__background_red #cookie_approval .button:focus, #cookie_approval main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_white__background_red .button:focus, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--front_white__background_red .vd-button--ghost:hover, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--front_white__background_red #cookie_approval .button:hover, #cookie_approval main > .ce.ce--vd_event_teaser .single-event-teaser.layout--front_white__background_red .button:hover, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--front_white__background_red .vd-button--ghost:focus, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--front_white__background_red #cookie_approval .button:focus, #cookie_approval main > .ce.ce--vd_event_teaser .single-event-teaser.layout--front_white__background_red .button:focus {
    background-color: #fff !important;
    color: #ea534e !important; }

main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_red__background_white .single-event-teaser__wrapper {
  background-color: #fff;
  border: 1px solid #d5d5d5; }

main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_red__background_white .header {
  color: #ea534e; }

main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_red__background_white .ce__dates * {
  color: #ea534e; }

main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_red__background_white .vd-button--ghost, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_red__background_white #cookie_approval .button, #cookie_approval main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_red__background_white .button {
  color: #ea534e;
  border-color: #ea534e; }
  main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_red__background_white .vd-button--ghost:hover, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_red__background_white #cookie_approval .button:hover, #cookie_approval main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_red__background_white .button:hover, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_red__background_white .vd-button--ghost:focus, main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_red__background_white #cookie_approval .button:focus, #cookie_approval main > .ce.ce--vd_event_teaser .single-event-teaser.layout--logo__front_red__background_white .button:focus {
    background-color: #ea534e !important;
    color: #fff !important; }

.ce.ce--vd_event_teaser .icon {
  width: 40px;
  height: auto; }
  .ce.ce--vd_event_teaser .icon svg {
    width: 100%;
    height: 100%; }

.ce.ce--vd_event_teaser .ce__dates {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 600;
  margin: 1.25rem 0; }
  @media only screen and (min-width: 768px) {
    .ce.ce--vd_event_teaser .ce__dates {
      font-size: 33px;
      font-size: 2.0625rem; } }

.ce.ce--vd_event_teaser .header__title {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #00848d; }

.ce.ce--vd_event_teaser .ce__teaser > p {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600; }

.ce.ce--vd_events_list .ce.ce--vd_event_teaser, .ce.ce--vd_events_search .ce.ce--vd_event_teaser {
  margin: 0 0 2.5rem 0; }
  .ce.ce--vd_events_list .ce.ce--vd_event_teaser .vd-wrapper, .ce.ce--vd_events_search .ce.ce--vd_event_teaser .vd-wrapper {
    background-color: #D9EDEE;
    padding: 1.875rem 1.25rem; }

@media only screen and (min-width: 768px) {
  .ce.ce--vd_event_teaser .header__title {
    font-size: 32px;
    font-size: 2rem; }
  main > .ce.ce--vd_event_teaser .single-event-teaser__wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 3.75rem 1.875rem; }
  main > .ce.ce--vd_event_teaser .single-event-teaser .header {
    max-width: 700px; }
    main > .ce.ce--vd_event_teaser .single-event-teaser .header__title {
      margin-bottom: 0.625rem; }
    main > .ce.ce--vd_event_teaser .single-event-teaser .header__subtitle {
      font-size: 40px;
      font-size: 2.5rem; } }

.ce.ce--vd_departments_list {
  padding-bottom: 5rem;
  padding-top: 5rem; }
  @media only screen and (max-width: 767px) {
    .ce.ce--vd_departments_list {
      padding-bottom: 2.5rem;
      padding-top: 2.5rem; } }
  .ce.ce--vd_departments_list .ce__title:after {
    content: "";
    display: block;
    border-bottom: 2px solid #e8eef0; }
  .ce.ce--vd_departments_list .ce__title h1,
  .ce.ce--vd_departments_list .ce__title h2,
  .ce.ce--vd_departments_list .ce__title h3,
  .ce.ce--vd_departments_list .ce__title .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_departments_list .ce__title legend,
  .ce.ce--vd_departments_list .ce__title h4 {
    color: #015D7D;
    margin-bottom: 0;
    padding-bottom: 2.1875rem;
    line-height: 1; }
  .ce.ce--vd_departments_list .ce__title .subtitle {
    color: var(--c-font-base);
    font-size: 25px;
    font-size: 1.5625rem;
    margin-top: 0;
    padding-bottom: 2.0625rem;
    font-weight: 600; }
    @media only screen and (min-width: 789px) {
      .ce.ce--vd_departments_list .ce__title .subtitle {
        font-size: 32px;
        font-size: 2rem; } }
  .ce.ce--vd_departments_list .section--department {
    margin-top: 5rem; }
  .ce.ce--vd_departments_list .vd-result-list > :nth-child(even) {
    background-color: #f6f9fb; }
  .ce.ce--vd_departments_list .vd-result-list__item {
    margin-bottom: 0;
    padding: 1.25rem 0 1.25rem 0.3125rem; }
    .ce.ce--vd_departments_list .vd-result-list__item .row > *:not(:last-child) {
      margin-bottom: 1.25rem; }
      @media only screen and (min-width: 789px) {
        .ce.ce--vd_departments_list .vd-result-list__item .row > *:not(:last-child) {
          margin-bottom: 0; } }
    .ce.ce--vd_departments_list .vd-result-list__item h3, .ce.ce--vd_departments_list .vd-result-list__item .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce.ce--vd_departments_list .vd-result-list__item legend {
      font-size: 25px;
      font-size: 1.5625rem;
      margin: 0; }
    .ce.ce--vd_departments_list .vd-result-list__item .subtitle {
      font-size: 20px;
      font-size: 1.25rem;
      font-weight: 400;
      margin-top: 0.625rem; }
    .ce.ce--vd_departments_list .vd-result-list__item .label {
      font-size: 18px;
      font-size: 1.125rem;
      line-height: 1.4; }
    .ce.ce--vd_departments_list .vd-result-list__item p {
      margin-bottom: 0;
      line-height: 1.4; }
      .ce.ce--vd_departments_list .vd-result-list__item p strong {
        display: block; }
        @media only screen and (min-width: 789px) {
          .ce.ce--vd_departments_list .vd-result-list__item p strong {
            display: inline; } }
    .ce.ce--vd_departments_list .vd-result-list__item ul {
      list-style: none;
      padding-left: 0;
      margin: 0; }
      @media only screen and (min-width: 789px) {
        .ce.ce--vd_departments_list .vd-result-list__item ul {
          min-height: 70px; } }
      .ce.ce--vd_departments_list .vd-result-list__item ul li {
        font-size: 18px;
        font-size: 1.125rem;
        margin-bottom: 0; }
    .ce.ce--vd_departments_list .vd-result-list__item .vd-image--photo {
      width: 100px;
      height: 100px; }
      .ce.ce--vd_departments_list .vd-result-list__item .vd-image--photo img {
        border-radius: 100%; }

.ce.ce--vd_divisions_list {
  padding-bottom: 5rem;
  padding-top: 5rem; }
  @media only screen and (max-width: 767px) {
    .ce.ce--vd_divisions_list {
      padding-bottom: 2.5rem;
      padding-top: 2.5rem; } }
  .ce.ce--vd_divisions_list .ce__title:after {
    content: "";
    display: block;
    border-bottom: 2px solid #e8eef0; }
  .ce.ce--vd_divisions_list .ce__title h1,
  .ce.ce--vd_divisions_list .ce__title h2,
  .ce.ce--vd_divisions_list .ce__title h3,
  .ce.ce--vd_divisions_list .ce__title .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_divisions_list .ce__title legend,
  .ce.ce--vd_divisions_list .ce__title h4 {
    color: #015D7D;
    margin-bottom: 0;
    padding-bottom: 2.1875rem;
    line-height: 1; }
  .ce.ce--vd_divisions_list .ce__title .subtitle {
    color: var(--c-font-base);
    font-size: 25px;
    font-size: 1.5625rem;
    margin-top: 0;
    padding-bottom: 2.0625rem;
    font-weight: 600; }
    @media only screen and (min-width: 789px) {
      .ce.ce--vd_divisions_list .ce__title .subtitle {
        font-size: 32px;
        font-size: 2rem; } }
  .ce.ce--vd_divisions_list .section--department {
    margin-top: 5rem; }
  .ce.ce--vd_divisions_list .vd-result-list > :nth-child(even) {
    background-color: #f6f9fb; }
  .ce.ce--vd_divisions_list .vd-result-list__item {
    margin-bottom: 0;
    padding: 1.25rem 0 1.25rem 0.3125rem; }
    .ce.ce--vd_divisions_list .vd-result-list__item .row > *:not(:last-child) {
      margin-bottom: 1.25rem; }
      @media only screen and (min-width: 789px) {
        .ce.ce--vd_divisions_list .vd-result-list__item .row > *:not(:last-child) {
          margin-bottom: 0; } }
    .ce.ce--vd_divisions_list .vd-result-list__item h3, .ce.ce--vd_divisions_list .vd-result-list__item .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce.ce--vd_divisions_list .vd-result-list__item legend {
      font-size: 25px;
      font-size: 1.5625rem;
      margin: 0; }
    .ce.ce--vd_divisions_list .vd-result-list__item .subtitle {
      font-size: 20px;
      font-size: 1.25rem;
      font-weight: 400;
      margin-top: 0.625rem; }
    .ce.ce--vd_divisions_list .vd-result-list__item .label {
      font-size: 18px;
      font-size: 1.125rem;
      line-height: 1.4; }
    .ce.ce--vd_divisions_list .vd-result-list__item p {
      margin-bottom: 0;
      line-height: 1.4; }
      .ce.ce--vd_divisions_list .vd-result-list__item p strong {
        display: block; }
        @media only screen and (min-width: 789px) {
          .ce.ce--vd_divisions_list .vd-result-list__item p strong {
            display: inline; } }
    .ce.ce--vd_divisions_list .vd-result-list__item ul {
      list-style: none;
      padding-left: 0;
      margin: 0; }
      @media only screen and (min-width: 789px) {
        .ce.ce--vd_divisions_list .vd-result-list__item ul {
          min-height: 70px; } }
      .ce.ce--vd_divisions_list .vd-result-list__item ul li {
        font-size: 18px;
        font-size: 1.125rem;
        margin-bottom: 0; }
    .ce.ce--vd_divisions_list .vd-result-list__item .vd-image--photo {
      width: 100px;
      height: 100px; }
      .ce.ce--vd_divisions_list .vd-result-list__item .vd-image--photo img {
        border-radius: 100%; }

.ce.ce--vd_persons_list {
  padding-bottom: 5rem;
  padding-top: 5rem; }
  @media only screen and (max-width: 767px) {
    .ce.ce--vd_persons_list {
      padding-bottom: 2.5rem;
      padding-top: 2.5rem; } }
  .ce.ce--vd_persons_list .ce__title:after {
    content: "";
    display: block;
    border-bottom: 2px solid #e8eef0; }
  .ce.ce--vd_persons_list .ce__title h1,
  .ce.ce--vd_persons_list .ce__title h2,
  .ce.ce--vd_persons_list .ce__title h3,
  .ce.ce--vd_persons_list .ce__title .ce.ce--vd_job_form fieldset legend,
  .ce.ce--vd_job_form fieldset .ce.ce--vd_persons_list .ce__title legend,
  .ce.ce--vd_persons_list .ce__title h4 {
    color: #015D7D;
    margin-bottom: 0;
    padding-bottom: 2.1875rem;
    line-height: 1; }
  .ce.ce--vd_persons_list .ce__title .subtitle {
    color: var(--c-font-base);
    font-size: 25px;
    font-size: 1.5625rem;
    margin-top: 0;
    padding-bottom: 2.0625rem;
    font-weight: 600; }
    @media only screen and (min-width: 789px) {
      .ce.ce--vd_persons_list .ce__title .subtitle {
        font-size: 32px;
        font-size: 2rem; } }
  .ce.ce--vd_persons_list .section--department {
    margin-top: 5rem; }
  .ce.ce--vd_persons_list .vd-result-list > :nth-child(even) {
    background-color: #f6f9fb; }
  .ce.ce--vd_persons_list .vd-result-list__item {
    margin-bottom: 0;
    padding: 1.25rem 0 1.25rem 0.3125rem; }
    .ce.ce--vd_persons_list .vd-result-list__item .row > *:not(:last-child) {
      margin-bottom: 1.25rem; }
      @media only screen and (min-width: 789px) {
        .ce.ce--vd_persons_list .vd-result-list__item .row > *:not(:last-child) {
          margin-bottom: 0; } }
    .ce.ce--vd_persons_list .vd-result-list__item h3, .ce.ce--vd_persons_list .vd-result-list__item .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce.ce--vd_persons_list .vd-result-list__item legend {
      font-size: 25px;
      font-size: 1.5625rem;
      margin: 0; }
    .ce.ce--vd_persons_list .vd-result-list__item .subtitle {
      font-size: 20px;
      font-size: 1.25rem;
      font-weight: 400;
      margin-top: 0.625rem; }
    .ce.ce--vd_persons_list .vd-result-list__item .label {
      font-size: 18px;
      font-size: 1.125rem;
      line-height: 1.4; }
    .ce.ce--vd_persons_list .vd-result-list__item p {
      margin-bottom: 0;
      line-height: 1.4; }
      .ce.ce--vd_persons_list .vd-result-list__item p strong {
        display: block; }
        @media only screen and (min-width: 789px) {
          .ce.ce--vd_persons_list .vd-result-list__item p strong {
            display: inline; } }
    .ce.ce--vd_persons_list .vd-result-list__item ul {
      list-style: none;
      padding-left: 0;
      margin: 0; }
      @media only screen and (min-width: 789px) {
        .ce.ce--vd_persons_list .vd-result-list__item ul {
          min-height: 70px; } }
      .ce.ce--vd_persons_list .vd-result-list__item ul li {
        font-size: 18px;
        font-size: 1.125rem;
        margin-bottom: 0; }
    .ce.ce--vd_persons_list .vd-result-list__item .vd-image--photo {
      width: 100px;
      height: 100px; }
      .ce.ce--vd_persons_list .vd-result-list__item .vd-image--photo img {
        border-radius: 100%; }
  @media only screen and (min-width: 789px) {
    .ce.ce--vd_persons_list .vd-result-list__item.has-image {
      padding-top: 10px;
      padding-top: 10px; }
      .ce.ce--vd_persons_list .vd-result-list__item.has-image .row {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }

.ce.ce--vd_contact_card:not(.ce-layout--aside-box), .ce.ce--vd_department_card:not(.ce-layout--aside-box) {
  padding-bottom: 5rem;
  padding-top: 5rem; }

.ce.ce--vd_contact_card.ce-layout--aside-box .ce__title, .ce-layout--aside-box.ce.ce--vd_department_card .ce__title {
  padding: 1.25rem 1.25rem 0; }
  .ce.ce--vd_contact_card.ce-layout--aside-box .ce__title h2, .ce-layout--aside-box.ce.ce--vd_department_card .ce__title h2, .ce.ce--vd_contact_card.ce-layout--aside-box .ce__title h3, .ce-layout--aside-box.ce.ce--vd_department_card .ce__title h3, .ce.ce--vd_contact_card.ce-layout--aside-box .ce__title .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce.ce--vd_contact_card.ce-layout--aside-box .ce__title legend, .ce-layout--aside-box.ce.ce--vd_department_card .ce__title .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce-layout--aside-box.ce.ce--vd_department_card .ce__title legend, .ce.ce--vd_contact_card.ce-layout--aside-box .ce__title h4, .ce-layout--aside-box.ce.ce--vd_department_card .ce__title h4 {
    font-size: 24px;
    font-size: 1.5rem; }

.ce.ce--vd_contact_card.ce-layout--aside-box .ce__content, .ce-layout--aside-box.ce.ce--vd_department_card .ce__content {
  padding: 0 1.25rem 1.25rem; }
  .ce.ce--vd_contact_card.ce-layout--aside-box .ce__content .card__header, .ce-layout--aside-box.ce.ce--vd_department_card .ce__content .card__header {
    padding-right: 10px; }
  .ce.ce--vd_contact_card.ce-layout--aside-box .ce__content p, .ce-layout--aside-box.ce.ce--vd_department_card .ce__content p {
    margin: 0; }

.ce.ce--vd_contact_card .card-container:before, .ce.ce--vd_department_card .card-container:before, .ce.ce--vd_contact_card .card-container:after, .ce.ce--vd_department_card .card-container:after, .ce.ce--vd_contact_card .card-container::before, .ce.ce--vd_department_card .card-container::before, .ce.ce--vd_contact_card .card-container::after, .ce.ce--vd_department_card .card-container::after {
  content: "";
  display: block; }

.ce.ce--vd_contact_card .card-container:after, .ce.ce--vd_department_card .card-container:after, .ce.ce--vd_contact_card .card-container::after, .ce.ce--vd_department_card .card-container::after {
  clear: both; }

.ce.ce--vd_contact_card .card-container .card-data:not(.card-data--extended), .ce.ce--vd_department_card .card-container .card-data:not(.card-data--extended) {
  float: left;
  width: 70%; }

.ce.ce--vd_contact_card .card-container .card-data--extended, .ce.ce--vd_department_card .card-container .card-data--extended {
  padding-top: 1.25rem;
  clear: both; }

.ce.ce--vd_contact_card .card-container .card-visual, .ce.ce--vd_department_card .card-container .card-visual {
  float: left;
  width: 30%; }

.ce.ce--vd_contact_card .card-section-title, .ce.ce--vd_department_card .card-section-title {
  padding-bottom: 10px;
  padding-top: 10px;
  line-height: initial; }
  .ce.ce--vd_contact_card .card-section-title strong, .ce.ce--vd_department_card .card-section-title strong {
    font-size: 102.5%; }

.ce.ce--vd_department_card .card-section-title {
  padding-bottom: 0px !important; }

.ce.ce--vd_department_card .contact__email {
  margin-bottom: 10px !important; }

.ce.ce--vd_department_card .contact-persons {
  margin: 0; }
  .ce.ce--vd_department_card .contact-persons li {
    margin: 0;
    margin-bottom: 10px !important; }
    .ce.ce--vd_department_card .contact-persons li .contact__telephone {
      display: block; }
    .ce.ce--vd_department_card .contact-persons li .contact__name {
      display: block;
      max-width: 100%; }
      @media only screen and (orientation: portrait) {
        .ce.ce--vd_department_card .contact-persons li .contact__name {
          max-width: 100%; } }

.dvinci-job-widget > * {
  font-size: 18px;
  font-size: 1.125rem; }

.dvinci-job-widget .grid > :nth-child(2) [class*="col"] {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%; }

.dvinci-job-widget .alert-info {
  color: #000;
  border-color: #4da9af; }

.dvinci-job-widget .dvinci-loading-indicator {
  margin-top: 1.875rem; }
  .dvinci-job-widget .dvinci-loading-indicator .dvinci-loader-bar {
    background-color: #00848d;
    border: none; }

.dvinci-job-widget .dvinci-job-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .dvinci-job-widget .dvinci-job-filters > * {
    width: 100%; }
    @media only screen and (min-width: 768px) {
      .dvinci-job-widget .dvinci-job-filters > * {
        width: 370px; } }
    .dvinci-job-widget .dvinci-job-filters > *:not(:last-child) {
      margin-right: 1.25rem; }
  .dvinci-job-widget .dvinci-job-filters .dvinci-job-filter {
    position: relative;
    margin-bottom: 2.5rem; }
    .dvinci-job-widget .dvinci-job-filters .dvinci-job-filter .dvinci-filter-heading {
      position: absolute;
      bottom: -30px;
      left: 0;
      color: #00848d;
      font-weight: 400; }
    .dvinci-job-widget .dvinci-job-filters .dvinci-job-filter .ui-select-container {
      -webkit-box-shadow: none;
              box-shadow: none;
      border: none;
      border-radius: 0px;
      border-bottom: 2px solid #00848d;
      padding-left: 0; }
      .dvinci-job-widget .dvinci-job-filters .dvinci-job-filter .ui-select-container input {
        width: 100%;
        height: 50px;
        border: 1px solid transparent;
        font-size: 18px;
        font-size: 1.125rem;
        color: #000;
        padding: 0;
        margin-bottom: 0.3125rem;
        background-color: transparent;
        -webkit-transition: background-color 350ms ease-in-out;
        transition: background-color 350ms ease-in-out;
        padding: 0 0 0 0.625rem; }
        .dvinci-job-widget .dvinci-job-filters .dvinci-job-filter .ui-select-container input:focus {
          background-color: #D9EDEE !important;
          border: 1px solid #00848d;
          -webkit-transition: background-color 350ms ease-in-out;
          transition: background-color 350ms ease-in-out; }
    .dvinci-job-widget .dvinci-job-filters .dvinci-job-filter .ui-select-choices.dropdown-menu {
      top: 110%; }
    .dvinci-job-widget .dvinci-job-filters .dvinci-job-filter .ui-select-choices .ui-select-choices-row.active > span {
      color: #000;
      background-color: #D9EDEE; }
    .dvinci-job-widget .dvinci-job-filters .dvinci-job-filter .ui-select-choices .ui-select-choices-row .dvinci-filter-option-value {
      height: 15px; }
    .dvinci-job-widget .dvinci-job-filters .dvinci-job-filter .ui-select-match-item {
      font-size: 14px;
      font-size: 0.875rem;
      font-weight: 600;
      border: none;
      background-color: #D9EDEE;
      color: #000;
      padding: 0.625rem; }
      .dvinci-job-widget .dvinci-job-filters .dvinci-job-filter .ui-select-match-item .ui-select-match-close {
        top: 10px;
        right: 7px; }
        .dvinci-job-widget .dvinci-job-filters .dvinci-job-filter .ui-select-match-item .ui-select-match-close + span {
          height: 15px; }

.dvinci-job-widget .dvinci-job-list {
  margin-top: 3.125rem !important;
  max-width: 1100px; }
  .dvinci-job-widget .dvinci-job-list .dvinci-job-entry {
    background-color: #fff;
    border: none;
    border-radius: 0px;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-bottom: 1px solid #00848d;
    font-size: 18px;
    font-size: 1.125rem; }
    .dvinci-job-widget .dvinci-job-list .dvinci-job-entry .dvinci-job-position {
      font-size: 22px;
      font-size: 1.375rem;
      color: #00848d;
      line-height: 1.5; }
      .dvinci-job-widget .dvinci-job-list .dvinci-job-entry .dvinci-job-position:hover, .dvinci-job-widget .dvinci-job-list .dvinci-job-entry .dvinci-job-position:focus {
        text-decoration: underline; }
    .dvinci-job-widget .dvinci-job-list .dvinci-job-entry .dvinci-job-categories-list li small,
    .dvinci-job-widget .dvinci-job-list .dvinci-job-entry .dvinci-job-locations-list li small {
      font-size: 16px;
      font-size: 1rem;
      color: #000;
      line-height: 1.5; }

.dvinci-job-widget .dvinci-job-list-pagination {
  margin-top: 1.875rem !important; }

@-webkit-keyframes dvinci-loading {
  0% {
    -webkit-transform: scale3d(0.8, 0.4, 1);
    transform: scale3d(0.8, 0.4, 1);
    background-color: #D9EDEE;
    border: none;
    border-radius: 4px; } }

@keyframes dvinci-loading {
  0% {
    -webkit-transform: scale3d(0.8, 0.4, 1);
    transform: scale3d(0.8, 0.4, 1);
    background-color: #D9EDEE;
    border: none;
    border-radius: 4px; } }

.ce.ce--vd_reviewer_detail .ce.ce--vd_contact_card, .ce.ce--vd_reviewer_detail .ce.ce--vd_department_card {
  margin: 1.25rem 0;
  padding-left: 0;
  padding-right: 0; }
  @media only screen and (min-width: 991px) {
    .ce.ce--vd_reviewer_detail .ce.ce--vd_contact_card, .ce.ce--vd_reviewer_detail .ce.ce--vd_department_card {
      margin: 0.9375rem 0 0 0; } }

.ce.ce--vd_reviewer_detail .reviewer__details {
  margin-bottom: 2.5rem; }
  .ce.ce--vd_reviewer_detail .reviewer__details h3, .ce.ce--vd_reviewer_detail .reviewer__details .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce.ce--vd_reviewer_detail .reviewer__details legend {
    margin-bottom: 1.25rem;
    font-size: 25px;
    font-size: 1.5625rem; }

.ce.ce--vd_authority_detail h3, .ce.ce--vd_authority_detail .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce.ce--vd_authority_detail legend {
  margin-bottom: 1.25rem;
  font-size: 25px;
  font-size: 1.5625rem; }

.ce.ce--vd_authority_detail .ce.ce--vd_contact_card, .ce.ce--vd_authority_detail .ce.ce--vd_department_card {
  margin: 1.25rem 0;
  padding-left: 0;
  padding-right: 0; }

.ce.ce--vd_authority_detail .is-expired-date {
  color: var(--c-error); }

.ce.ce--vd_course_detail .ce__content h2 {
  color: #00848d;
  margin-bottom: 1.25rem; }

.ce.ce--vd_course_detail .ce__content .ce__content > * {
  font-size: 18px;
  font-size: 1.125rem; }

.ce.ce--vd_job_form {
  width: 100%; }
  .ce.ce--vd_job_form form {
    background: #FAFAFA;
    padding: 0.9375rem; }
    @media only screen and (min-width: 768px) {
      .ce.ce--vd_job_form form {
        padding: 1.875rem; } }
  .ce.ce--vd_job_form fieldset {
    border: none;
    padding: 0;
    margin: 0; }
    .ce.ce--vd_job_form fieldset legend {
      display: none; }
  .ce.ce--vd_job_form .field,
  .ce.ce--vd_job_form .event-registration-row,
  .ce.ce--vd_job_form .form-group {
    position: relative;
    max-width: 780px;
    margin-bottom: 2.5rem; }
    .ce.ce--vd_job_form .field .input:not(.checkbox),
    .ce.ce--vd_job_form .field .checkboxes-container,
    .ce.ce--vd_job_form .event-registration-row .input:not(.checkbox),
    .ce.ce--vd_job_form .event-registration-row .checkboxes-container,
    .ce.ce--vd_job_form .form-group .input:not(.checkbox),
    .ce.ce--vd_job_form .form-group .checkboxes-container {
      position: relative;
      border-bottom: 2px solid #00848d;
      margin-bottom: 0.3125rem; }
    .ce.ce--vd_job_form .field--is-intro,
    .ce.ce--vd_job_form .event-registration-row--is-intro,
    .ce.ce--vd_job_form .form-group--is-intro {
      margin-bottom: 0; }
    .ce.ce--vd_job_form .field .control-error,
    .ce.ce--vd_job_form .event-registration-row .control-error,
    .ce.ce--vd_job_form .form-group .control-error {
      color: var(--c-error);
      font-size: 14px;
      font-size: 0.875rem;
      display: inline-block;
      padding-top: 5px; }
    .ce.ce--vd_job_form .field.has-error .input,
    .ce.ce--vd_job_form .field.has-error .checkboxes-container,
    .ce.ce--vd_job_form .event-registration-row.has-error .input,
    .ce.ce--vd_job_form .event-registration-row.has-error .checkboxes-container,
    .ce.ce--vd_job_form .form-group.has-error .input,
    .ce.ce--vd_job_form .form-group.has-error .checkboxes-container {
      border-bottom-color: var(--c-error); }
    .ce.ce--vd_job_form .field.has-error .checkmark,
    .ce.ce--vd_job_form .event-registration-row.has-error .checkmark,
    .ce.ce--vd_job_form .form-group.has-error .checkmark {
      border-color: var(--c-error); }
    .ce.ce--vd_job_form .field.has-error .control-label,
    .ce.ce--vd_job_form .event-registration-row.has-error .control-label,
    .ce.ce--vd_job_form .form-group.has-error .control-label {
      color: var(--c-error); }
    .ce.ce--vd_job_form .field.has-error .control-checkbox span,
    .ce.ce--vd_job_form .field.has-error .form-check-label span,
    .ce.ce--vd_job_form .event-registration-row.has-error .control-checkbox span,
    .ce.ce--vd_job_form .event-registration-row.has-error .form-check-label span,
    .ce.ce--vd_job_form .form-group.has-error .control-checkbox span,
    .ce.ce--vd_job_form .form-group.has-error .form-check-label span {
      color: var(--c-error); }
    .ce.ce--vd_job_form .field .help-block.error,
    .ce.ce--vd_job_form .event-registration-row .help-block.error,
    .ce.ce--vd_job_form .form-group .help-block.error {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      color: #fff;
      background-color: var(--c-error);
      font-size: 22px;
      font-size: 1.375rem;
      max-width: 780px;
      padding: 0.625rem 1.25rem;
      margin-top: 0.625rem; }
      .ce.ce--vd_job_form .field .help-block.error:before,
      .ce.ce--vd_job_form .event-registration-row .help-block.error:before,
      .ce.ce--vd_job_form .form-group .help-block.error:before {
        content: "";
        display: inline-block;
        background-size: 20px;
        width: 20px;
        height: 20px;
        margin-right: 20px;
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2036%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%3E%3Cpath%20d%3D%22m3.2%203.2%2029.08%2029.08%22%2F%3E%3Cpath%20d%3D%22m32.28%203.2-29.08%2029.08%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat; }
    .ce.ce--vd_job_form .field.date-field,
    .ce.ce--vd_job_form .event-registration-row.date-field,
    .ce.ce--vd_job_form .form-group.date-field {
      max-width: 380px; }
    .ce.ce--vd_job_form .field.radiobutton-field > .input,
    .ce.ce--vd_job_form .event-registration-row.radiobutton-field > .input,
    .ce.ce--vd_job_form .form-group.radiobutton-field > .input {
      border: none; }
    .ce.ce--vd_job_form .field.checkbox-field,
    .ce.ce--vd_job_form .event-registration-row.checkbox-field,
    .ce.ce--vd_job_form .form-group.checkbox-field {
      border: none; }
  .ce.ce--vd_job_form label,
  .ce.ce--vd_job_form .control-label {
    font-size: 14px;
    font-size: 0.875rem;
    color: #00848d; }
    .ce.ce--vd_job_form label--top,
    .ce.ce--vd_job_form .control-label--top {
      margin-bottom: 0.9375rem; }
  .ce.ce--vd_job_form input[type="text"],
  .ce.ce--vd_job_form input[type="email"],
  .ce.ce--vd_job_form input[type="tel"],
  .ce.ce--vd_job_form input[type="url"],
  .ce.ce--vd_job_form textarea,
  .ce.ce--vd_job_form select {
    width: 100%;
    height: 60px;
    border: 1px solid transparent;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 0 0 1.25rem;
    margin-bottom: 0.3125rem;
    background-color: transparent;
    -webkit-transition: background-color 350ms ease-in-out;
    transition: background-color 350ms ease-in-out; }
    .ce.ce--vd_job_form input[type="text"]::-webkit-input-placeholder, .ce.ce--vd_job_form input[type="email"]::-webkit-input-placeholder, .ce.ce--vd_job_form input[type="tel"]::-webkit-input-placeholder, .ce.ce--vd_job_form input[type="url"]::-webkit-input-placeholder, .ce.ce--vd_job_form textarea::-webkit-input-placeholder, .ce.ce--vd_job_form select::-webkit-input-placeholder {
      color: #737373; }
    .ce.ce--vd_job_form input[type="text"]::-moz-placeholder, .ce.ce--vd_job_form input[type="email"]::-moz-placeholder, .ce.ce--vd_job_form input[type="tel"]::-moz-placeholder, .ce.ce--vd_job_form input[type="url"]::-moz-placeholder, .ce.ce--vd_job_form textarea::-moz-placeholder, .ce.ce--vd_job_form select::-moz-placeholder {
      color: #737373; }
    .ce.ce--vd_job_form input[type="text"]:-ms-input-placeholder, .ce.ce--vd_job_form input[type="email"]:-ms-input-placeholder, .ce.ce--vd_job_form input[type="tel"]:-ms-input-placeholder, .ce.ce--vd_job_form input[type="url"]:-ms-input-placeholder, .ce.ce--vd_job_form textarea:-ms-input-placeholder, .ce.ce--vd_job_form select:-ms-input-placeholder {
      color: #737373; }
    .ce.ce--vd_job_form input[type="text"]::-ms-input-placeholder, .ce.ce--vd_job_form input[type="email"]::-ms-input-placeholder, .ce.ce--vd_job_form input[type="tel"]::-ms-input-placeholder, .ce.ce--vd_job_form input[type="url"]::-ms-input-placeholder, .ce.ce--vd_job_form textarea::-ms-input-placeholder, .ce.ce--vd_job_form select::-ms-input-placeholder {
      color: #737373; }
    .ce.ce--vd_job_form input[type="text"]::placeholder,
    .ce.ce--vd_job_form input[type="email"]::placeholder,
    .ce.ce--vd_job_form input[type="tel"]::placeholder,
    .ce.ce--vd_job_form input[type="url"]::placeholder,
    .ce.ce--vd_job_form textarea::placeholder,
    .ce.ce--vd_job_form select::placeholder {
      color: #737373; }
    .ce.ce--vd_job_form input[type="text"]:not(select):focus,
    .ce.ce--vd_job_form input[type="email"]:not(select):focus,
    .ce.ce--vd_job_form input[type="tel"]:not(select):focus,
    .ce.ce--vd_job_form input[type="url"]:not(select):focus,
    .ce.ce--vd_job_form textarea:not(select):focus,
    .ce.ce--vd_job_form select:not(select):focus {
      background-color: #D9EDEE;
      border: 1px solid #00848d;
      -webkit-transition: background-color 350ms ease-in-out;
      transition: background-color 350ms ease-in-out; }
    .ce.ce--vd_job_form input[type="text"].focus-white:not(select):focus,
    .ce.ce--vd_job_form input[type="email"].focus-white:not(select):focus,
    .ce.ce--vd_job_form input[type="tel"].focus-white:not(select):focus,
    .ce.ce--vd_job_form input[type="url"].focus-white:not(select):focus,
    .ce.ce--vd_job_form textarea.focus-white:not(select):focus,
    .ce.ce--vd_job_form select.focus-white:not(select):focus {
      background-color: #fff;
      border: none;
      -webkit-transition: background-color 350ms ease-in-out;
      transition: background-color 350ms ease-in-out; }
  .ce.ce--vd_job_form textarea {
    height: 150px;
    padding: 1.25rem;
    border: 1px solid #9D9D9C;
    background-color: transparent; }
    .ce.ce--vd_job_form textarea:focus {
      border: 1px solid #00848d; }
  .ce.ce--vd_job_form .radio-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #00848d !important;
    padding-bottom: 0.3125rem !important; }
    .ce.ce--vd_job_form .radio-group legend {
      display: block;
      position: absolute;
      bottom: -1.25rem;
      left: 0;
      font-size: 14px;
      font-size: 0.875rem;
      color: #00848d; }
  .ce.ce--vd_job_form .radio-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 1.25rem;
    height: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .ce.ce--vd_job_form .radio-wrapper label {
      font-size: 18px;
      font-size: 1.125rem;
      position: relative;
      color: #000000;
      bottom: auto;
      left: auto;
      width: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin: 0;
      cursor: pointer; }
    .ce.ce--vd_job_form .radio-wrapper [type="radio"]:checked,
    .ce.ce--vd_job_form .radio-wrapper [type="radio"]:not(:checked) {
      position: absolute;
      left: -9999px; }
    .ce.ce--vd_job_form .radio-wrapper [type="radio"]:checked + label,
    .ce.ce--vd_job_form .radio-wrapper [type="radio"]:not(:checked) + label {
      position: relative;
      padding-left: 28px;
      cursor: pointer;
      line-height: 20px;
      display: inline-block;
      color: #000; }
    .ce.ce--vd_job_form .radio-wrapper [type="radio"]:checked + label:before,
    .ce.ce--vd_job_form .radio-wrapper [type="radio"]:not(:checked) + label:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 18px;
      height: 18px;
      border-radius: 100%;
      background: #D9EDEE; }
    .ce.ce--vd_job_form .radio-wrapper [type="radio"]:checked + label:after,
    .ce.ce--vd_job_form .radio-wrapper [type="radio"]:not(:checked) + label:after {
      content: '';
      width: 10px;
      height: 10px;
      background: #00848d;
      position: absolute;
      top: 4px;
      left: 4px;
      border-radius: 100%;
      -webkit-transition: all 0.2s ease;
      transition: all 0.2s ease; }
    .ce.ce--vd_job_form .radio-wrapper [type="radio"]:not(:checked) + label:after {
      opacity: 0;
      -webkit-transform: scale(0);
              transform: scale(0); }
    .ce.ce--vd_job_form .radio-wrapper [type="radio"]:checked + label:after {
      opacity: 1;
      -webkit-transform: scale(1);
              transform: scale(1); }
  .ce.ce--vd_job_form .checkboxes-container:not(.checkboxes-container--fullsize) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .ce.ce--vd_job_form .checkboxes-container:not(.checkboxes-container--fullsize) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
    .ce.ce--vd_job_form .checkboxes-container:not(.checkboxes-container--fullsize) > * {
      margin-right: 20px;
      margin-bottom: 0.625rem;
      /*
            @media only screen and (min-width: 768px) {
                width: 30%;
                min-width: 210px;
            }
*/ }
  .ce.ce--vd_job_form .checkboxes-container:not(.checkboxes-container--fullsize) .checkbox-wrapper {
    display: inline-block; }
  .ce.ce--vd_job_form .checkboxes-container.checkboxes-container--fullsize .control-checkbox {
    margin-bottom: 15px; }
  .ce.ce--vd_job_form .checkbox-wrapper {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    font-size: 1.125rem;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    line-height: 1.4; }
    .ce.ce--vd_job_form .checkbox-wrapper [type="checkbox"] {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0; }
      .ce.ce--vd_job_form .checkbox-wrapper [type="checkbox"]:checked ~ .checkmark:after {
        display: block; }
    .ce.ce--vd_job_form .checkbox-wrapper .checkmark:after {
      content: "";
      position: absolute;
      display: none; }
    .ce.ce--vd_job_form .checkbox-wrapper .checkmark {
      position: absolute;
      top: 4px;
      left: 0;
      height: 20px;
      width: 20px;
      background-color: #eee;
      border: 1px solid #00848d; }
      .ce.ce--vd_job_form .checkbox-wrapper .checkmark:after {
        left: -9px;
        top: -6px;
        -webkit-transform: rotate(45deg) scale(0.5);
                transform: rotate(45deg) scale(0.5);
        height: 29px;
        width: 15px;
        margin-left: 60%;
        border-bottom: 8px solid #00848d;
        border-right: 8px solid #00848d; }
  .ce.ce--vd_job_form .select-wrapper {
    position: relative; }
    .ce.ce--vd_job_form .select-wrapper.disabled {
      opacity: 0.4; }
    .ce.ce--vd_job_form .select-wrapper select {
      -moz-appearance: none;
           appearance: none;
      -webkit-appearance: none;
      border-radius: 0;
      position: relative;
      z-index: 1;
      cursor: pointer;
      border: 1px solid #00848d;
      font-weight: 600;
      line-height: 1.2;
      color: #000000; }
      .ce.ce--vd_job_form .select-wrapper select:disabled {
        cursor: auto;
        opacity: 0.6; }
      .ce.ce--vd_job_form .select-wrapper select option {
        font-size: 18px;
        font-size: 1.125rem;
        background-color: initial;
        font-weight: 400; }
    .ce.ce--vd_job_form .select-wrapper select::-ms-expand {
      display: none; }
    .ce.ce--vd_job_form .select-wrapper:after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 0 4px 4px 0;
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2037%2022%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m32.88%203.2-14.7%2015.5-14.98-15.5%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E");
      background-repeat: no-repeat;
      background-size: 50%;
      background-position: center;
      z-index: 0; }
    .ce.ce--vd_job_form .select-wrapper.multiple select {
      height: 150px;
      padding: 0 0.9375rem;
      background-color: #fff; }
    .ce.ce--vd_job_form .select-wrapper.multiple:after {
      content: none;
      background-image: none; }
  .ce.ce--vd_job_form label {
    position: relative;
    display: block; }
    .ce.ce--vd_job_form label.form-error {
      padding-top: 5px;
      color: var(--c-error);
      font-weight: bold; }
  .ce.ce--vd_job_form .form-group.textarea-field label .textarea-counter {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1; }
  .ce.ce--vd_job_form fieldset legend {
    display: block; }
  .ce.ce--vd_job_form .radio-group {
    margin-bottom: 0; }
  .ce.ce--vd_job_form .vd-message.vd-message--mandatory--form {
    margin-bottom: 2.5rem; }

.ce.ce--vd_jobs_list {
  background-color: #F0F0F0;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem; }
  .ce.ce--vd_jobs_list .vd-result-list .vd-filter-button {
    margin-left: 10px !important; }
  .ce.ce--vd_jobs_list .vd-result-list--board {
    /*
            padding-left: 10px !important;
            padding-right: 10px !important;
*/ }
    @media only screen and (max-width: 767px) {
      .ce.ce--vd_jobs_list .vd-result-list--board {
        padding-left: 0px !important;
        padding-right: 0px !important; } }
    .ce.ce--vd_jobs_list .vd-result-list--board > :nth-child(2n) {
      background-color: #E5EEF2; }
    .ce.ce--vd_jobs_list .vd-result-list--board .vd-result-list__item {
      background-color: #fff;
      margin-bottom: 2.5rem;
      border-bottom: none;
      padding: 2.5rem; }
      .ce.ce--vd_jobs_list .vd-result-list--board .vd-result-list__item:last-child {
        margin-bottom: 0rem; }
  .ce.ce--vd_jobs_list .vd-result-list h3, .ce.ce--vd_jobs_list .vd-result-list .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce.ce--vd_jobs_list .vd-result-list legend {
    margin-bottom: 0; }
  @media only screen and (max-width: 767px) {
    .ce.ce--vd_jobs_list .vd-result-list__item--application .col-md-5, .ce.ce--vd_jobs_list .vd-result-list__item--offer .col-md-5 {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; } }
  @media only screen and (max-width: 767px) {
    .ce.ce--vd_jobs_list .vd-result-list__item--application .col-md-7, .ce.ce--vd_jobs_list .vd-result-list__item--offer .col-md-7 {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; } }
  .ce.ce--vd_jobs_list .vd-result-list__item__title {
    margin-bottom: 1.5rem; }
    .ce.ce--vd_jobs_list .vd-result-list__item__title h3, .ce.ce--vd_jobs_list .vd-result-list__item__title .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce.ce--vd_jobs_list .vd-result-list__item__title legend {
      margin: 0;
      font-size: 24px;
      font-size: 1.5rem; }
  .ce.ce--vd_jobs_list .vd-result-list__item__tags {
    text-align: right;
    padding-bottom: 1.5rem; }
    @media only screen and (max-width: 767px) {
      .ce.ce--vd_jobs_list .vd-result-list__item__tags {
        text-align: left; } }
    .ce.ce--vd_jobs_list .vd-result-list__item__tags .vd-tag {
      padding: 8px 12px 6px 12px;
      color: #fff;
      font-weight: 700;
      margin-bottom: 10px; }
  .ce.ce--vd_jobs_list .vd-result-list__item__content {
    width: 92%; }
    .ce.ce--vd_jobs_list .vd-result-list__item__content .ce__bodytext p {
      line-height: 1.5; }
  .ce.ce--vd_jobs_list .vd-result-list__item .vd-meta {
    font-size: 18px;
    font-size: 1.125rem; }
    .ce.ce--vd_jobs_list .vd-result-list__item .vd-meta__section .label {
      font-weight: 700;
      line-height: 1.33;
      font-size: 18px;
      font-size: 1.125rem; }
    .ce.ce--vd_jobs_list .vd-result-list__item .vd-meta__section .value p {
      line-height: 1.33; }
    .ce.ce--vd_jobs_list .vd-result-list__item .vd-meta__section .value span {
      display: block;
      line-height: 1.33;
      margin-bottom: 5px; }
      .ce.ce--vd_jobs_list .vd-result-list__item .vd-meta__section .value span strong {
        display: block;
        margin-top: 15px;
        margin-bottom: 5px; }
    .ce.ce--vd_jobs_list .vd-result-list__item .vd-meta__section--company .value span {
      margin-bottom: 0px; }

.ce--vd_jobs_list .vd-filter-container--job-board .vd-filter--board {
  padding-left: 10px;
  padding-right: 10px; }
  .ce--vd_jobs_list .vd-filter-container--job-board .vd-filter--board.vd-filter {
    margin-bottom: 20px !important; }
  .ce--vd_jobs_list .vd-filter-container--job-board .vd-filter--board .vd-filter__select-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .ce--vd_jobs_list .vd-filter-container--job-board .vd-filter--board .vd-filter__select-box .inputs-list {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
    .ce--vd_jobs_list .vd-filter-container--job-board .vd-filter--board .vd-filter__select-box .control-label {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      margin: 0;
      padding: 0;
      font-weight: 700 !important; }
    .ce--vd_jobs_list .vd-filter-container--job-board .vd-filter--board .vd-filter__select-box .radio-group {
      border: none !important; }
  .ce--vd_jobs_list .vd-filter-container--job-board .vd-filter--board .vd-filter-button--filter-results {
    margin-left: 0px !important; }
    @media only screen and (max-width: 767px) {
      .ce--vd_jobs_list .vd-filter-container--job-board .vd-filter--board .vd-filter-button--filter-results {
        margin-left: 0px !important;
        border: none; } }
  .ce--vd_jobs_list .vd-filter-container--job-board .vd-filter--board .vd-filter-button-wrapper {
    padding-left: 50px;
    height: 50px;
    background-color: #015D7D;
    display: inline-block; }
    .ce--vd_jobs_list .vd-filter-container--job-board .vd-filter--board .vd-filter-button-wrapper:before {
      position: absolute;
      top: 0;
      left: 10px;
      height: 50px;
      width: 50px;
      z-index: 1;
      content: '';
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20id%3D%22filter%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22m16%20133.612h260.513c7.186%2029.034%2033.45%2050.627%2064.673%2050.627s57.487-21.593%2064.673-50.627h90.141c8.836%200%2016-7.164%2016-16s-7.164-16-16-16h-90.142c-7.185-29.034-33.449-50.628-64.673-50.628s-57.488%2021.594-64.673%2050.628h-260.512c-8.836%200-16%207.164-16%2016s7.164%2016%2016%2016zm325.186-50.628c19.094%200%2034.628%2015.534%2034.628%2034.627%200%2019.094-15.534%2034.628-34.628%2034.628s-34.628-15.534-34.628-34.628c0-19.093%2015.534-34.627%2034.628-34.627zm-325.186%20189.016h90.142c7.186%2029.034%2033.449%2050.627%2064.673%2050.627s57.487-21.593%2064.673-50.627h260.512c8.836%200%2016-7.164%2016-16s-7.164-16-16-16h-260.513c-7.186-29.034-33.449-50.628-64.673-50.628s-57.487%2021.594-64.673%2050.628h-90.141c-8.836%200-16%207.164-16%2016s7.163%2016%2016%2016zm154.814-50.628c19.094%200%2034.628%2015.534%2034.628%2034.628%200%2019.093-15.534%2034.627-34.628%2034.627s-34.628-15.534-34.628-34.627c0-19.094%2015.534-34.628%2034.628-34.628zm325.186%20157.016h-90.142c-7.186-29.034-33.449-50.628-64.673-50.628s-57.487%2021.594-64.673%2050.628h-260.512c-8.836%200-16%207.164-16%2016s7.164%2016%2016%2016h260.513c7.186%2029.034%2033.449%2050.628%2064.673%2050.628s57.487-21.594%2064.673-50.628h90.141c8.836%200%2016-7.164%2016-16s-7.163-16-16-16zm-154.814%2050.628c-19.094%200-34.628-15.534-34.628-34.628s15.534-34.628%2034.628-34.628%2034.628%2015.534%2034.628%2034.628-15.534%2034.628-34.628%2034.628z%22%2F%3E%3C%2Fsvg%3E");
      background-size: 80% 80%;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 24px 24px; }
    .ce--vd_jobs_list .vd-filter-container--job-board .vd-filter--board .vd-filter-button-wrapper .vd-filter-button {
      border: none; }

/*
.ce--vd_jobs_list > .vd-wrapper > .ce__content > .container {
    background-color: $grey-form;
    padding-top: rem(60);
    padding-bottom: rem(60);
    position: relative;
    z-index: 2;
    
    &:after {
        content: '';
        position: absolute;
        top: 0;
        left: -200%;
        height: 100%;
        width: 500%;
        background-color: $grey-form;
        z-index: 1;
    }
}

.ce--vd_jobs_list > .vd-wrapper > .ce__content > .vd-filter-container {
    background-color: #fff;
}
*/
.ce.ce--vd_social_wall > .vd-wrapper > .ce__title h1,
.ce.ce--vd_social_wall > .vd-wrapper > .ce__title h2,
.ce.ce--vd_social_wall > .vd-wrapper > .ce__title h3,
.ce.ce--vd_social_wall > .vd-wrapper > .ce__title .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset .ce.ce--vd_social_wall > .vd-wrapper > .ce__title legend,
.ce.ce--vd_social_wall > .vd-wrapper > .ce__title h4 {
  color: #00848d; }

.ce.ce--vd_social_wall .vd-social-wall__intro {
  background-color: #F7F7F7;
  padding: 3.125rem 0; }

.ce.ce--vd_social_wall .vd-social-wall__loader {
  width: auto;
  height: 100px; }

.ce.ce--vd_social_wall .vd-social-wall svg {
  width: 100%;
  height: 100%; }

.ce.ce--vd_social_wall .vd-social-wall__information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.125rem;
  font-size: 18px;
  font-size: 1.125rem; }

.ce.ce--vd_social_wall .vd-social-wall .vd-actions {
  padding-top: 3.125rem;
  text-align: center; }
  .ce.ce--vd_social_wall .vd-social-wall .vd-actions > * {
    display: inline-block; }

.ce.ce--vd_social_wall .vd-image__container img {
  width: 100%;
  height: auto; }

.ce.ce--vd_social_wall .vd-feed div[class*="col-"] {
  padding-left: 25px;
  padding-right: 25px; }

.ce.ce--vd_social_wall .vd-feed__card__wrapper {
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 2px solid rgba(0, 0, 0, 0);
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out; }
  .ce.ce--vd_social_wall .vd-feed__card__wrapper:hover {
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    border-color: #00848d; }
  .ce.ce--vd_social_wall .vd-feed__card__wrapper > a {
    color: #000;
    text-decoration: none; }

.ce.ce--vd_social_wall .vd-feed__card {
  background-color: #fff;
  margin-bottom: 1.875rem; }

.ce.ce--vd_social_wall .vd-feed__card__content {
  padding: 0 1.25rem; }
  .ce.ce--vd_social_wall .vd-feed__card__content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    margin: 0; }

.ce.ce--vd_social_wall .vd-feed__card__media {
  padding: 0 0 1.25rem; }

.ce.ce--vd_social_wall .vd-feed__card--twitter .vd-image__container .fallback {
  width: 150px;
  height: auto;
  margin: auto; }

.ce.ce--vd_social_wall .vd-feed__card--twitter svg {
  fill: #1d9bf0; }

.ce.ce--vd_social_wall .vd-feed__card--twitter .ce__bodytext a {
  color: #000;
  text-decoration: none; }
  .ce.ce--vd_social_wall .vd-feed__card--twitter .ce__bodytext a.hashtag, .ce.ce--vd_social_wall .vd-feed__card--twitter .ce__bodytext a.profile {
    color: #d50019; }
    .ce.ce--vd_social_wall .vd-feed__card--twitter .ce__bodytext a.hashtag:hover, .ce.ce--vd_social_wall .vd-feed__card--twitter .ce__bodytext a.profile:hover {
      border-bottom: 1px dotted #d50019; }

.ce.ce--vd_social_wall .vd-feed__card__header {
  padding: 1rem 1rem; }
  .ce.ce--vd_social_wall .vd-feed__card__header:before, .ce.ce--vd_social_wall .vd-feed__card__header:after, .ce.ce--vd_social_wall .vd-feed__card__header::before, .ce.ce--vd_social_wall .vd-feed__card__header::after {
    content: "";
    display: block; }
  .ce.ce--vd_social_wall .vd-feed__card__header:after, .ce.ce--vd_social_wall .vd-feed__card__header::after {
    clear: both; }
  .ce.ce--vd_social_wall .vd-feed__card__header .vd-action {
    height: 40px;
    display: inline-block; }
    .ce.ce--vd_social_wall .vd-feed__card__header .vd-action .vd-image {
      height: inherit; }
      .ce.ce--vd_social_wall .vd-feed__card__header .vd-action .vd-image svg {
        height: 100%;
        width: auto; }
  .ce.ce--vd_social_wall .vd-feed__card__header span.date {
    display: block;
    color: #636363;
    float: right;
    line-height: 32px; }
    .ce.ce--vd_social_wall .vd-feed__card__header span.date * {
      line-height: 32px; }

.ce.ce--vd_social_wall .vd-feed__card__footer {
  margin: 0.3125rem 0 0;
  padding: 0.625rem 1.25rem; }
  .ce.ce--vd_social_wall .vd-feed__card__footer .vd-actions {
    padding: 0;
    margin: 0;
    text-align: left;
    border-top: 1px solid silver; }
    .ce.ce--vd_social_wall .vd-feed__card__footer .vd-actions:before, .ce.ce--vd_social_wall .vd-feed__card__footer .vd-actions:after, .ce.ce--vd_social_wall .vd-feed__card__footer .vd-actions::before, .ce.ce--vd_social_wall .vd-feed__card__footer .vd-actions::after {
      content: "";
      display: block; }
    .ce.ce--vd_social_wall .vd-feed__card__footer .vd-actions:after, .ce.ce--vd_social_wall .vd-feed__card__footer .vd-actions::after {
      clear: both; }
    .ce.ce--vd_social_wall .vd-feed__card__footer .vd-actions .vd-image {
      width: 32px;
      height: 32px;
      display: inline-block; }
      .ce.ce--vd_social_wall .vd-feed__card__footer .vd-actions .vd-image svg {
        height: 100%;
        width: 100%; }
  .ce.ce--vd_social_wall .vd-feed__card__footer .vd-action {
    padding-top: 0.625rem;
    height: 100%;
    line-height: 32px; }
    .ce.ce--vd_social_wall .vd-feed__card__footer .vd-action:hover .vd-image {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
      -webkit-transition: 250ms all ease-in-out;
      transition: 250ms all ease-in-out; }
    .ce.ce--vd_social_wall .vd-feed__card__footer .vd-action:hover span {
      color: #636363; }
    .ce.ce--vd_social_wall .vd-feed__card__footer .vd-action span {
      line-height: 32px;
      display: inline-block;
      color: #636363; }
    .ce.ce--vd_social_wall .vd-feed__card__footer .vd-action--show-post {
      float: right; }
    .ce.ce--vd_social_wall .vd-feed__card__footer .vd-action--like {
      margin-right: 16px; }
      .ce.ce--vd_social_wall .vd-feed__card__footer .vd-action--like svg path {
        fill: #ea534e; }
    .ce.ce--vd_social_wall .vd-feed__card__footer .vd-action--retweet svg path {
      fill: #00848d; }
    .ce.ce--vd_social_wall .vd-feed__card__footer .vd-action--like .vd-image, .ce.ce--vd_social_wall .vd-feed__card__footer .vd-action--retweet .vd-image {
      padding: 6px; }

.ce--vd_downloads .ce__title {
  color: #015D7D;
  padding-right: 0 !important;
  padding-left: 0 !important; }

.ce--vd_downloads .ce__content .container, .ce--vd_downloads .ce__content .vd-breadcrumb, .ce--vd_downloads .ce__content .vd-breadcrumb .vd-nav, .vd-breadcrumb .ce--vd_downloads .ce__content .vd-nav, .ce--vd_downloads .ce__content #tx-solr-search, .ce--vd_downloads .ce__content .vd-filter-container, .ce--vd_downloads .ce__content .vd-section--header .header__navigation--buttons, .vd-section--header .ce--vd_downloads .ce__content .header__navigation--buttons, .ce--vd_downloads .ce__content body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section--header .ce--vd_downloads .ce__content .vd-wrapper, .ce--vd_downloads .ce__content body:not(.template--startpage) .vd-section .header__navigation--buttons, body:not(.template--startpage) .vd-section .ce--vd_downloads .ce__content .header__navigation--buttons, .ce--vd_downloads .ce__content body.template--startpage .vd-section--hero .vd-wrapper, body.template--startpage .vd-section--hero .ce--vd_downloads .ce__content .vd-wrapper, .ce--vd_downloads .ce__content .content-element.gutachter-list, .ce--vd_downloads .ce__content .vd-section--main .vd-message, .vd-section--main .ce--vd_downloads .ce__content .vd-message, .ce--vd_downloads .ce__content .ce.ce--vd_newsletter_registration, .ce--vd_downloads .ce__content .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_teaser .ce--vd_downloads .ce__content .single-news-teaser, .ce--vd_downloads .ce__content .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list .ce--vd_downloads .ce__content .icon, .ce--vd_downloads .ce__content .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .ce--vd_downloads .ce__content .vd-actions, .ce--vd_downloads .ce__content .ce.ce--vd_news_list .news__cta, .ce.ce--vd_news_list .ce--vd_downloads .ce__content .news__cta,
.ce--vd_downloads .ce__content .ce__title,
.ce--vd_downloads .ce__content .ce__bodytext, .ce--vd_downloads .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel .ce--vd_downloads .ce__content > .ce__bodytext, .ce--vd_downloads .ce__content .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_green__front_bright .ce--vd_downloads .ce__content .vd-wrapper, .ce--vd_downloads .ce__content .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .ce--vd_downloads .ce__content .vd-wrapper, .ce--vd_downloads .ce__content .vd-slick-dots, .ce--vd_downloads .ce__content .ce.ce--vd_link_list, .ce--vd_downloads .ce__content .ce.ce--vd_quotation, .ce--vd_downloads .ce__content .ce.ce--vd_info_box, .ce--vd_downloads .ce__content .content-element-directories .text, .content-element-directories .ce--vd_downloads .ce__content .text, .ce--vd_downloads .ce__content .content-element-directories #directories_filter__form, .content-element-directories .ce--vd_downloads .ce__content #directories_filter__form, .ce--vd_downloads .ce__content .content-element-directories .directories-results, .content-element-directories .ce--vd_downloads .ce__content .directories-results, .ce--vd_downloads .ce__content #tx-solr-search .vd-wrapper, #tx-solr-search .ce--vd_downloads .ce__content .vd-wrapper, .ce--vd_downloads .ce__content main > .ce.ce--vd_event_teaser .single-event-teaser, main > .ce.ce--vd_event_teaser .ce--vd_downloads .ce__content .single-event-teaser, .ce--vd_downloads .ce__content .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .ce--vd_downloads .ce__content .vd-wrapper, .ce--vd_downloads .ce__content .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .ce--vd_downloads .ce__content .vd-wrapper, .ce--vd_downloads .ce__content .ce.ce--vd_job_form, .ce--vd_downloads .ce__content .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce--vd_downloads .ce__content .vd-wrapper, .ce--vd_downloads .ce__content .ce--vd_download .ce__content, .ce--vd_download .ce--vd_downloads .ce__content .ce__content {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.ce--vd_download .vd-wrapper {
  padding-bottom: 2.5rem; }
  @media only screen and (min-width: 768px) {
    .ce--vd_download .vd-wrapper {
      padding-bottom: 3rem; } }

.ce--vd_download h2, .ce--vd_download h3, .ce--vd_download .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce--vd_download legend {
  margin-top: 0;
  margin-bottom: 0.75rem; }
  @media only screen and (min-width: 768px) {
    .ce--vd_download h2, .ce--vd_download h3, .ce--vd_download .ce.ce--vd_job_form fieldset legend, .ce.ce--vd_job_form fieldset .ce--vd_download legend {
      margin-top: 0;
      margin-bottom: 0.75rem; } }

.ce--vd_download .ce__title {
  color: #015D7D; }
  @media only screen and (min-width: 1024px) {
    .ce--vd_download .ce__title {
      padding-right: calc(5.638em * 2) !important; } }
  @media only screen and (min-width: 1200px) {
    .ce--vd_download .ce__title {
      padding-right: calc(5.638em * 4) !important; } }
  .ce--vd_download .ce__title > * {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 50px; }
    @media only screen and (max-width: 767px) {
      .ce--vd_download .ce__title > * {
        font-size: 30px;
        font-size: 1.875rem;
        line-height: 38px; } }

@media only screen and (min-width: 1024px) {
  .ce--vd_download .ce__content {
    padding-right: calc(5.638em * 2) !important; } }

@media only screen and (min-width: 1200px) {
  .ce--vd_download .ce__content {
    padding-right: calc(5.638em * 4) !important; } }

.ce--vd_download .ce__content .container, .ce--vd_download .ce__content .vd-breadcrumb, .ce--vd_download .ce__content .vd-breadcrumb .vd-nav, .vd-breadcrumb .ce--vd_download .ce__content .vd-nav, .ce--vd_download .ce__content #tx-solr-search, .ce--vd_download .ce__content .vd-filter-container, .ce--vd_download .ce__content .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__bottom .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .vd-section--header .header__navigation--buttons, .vd-section--header .ce--vd_download .ce__content .header__navigation--buttons, .ce--vd_download .ce__content body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section--header .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content body:not(.template--startpage) .vd-section .header__navigation--buttons, body:not(.template--startpage) .vd-section .ce--vd_download .ce__content .header__navigation--buttons, .ce--vd_download .ce__content body.template--startpage .vd-section--hero .vd-wrapper, body.template--startpage .vd-section--hero .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .content-element.gutachter-list, .ce--vd_download .ce__content .vd-section--main .vd-message, .vd-section--main .ce--vd_download .ce__content .vd-message, .ce--vd_download .ce__content .vd-section--header .header__top .vd-wrapper, .vd-section--header .header__top .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_event_calendar .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce.ce--vd_events_list > .vd-wrapper, .ce--vd_download .ce__content .ce.ce--vd_events_search > .vd-wrapper, .ce--vd_download .ce__content .ce.ce--vd_event_registration .vd-wrapper, .ce.ce--vd_event_registration .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--sfeventmgt_pieventdetail .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce--vd_event_list > .vd-wrapper,
.ce--vd_download .ce__content .ce--vd_event_search > .vd-wrapper, .ce--vd_download .ce__content .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce.ce--vd_newsletter_registration, .ce--vd_download .ce__content .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_services_teaser .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_teaser .ce--vd_download .ce__content .single-news-teaser, .ce--vd_download .ce__content .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list .ce--vd_download .ce__content .icon, .ce--vd_download .ce__content .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .ce--vd_download .ce__content .vd-actions, .ce--vd_download .ce__content .ce.ce--vd_news_list .news__cta, .ce.ce--vd_news_list .ce--vd_download .ce__content .news__cta, .ce--vd_download .ce--vd_accordion .ce__content .ce__bodytext, .ce--vd_accordion .ce--vd_download .ce__content .ce__bodytext,
.ce--vd_download .ce--vd_downloads .ce__content .ce__bodytext, .ce--vd_downloads .ce--vd_download .ce__content .ce__bodytext, .ce--vd_download .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel .ce--vd_download .ce__content > .ce__bodytext, .ce--vd_download .ce__content .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_green__front_bright .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .vd-slick-dots, .ce--vd_download .ce__content .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_image .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce.ce--vd_text .vd-wrapper, .ce.ce--vd_text .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce.ce--table .vd-wrapper, .ce.ce--table .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce.ce--html .vd-wrapper, .ce.ce--html .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce.ce--vd_link_list, .ce--vd_download .ce__content .ce.ce--vd_quotation, .ce--vd_download .ce__content .ce.ce--vd_video .vd-wrapper, .ce.ce--vd_video .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce.ce--form_formframework .vd-wrapper, .ce.ce--form_formframework .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce.ce--vd_info_box, .ce--vd_download .ce__content .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_magazines .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .content-element-directories .text, .content-element-directories .ce--vd_download .ce__content .text, .ce--vd_download .ce__content .content-element-directories #directories_filter__form, .content-element-directories .ce--vd_download .ce__content #directories_filter__form, .ce--vd_download .ce__content .content-element-directories .directories-results, .content-element-directories .ce--vd_download .ce__content .directories-results, .ce--vd_download .ce__content #tx-solr-search .vd-wrapper, #tx-solr-search .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content main > .ce.ce--vd_event_teaser .single-event-teaser, main > .ce.ce--vd_event_teaser .ce--vd_download .ce__content .single-event-teaser, .ce--vd_download .ce__content .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce.ce--vd_job_form, .ce--vd_download .ce__content .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce--vd_download .ce__content .ce--vd_downloads .vd-wrapper, .ce--vd_downloads .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce__title, .ce--vd_download .ce__content .ce__content, .ce--vd_download .ce__content .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_menu_teaser .ce--vd_download .ce__content .vd-wrapper, .ce--vd_download .ce__content .ce.ce--vd_news_carousel > .vd-wrapper {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.ce--vd_download.ce-layout--aside-box .ce__title {
  padding-left: 0px !important;
  padding-right: 0px !important; }

.ce--vd_download.ce-layout--aside-box .ce__content {
  padding-left: 0px !important;
  padding-right: 0px !important; }

.vd-download {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem; }
  .vd-download .vd-download__title {
    color: #015D7D;
    display: inline-block;
    margin-right: 0.9375rem;
    padding-top: 0.9375rem; }
    .vd-download .vd-download__title > * {
      margin: 0; }
  .vd-download .vd-download__meta {
    display: inline-block;
    font-size: 18px;
    font-size: 1.125rem;
    color: #015D7D;
    letter-spacing: 0.9px;
    padding-top: 0.9375rem; }
    .vd-download .vd-download__meta .meta--file-extension {
      text-transform: uppercase; }
  .vd-download .vd-download__cta {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.9px; }
    .vd-download .vd-download__cta a {
      display: inline-block; }
      .vd-download .vd-download__cta a:after {
        display: inline-block;
        content: '';
        height: 29px;
        width: 19px;
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20id%3D%22download%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217.521%22%20height%3D%2229.966%22%20viewBox%3D%220%200%2017.521%2029.966%22%3E\a%20%20%3Cpath%20id%3D%22right-arrow%22%20d%3D%22M14.042%2C0%2C12.628%2C1.414l6.293%2C6.293H0v2H18.921L12.628%2C16l1.414%2C1.414L22.75%2C8.708Z%22%20transform%3D%22translate%2817.521%29%20rotate%2890%29%22%20fill%3D%22%23005d7d%22%2F%3E%3Cpath%20id%3D%22Pfad_2619%22%20data-name%3D%22Pfad%202619%22%20d%3D%22M15767.349%2C7246.708h17.521%22%20transform%3D%22translate%28-15767.349%20-7217.742%29%22%20fill%3D%22none%22%20stroke%3D%22%23005d7d%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-position: right center;
        margin-left: 10px;
        top: 8px;
        position: relative; }

@media only screen and (min-width: 768px) {
  .ce.ce--vd_accordion {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem; }
    .ce.ce--vd_accordion.version--red_colored_rounded .accordion__item {
      margin-bottom: 1.875rem; }
    .ce.ce--vd_accordion.version--red_colored_rounded .accordion__content {
      padding: 1.875rem 5.3125rem; }
    .ce.ce--vd_accordion .accordion__header span {
      padding-right: 4.0625rem; }
    .ce.ce--vd_accordion .accordion__content {
      padding-right: 4.0625rem; } }

.ce.ce--vd_page_teaser.version--emphasis .vd-image--header--wrapper {
  position: relative;
  padding-bottom: 7.5rem;
  margin-bottom: 3.75rem; }

.ce.ce--vd_page_teaser.version--emphasis .ce__title {
  background-color: #fff;
  width: calc((100% / 12) * 8);
  position: absolute;
  bottom: 0px;
  padding: 1.25rem; }
  @media only screen and (min-width: 992px) {
    .ce.ce--vd_page_teaser.version--emphasis .ce__title {
      padding: 3.75rem;
      width: calc((100% / 12) * 5); } }
  .ce.ce--vd_page_teaser.version--emphasis .ce__title > * {
    margin-bottom: 0; }
    @media only screen and (max-width: 991px) {
      .ce.ce--vd_page_teaser.version--emphasis .ce__title > * {
        font-size: 40px;
        font-size: 2.5rem;
        line-height: 50px; } }
    @media only screen and (max-width: 767px) {
      .ce.ce--vd_page_teaser.version--emphasis .ce__title > * {
        font-size: 30px;
        font-size: 1.875rem;
        line-height: 40px; } }

@media only screen and (max-width: 991px) {
  .ce.ce--vd_page_teaser.version--emphasis .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / 12) * 7);
            flex: 0 0 calc((100% / 12) * 7);
    max-width: calc((100% / 12) * 7);
    padding-left: 0px;
    padding-right: 10px; } }

@media only screen and (max-width: 991px) {
  .ce.ce--vd_page_teaser.version--emphasis .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / 12) * 5);
            flex: 0 0 calc((100% / 12) * 5);
    max-width: calc((100% / 12) * 5);
    padding-right: 0px;
    padding-left: 10px; } }

.ce.ce--vd_page_teaser.version--emphasis .ce__teaser-box {
  padding: 2.5rem;
  background-color: #E5EEF2;
  color: #015D7D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media only screen and (max-width: 991px) {
    .ce.ce--vd_page_teaser.version--emphasis .ce__teaser-box {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%;
      padding: 2.5rem;
      margin-bottom: 20px; } }
  .ce.ce--vd_page_teaser.version--emphasis .ce__teaser-box .ce__cta a {
    background-color: transparent;
    border-color: transparent;
    padding-right: 80px;
    padding-left: 0px;
    background-repeat: no-repeat;
    background-position: calc(100% - 30px) 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23015D7D'/%3E%3C/svg%3E"); }

.ce.ce--vd_page_teaser.version--emphasis .vd-image {
  height: 100%; }
  .ce.ce--vd_page_teaser.version--emphasis .vd-image figure,
  .ce.ce--vd_page_teaser.version--emphasis .vd-image picture {
    height: 100%; }
  .ce.ce--vd_page_teaser.version--emphasis .vd-image img {
    height: 100%;
    max-height: calc((100vw / 16) * 9);
    -o-object-fit: cover;
       object-fit: cover; }

.ce.ce--vd_medical_journal {
  padding-top: 5rem;
  padding-bottom: 5rem; }
  .ce.ce--vd_medical_journal .vd-teaser__cta {
    padding-right: calc((100% / 12) * 1.5);
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start; }
    .ce.ce--vd_medical_journal .vd-teaser__cta .ce__title h2,
    .ce.ce--vd_medical_journal .vd-teaser__cta .ce__title h3,
    .ce.ce--vd_medical_journal .vd-teaser__cta .ce__title .ce.ce--vd_job_form fieldset legend,
    .ce.ce--vd_job_form fieldset .ce.ce--vd_medical_journal .vd-teaser__cta .ce__title legend {
      font-size: 40px;
      font-size: 2.5rem;
      line-height: 48px;
      margin-bottom: 10px; }
    .ce.ce--vd_medical_journal .vd-teaser__cta .ce__cta .vd-button, .ce.ce--vd_medical_journal .vd-teaser__cta .ce__cta #cookie_approval .button, #cookie_approval .ce.ce--vd_medical_journal .vd-teaser__cta .ce__cta .button, .ce.ce--vd_medical_journal .vd-teaser__cta .ce__cta .tx-sf-event-mgt .registration input[type="submit"], .tx-sf-event-mgt .registration .ce.ce--vd_medical_journal .vd-teaser__cta .ce__cta input[type="submit"] {
      margin-top: 1.25rem;
      margin-right: 1.25rem; }
  .ce.ce--vd_medical_journal .vd-teaser__image {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    margin-top: 2.5rem; }
    @media only screen and (min-width: 767px) {
      .ce.ce--vd_medical_journal .vd-teaser__image {
        margin-top: 2.5rem; } }
    .ce.ce--vd_medical_journal .vd-teaser__image .vd-image-container {
      width: 100%; }

.vd-teaser--medical-journal.vd-teaser--text-image {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #D8E2E6;
  margin-right: -20px;
  margin-left: -20px; }
  @media only screen and (min-width: 576px) {
    .vd-teaser--medical-journal.vd-teaser--text-image {
      margin-right: -150px;
      margin-left: -150px; } }
  @media only screen and (min-width: 992px) {
    .vd-teaser--medical-journal.vd-teaser--text-image {
      margin-right: -130px;
      margin-left: -130px; } }
  @media only screen and (min-width: 1200px) {
    .vd-teaser--medical-journal.vd-teaser--text-image {
      margin-right: -90px;
      margin-left: -90px; } }
  @media only screen and (min-width: 1440px) {
    .vd-teaser--medical-journal.vd-teaser--text-image {
      margin-right: calc((100vw - 1260px) / -2);
      margin-left: calc((100vw - 1260px) / -2); } }
  .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-left: calc((100% / 12) * 1); }
    .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__content .subtitle {
      font-family: Hind, "Lucida Sans Unicode", "Lucida Grande", sans-serif;
      color: #000;
      text-align: center;
      display: inline-block;
      font-size: 16px;
      font-size: 1rem;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 10px !important; }
    .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__content .ce__title > * {
      margin: 0; }
    .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__content .ce__bodytext {
      margin: 40px 0; }
    @media only screen and (max-width: 767px) {
      .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__content {
        margin-top: 40px;
        padding-left: 20px; } }
  .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
  .vd-teaser--medical-journal.vd-teaser--text-image .ce__cta .vd-link {
    display: inline-block;
    border: 2px solid #015D7D;
    font-size: 16px;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.625rem 1.875rem;
    cursor: pointer;
    -webkit-transition: all 230ms ease-in-out;
    transition: all 230ms ease-in-out;
    line-height: 29px;
    letter-spacing: 0.9px;
    border-radius: 50px;
    height: 50px;
    color: #fff;
    background-color: #015D7D;
    padding-right: 80px;
    background-repeat: no-repeat;
    background-position: calc(100% - 30px) center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23fff'/%3E%3C/svg%3E"); }

.ce--vd_news_list .result-layout,
.ce--vd_result_list .result-layout {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem; }
  @media only screen and (min-width: 768px) {
    .ce--vd_news_list .result-layout,
    .ce--vd_result_list .result-layout {
      padding-top: 3.75rem;
      padding-bottom: 3.75rem; } }
  .ce--vd_news_list .result-layout.result-layout--default,
  .ce--vd_result_list .result-layout.result-layout--default {
    background-color: #F0F0F0; }

.ce--vd_news_list .news-view--list .news__item,
.ce--vd_news_list .news-view--list .result__item,
.ce--vd_news_list .result-view--list .news__item,
.ce--vd_news_list .result-view--list .result__item,
.ce--vd_result_list .news-view--list .news__item,
.ce--vd_result_list .news-view--list .result__item,
.ce--vd_result_list .result-view--list .news__item,
.ce--vd_result_list .result-view--list .result__item {
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 30px; }
  @media only screen and (min-width: 768px) {
    .ce--vd_news_list .news-view--list .news__item,
    .ce--vd_news_list .news-view--list .result__item,
    .ce--vd_news_list .result-view--list .news__item,
    .ce--vd_news_list .result-view--list .result__item,
    .ce--vd_result_list .news-view--list .news__item,
    .ce--vd_result_list .news-view--list .result__item,
    .ce--vd_result_list .result-view--list .news__item,
    .ce--vd_result_list .result-view--list .result__item {
      padding-left: 30px;
      padding-right: 30px; } }
  .ce--vd_news_list .news-view--list .news__item .news__item__meta,
  .ce--vd_news_list .news-view--list .news__item .result__item__meta,
  .ce--vd_news_list .news-view--list .result__item .news__item__meta,
  .ce--vd_news_list .news-view--list .result__item .result__item__meta,
  .ce--vd_news_list .result-view--list .news__item .news__item__meta,
  .ce--vd_news_list .result-view--list .news__item .result__item__meta,
  .ce--vd_news_list .result-view--list .result__item .news__item__meta,
  .ce--vd_news_list .result-view--list .result__item .result__item__meta,
  .ce--vd_result_list .news-view--list .news__item .news__item__meta,
  .ce--vd_result_list .news-view--list .news__item .result__item__meta,
  .ce--vd_result_list .news-view--list .result__item .news__item__meta,
  .ce--vd_result_list .news-view--list .result__item .result__item__meta,
  .ce--vd_result_list .result-view--list .news__item .news__item__meta,
  .ce--vd_result_list .result-view--list .news__item .result__item__meta,
  .ce--vd_result_list .result-view--list .result__item .news__item__meta,
  .ce--vd_result_list .result-view--list .result__item .result__item__meta {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 30px;
    text-transform: uppercase; }
  .ce--vd_news_list .news-view--list .news__item .news__item__title *,
  .ce--vd_news_list .news-view--list .news__item .result__item__title *,
  .ce--vd_news_list .news-view--list .result__item .news__item__title *,
  .ce--vd_news_list .news-view--list .result__item .result__item__title *,
  .ce--vd_news_list .result-view--list .news__item .news__item__title *,
  .ce--vd_news_list .result-view--list .news__item .result__item__title *,
  .ce--vd_news_list .result-view--list .result__item .news__item__title *,
  .ce--vd_news_list .result-view--list .result__item .result__item__title *,
  .ce--vd_result_list .news-view--list .news__item .news__item__title *,
  .ce--vd_result_list .news-view--list .news__item .result__item__title *,
  .ce--vd_result_list .news-view--list .result__item .news__item__title *,
  .ce--vd_result_list .news-view--list .result__item .result__item__title *,
  .ce--vd_result_list .result-view--list .news__item .news__item__title *,
  .ce--vd_result_list .result-view--list .news__item .result__item__title *,
  .ce--vd_result_list .result-view--list .result__item .news__item__title *,
  .ce--vd_result_list .result-view--list .result__item .result__item__title * {
    margin-bottom: 0px; }

.ce.ce--vd_medical_journals {
  padding-top: 5rem; }
  .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    margin-right: -20px;
    margin-left: -20px; }
    .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image:first-child {
      padding-top: 30px !important; }
    @media only screen and (min-width: 576px) {
      .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image {
        margin-right: -150px;
        margin-left: -150px; } }
    @media only screen and (min-width: 992px) {
      .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image {
        margin-right: -130px;
        margin-left: -130px; } }
    @media only screen and (min-width: 1200px) {
      .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image {
        margin-right: -90px;
        margin-left: -90px; } }
    @media only screen and (min-width: 1440px) {
      .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image {
        margin-right: calc((100vw - 1260px) / -2);
        margin-left: calc((100vw - 1260px) / -2); } }
    .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__content {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      padding-left: 0px;
      padding-right: 30px; }
      .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__content .subtitle {
        font-family: Hind, "Lucida Sans Unicode", "Lucida Grande", sans-serif;
        color: #000;
        text-align: center;
        display: inline-block;
        font-size: 16px;
        font-size: 1rem;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 10px !important; }
      .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__content .ce__title > * {
        margin: 0; }
      .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__content .ce__bodytext {
        margin: 40px 0; }
      @media only screen and (max-width: 767px) {
        .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__content {
          margin-top: 40px;
          padding-left: 20px; } }
    .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__media {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
    .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .container .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-breadcrumb .row, .vd-breadcrumb .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-nav .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper #tx-solr-search .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-filter-container .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-section--header .header__bottom .vd-wrapper .row, .vd-section--header .header__bottom .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-section--header .header__navigation--buttons .row, .vd-section--header .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .header__navigation--buttons .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper body:not(.template--startpage) .vd-section--header .vd-wrapper .row, body:not(.template--startpage) .vd-section--header .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper body:not(.template--startpage) .vd-section .header__navigation--buttons .row, body:not(.template--startpage) .vd-section .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .header__navigation--buttons .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper body.template--startpage .vd-section--hero .vd-wrapper .row, body.template--startpage .vd-section--hero .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .content-element.gutachter-list .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-section--main .vd-message .row, .vd-section--main .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-message .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-section--header .header__top .vd-wrapper .row, .vd-section--header .header__top .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_event_calendar .vd-wrapper .row, .ce.ce--vd_event_calendar .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_events_list > .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_events_search > .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_event_registration .vd-wrapper .row, .ce.ce--vd_event_registration .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce--sfeventmgt_pieventdetail .vd-wrapper .row, .ce--sfeventmgt_pieventdetail .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce--vd_event_list > .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce--vd_event_search > .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_press_mailing_list_subscription .vd-wrapper .row, .ce.ce--vd_press_mailing_list_subscription .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_newsletter_registration .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_services_teaser .vd-wrapper .row, .ce.ce--vd_services_teaser .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_text_teaser .ce__title .row, .ce.ce--vd_text_teaser .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce__title .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_news_teaser .single-news-teaser .row, .ce.ce--vd_news_teaser .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .single-news-teaser .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_news_list .ce__title .row, .ce.ce--vd_news_list .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce__title .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_news_list .icon .row, .ce.ce--vd_news_list .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .icon .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_news_list .vd-actions .row, .ce.ce--vd_news_list .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-actions .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_news_list .news__cta .row, .ce.ce--vd_news_list .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .news__cta .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce--vd_accordion .ce__title .row, .ce--vd_accordion .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce__title .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce--vd_downloads .ce__title .row, .ce--vd_downloads .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce__title .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce--vd_accordion .ce__content .ce__bodytext .row, .ce--vd_accordion .ce__content .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce__bodytext .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce--vd_downloads .ce__content .ce__bodytext .row, .ce--vd_downloads .ce__content .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce__bodytext .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_carousel .ce__content > .ce__bodytext .row, .ce.ce--vd_carousel .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce__content > .ce__bodytext .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper .row, .ce.ce--vd_carousel.ce--bg_green__front_bright .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper .row, .ce.ce--vd_carousel.ce--bg_grey .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-slick-dots .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_image .vd-wrapper .row, .ce.ce--vd_image .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_text .vd-wrapper .row, .ce.ce--vd_text .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--table .vd-wrapper .row, .ce.ce--table .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--html .vd-wrapper .row, .ce.ce--html .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_text_images .ce__title .row, .ce.ce--vd_text_images .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce__title .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_link_list .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_quotation .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce--vd_pages_teaser .ce__title .row, .ce--vd_pages_teaser .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce__title .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_video .vd-wrapper .row, .ce.ce--vd_video .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--form_formframework .vd-wrapper .row, .ce.ce--form_formframework .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_info_box .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_magazines .vd-wrapper .row, .ce.ce--vd_magazines .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_list_offers .ce__title .row, .ce.ce--vd_list_offers .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce__title .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .content-element-directories .text .row, .content-element-directories .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .text .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .content-element-directories #directories_filter__form .row, .content-element-directories .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper #directories_filter__form .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .content-element-directories .directories-results .row, .content-element-directories .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .directories-results .row, #tx-solr-search .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper main > .ce.ce--vd_event_teaser .single-event-teaser .row, main > .ce.ce--vd_event_teaser .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .single-event-teaser .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_departments_list .ce__title .row, .ce.ce--vd_departments_list .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce__title .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_divisions_list .ce__title .row, .ce.ce--vd_divisions_list .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce__title .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_persons_list .ce__title .row, .ce.ce--vd_persons_list .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce__title .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper .row, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper .row, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_job_form .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_social_wall > .vd-wrapper > .ce__title .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce--vd_downloads .vd-wrapper .row, .ce--vd_downloads .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce--vd_download .ce__title .row, .ce--vd_download .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce__title .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce--vd_download .ce__content .row, .ce--vd_download .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce__content .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_menu_teaser .vd-wrapper .row, .ce.ce--vd_menu_teaser .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .vd-wrapper .row, .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .vd-teaser__wrapper .ce.ce--vd_news_carousel > .vd-wrapper .row {
      background-color: #fff;
      padding: 1.875rem; }
    .ce.ce--vd_medical_journals .vd-teaser--medical-journal.vd-teaser--text-image .ce__cta .vd-link {
      font-size: 18px !important;
      font-size: 1.125rem !important;
      border: none !important;
      padding-left: 0 !important;
      border-radius: 0px !important;
      height: 50px;
      color: #015D7D !important;
      background-color: transparent !important;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23015D7D'/%3E%3C/svg%3E") !important; }

.ce--vd_info_teaser .vd-wrapper {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem; }
  .ce--vd_info_teaser .vd-wrapper.colorize {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem; }

body.template--detail .article, body.template--controllerDetail .article {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  padding-right: calc((100% / 12) * 1); }
  @media only screen and (max-width: 767px) {
    body.template--detail .article, body.template--controllerDetail .article {
      padding-right: 0; } }
  body.template--detail .article .article__content, body.template--controllerDetail .article .article__content {
    font-weight: 500;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 30px; }
    body.template--detail .article .article__content p, body.template--controllerDetail .article .article__content p {
      font-size: 22px;
      font-size: 1.375rem;
      line-height: 30px; }
      body.template--detail .article .article__content p a, body.template--controllerDetail .article .article__content p a {
        text-decoration: underline; }
  body.template--detail .article .article__content .vd-text-images.container, body.template--detail .article .article__content .vd-text-images.vd-breadcrumb, body.template--detail .article .article__content .vd-breadcrumb .vd-text-images.vd-nav, .vd-breadcrumb body.template--detail .article .article__content .vd-text-images.vd-nav, body.template--detail .article .article__content .vd-text-images#tx-solr-search, body.template--detail .article .article__content .vd-text-images.vd-filter-container, body.template--detail .article .article__content .vd-section--header .header__bottom .vd-text-images.vd-wrapper, .vd-section--header .header__bottom body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .vd-section--header .vd-text-images.header__navigation--buttons, .vd-section--header body.template--detail .article .article__content .vd-text-images.header__navigation--buttons, body.template--detail .article .article__content body:not(.template--startpage) .vd-section--header .vd-text-images.vd-wrapper, body:not(.template--startpage) .vd-section--header body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content body:not(.template--startpage) .vd-section .vd-text-images.header__navigation--buttons, body:not(.template--startpage) .vd-section body.template--detail .article .article__content .vd-text-images.header__navigation--buttons, body.template--detail .article .article__content body.template--startpage .vd-section--hero .vd-text-images.vd-wrapper, body.template--startpage .vd-section--hero body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .vd-text-images.content-element.gutachter-list, body.template--detail .article .article__content .vd-section--main .vd-text-images.vd-message, .vd-section--main body.template--detail .article .article__content .vd-text-images.vd-message, body.template--detail .article .article__content .vd-section--header .header__top .vd-text-images.vd-wrapper, .vd-section--header .header__top body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce.ce--vd_event_calendar .vd-text-images.vd-wrapper, .ce.ce--vd_event_calendar body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce.ce--vd_events_list > .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce.ce--vd_events_search > .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce.ce--vd_event_registration .vd-text-images.vd-wrapper, .ce.ce--vd_event_registration body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce--sfeventmgt_pieventdetail .vd-text-images.vd-wrapper, .ce--sfeventmgt_pieventdetail body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce--vd_event_list > .vd-text-images.vd-wrapper,
  body.template--detail .article .article__content .ce--vd_event_search > .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce.ce--vd_press_mailing_list_subscription .vd-text-images.vd-wrapper, .ce.ce--vd_press_mailing_list_subscription body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .vd-text-images.ce.ce--vd_newsletter_registration, body.template--detail .article .article__content .ce.ce--vd_services_teaser .vd-text-images.vd-wrapper, .ce.ce--vd_services_teaser body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce.ce--vd_text_teaser .vd-text-images.ce__title, .ce.ce--vd_text_teaser body.template--detail .article .article__content .vd-text-images.ce__title, body.template--detail .article .article__content .ce.ce--vd_news_teaser .vd-text-images.single-news-teaser, .ce.ce--vd_news_teaser body.template--detail .article .article__content .vd-text-images.single-news-teaser, body.template--detail .article .article__content .ce.ce--vd_news_list .vd-text-images.ce__title, .ce.ce--vd_news_list body.template--detail .article .article__content .vd-text-images.ce__title, body.template--detail .article .article__content .ce.ce--vd_news_list .vd-text-images.icon, .ce.ce--vd_news_list body.template--detail .article .article__content .vd-text-images.icon, body.template--detail .article .article__content .ce.ce--vd_news_list .vd-text-images.vd-actions, .ce.ce--vd_news_list body.template--detail .article .article__content .vd-text-images.vd-actions, body.template--detail .article .article__content .ce.ce--vd_news_list .vd-text-images.news__cta, .ce.ce--vd_news_list body.template--detail .article .article__content .vd-text-images.news__cta, body.template--detail .article .article__content .ce--vd_accordion .vd-text-images.ce__title, .ce--vd_accordion body.template--detail .article .article__content .vd-text-images.ce__title,
  body.template--detail .article .article__content .ce--vd_downloads .vd-text-images.ce__title, .ce--vd_downloads body.template--detail .article .article__content .vd-text-images.ce__title, body.template--detail .article .article__content .ce--vd_accordion .ce__content .vd-text-images.ce__bodytext, .ce--vd_accordion .ce__content body.template--detail .article .article__content .vd-text-images.ce__bodytext,
  body.template--detail .article .article__content .ce--vd_downloads .ce__content .vd-text-images.ce__bodytext, .ce--vd_downloads .ce__content body.template--detail .article .article__content .vd-text-images.ce__bodytext, body.template--detail .article .article__content .ce.ce--vd_carousel .ce__content > .vd-text-images.ce__bodytext, .ce.ce--vd_carousel body.template--detail .article .article__content .ce__content > .vd-text-images.ce__bodytext, body.template--detail .article .article__content .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-text-images.vd-wrapper, .ce.ce--vd_carousel.ce--bg_green__front_bright body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce.ce--vd_carousel.ce--bg_grey .vd-text-images.vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .vd-text-images.vd-slick-dots, body.template--detail .article .article__content .ce.ce--vd_image .vd-text-images.vd-wrapper, .ce.ce--vd_image body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce.ce--vd_text .vd-text-images.vd-wrapper, .ce.ce--vd_text body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce.ce--table .vd-text-images.vd-wrapper, .ce.ce--table body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce.ce--html .vd-text-images.vd-wrapper, .ce.ce--html body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce.ce--vd_text_images .vd-text-images.ce__title, .ce.ce--vd_text_images body.template--detail .article .article__content .vd-text-images.ce__title, body.template--detail .article .article__content .vd-text-images.ce.ce--vd_link_list, body.template--detail .article .article__content .vd-text-images.ce.ce--vd_quotation, body.template--detail .article .article__content .ce--vd_pages_teaser .vd-text-images.ce__title, .ce--vd_pages_teaser body.template--detail .article .article__content .vd-text-images.ce__title, body.template--detail .article .article__content .ce.ce--vd_video .vd-text-images.vd-wrapper, .ce.ce--vd_video body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce.ce--form_formframework .vd-text-images.vd-wrapper, .ce.ce--form_formframework body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .vd-text-images.ce.ce--vd_info_box, body.template--detail .article .article__content .ce.ce--vd_magazines .vd-text-images.vd-wrapper, .ce.ce--vd_magazines body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce.ce--vd_list_offers .vd-text-images.ce__title, .ce.ce--vd_list_offers body.template--detail .article .article__content .vd-text-images.ce__title, body.template--detail .article .article__content .content-element-directories .vd-text-images.text, .content-element-directories body.template--detail .article .article__content .vd-text-images.text, body.template--detail .article .article__content .content-element-directories .vd-text-images#directories_filter__form, .content-element-directories body.template--detail .article .article__content .vd-text-images#directories_filter__form, body.template--detail .article .article__content .content-element-directories .vd-text-images.directories-results, .content-element-directories body.template--detail .article .article__content .vd-text-images.directories-results, body.template--detail .article .article__content #tx-solr-search .vd-text-images.vd-wrapper, #tx-solr-search body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content main > .ce.ce--vd_event_teaser .vd-text-images.single-event-teaser, main > .ce.ce--vd_event_teaser body.template--detail .article .article__content .vd-text-images.single-event-teaser, body.template--detail .article .article__content .ce.ce--vd_departments_list .vd-text-images.ce__title, .ce.ce--vd_departments_list body.template--detail .article .article__content .vd-text-images.ce__title, body.template--detail .article .article__content .ce.ce--vd_divisions_list .vd-text-images.ce__title, .ce.ce--vd_divisions_list body.template--detail .article .article__content .vd-text-images.ce__title, body.template--detail .article .article__content .ce.ce--vd_persons_list .vd-text-images.ce__title, .ce.ce--vd_persons_list body.template--detail .article .article__content .vd-text-images.ce__title, body.template--detail .article .article__content .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-text-images.vd-wrapper, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-text-images.vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .vd-text-images.ce.ce--vd_job_form, body.template--detail .article .article__content .ce.ce--vd_social_wall > .vd-wrapper > .vd-text-images.ce__title, body.template--detail .article .article__content .ce--vd_downloads .vd-text-images.vd-wrapper, .ce--vd_downloads body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce--vd_download .vd-text-images.ce__title, .ce--vd_download body.template--detail .article .article__content .vd-text-images.ce__title, body.template--detail .article .article__content .ce--vd_download .vd-text-images.ce__content, .ce--vd_download body.template--detail .article .article__content .vd-text-images.ce__content, body.template--detail .article .article__content .ce.ce--vd_menu_teaser .vd-text-images.vd-wrapper, .ce.ce--vd_menu_teaser body.template--detail .article .article__content .vd-text-images.vd-wrapper, body.template--detail .article .article__content .ce.ce--vd_news_carousel > .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .vd-text-images.container, body.template--controllerDetail .article .article__content .vd-text-images.vd-breadcrumb, body.template--controllerDetail .article .article__content .vd-breadcrumb .vd-text-images.vd-nav, .vd-breadcrumb body.template--controllerDetail .article .article__content .vd-text-images.vd-nav, body.template--controllerDetail .article .article__content .vd-text-images#tx-solr-search, body.template--controllerDetail .article .article__content .vd-text-images.vd-filter-container, body.template--controllerDetail .article .article__content .vd-section--header .header__bottom .vd-text-images.vd-wrapper, .vd-section--header .header__bottom body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .vd-section--header .vd-text-images.header__navigation--buttons, .vd-section--header body.template--controllerDetail .article .article__content .vd-text-images.header__navigation--buttons, body.template--controllerDetail .article .article__content body:not(.template--startpage) .vd-section--header .vd-text-images.vd-wrapper, body:not(.template--startpage) .vd-section--header body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content body:not(.template--startpage) .vd-section .vd-text-images.header__navigation--buttons, body:not(.template--startpage) .vd-section body.template--controllerDetail .article .article__content .vd-text-images.header__navigation--buttons, body.template--controllerDetail .article .article__content body.template--startpage .vd-section--hero .vd-text-images.vd-wrapper, body.template--startpage .vd-section--hero body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .vd-text-images.content-element.gutachter-list, body.template--controllerDetail .article .article__content .vd-section--main .vd-text-images.vd-message, .vd-section--main body.template--controllerDetail .article .article__content .vd-text-images.vd-message, body.template--controllerDetail .article .article__content .vd-section--header .header__top .vd-text-images.vd-wrapper, .vd-section--header .header__top body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce.ce--vd_event_calendar .vd-text-images.vd-wrapper, .ce.ce--vd_event_calendar body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce.ce--vd_events_list > .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce.ce--vd_events_search > .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce.ce--vd_event_registration .vd-text-images.vd-wrapper, .ce.ce--vd_event_registration body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce--sfeventmgt_pieventdetail .vd-text-images.vd-wrapper, .ce--sfeventmgt_pieventdetail body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce--vd_event_list > .vd-text-images.vd-wrapper,
  body.template--controllerDetail .article .article__content .ce--vd_event_search > .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce.ce--vd_press_mailing_list_subscription .vd-text-images.vd-wrapper, .ce.ce--vd_press_mailing_list_subscription body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .vd-text-images.ce.ce--vd_newsletter_registration, body.template--controllerDetail .article .article__content .ce.ce--vd_services_teaser .vd-text-images.vd-wrapper, .ce.ce--vd_services_teaser body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce.ce--vd_text_teaser .vd-text-images.ce__title, .ce.ce--vd_text_teaser body.template--controllerDetail .article .article__content .vd-text-images.ce__title, body.template--controllerDetail .article .article__content .ce.ce--vd_news_teaser .vd-text-images.single-news-teaser, .ce.ce--vd_news_teaser body.template--controllerDetail .article .article__content .vd-text-images.single-news-teaser, body.template--controllerDetail .article .article__content .ce.ce--vd_news_list .vd-text-images.ce__title, .ce.ce--vd_news_list body.template--controllerDetail .article .article__content .vd-text-images.ce__title, body.template--controllerDetail .article .article__content .ce.ce--vd_news_list .vd-text-images.icon, .ce.ce--vd_news_list body.template--controllerDetail .article .article__content .vd-text-images.icon, body.template--controllerDetail .article .article__content .ce.ce--vd_news_list .vd-text-images.vd-actions, .ce.ce--vd_news_list body.template--controllerDetail .article .article__content .vd-text-images.vd-actions, body.template--controllerDetail .article .article__content .ce.ce--vd_news_list .vd-text-images.news__cta, .ce.ce--vd_news_list body.template--controllerDetail .article .article__content .vd-text-images.news__cta, body.template--controllerDetail .article .article__content .ce--vd_accordion .vd-text-images.ce__title, .ce--vd_accordion body.template--controllerDetail .article .article__content .vd-text-images.ce__title,
  body.template--controllerDetail .article .article__content .ce--vd_downloads .vd-text-images.ce__title, .ce--vd_downloads body.template--controllerDetail .article .article__content .vd-text-images.ce__title, body.template--controllerDetail .article .article__content .ce--vd_accordion .ce__content .vd-text-images.ce__bodytext, .ce--vd_accordion .ce__content body.template--controllerDetail .article .article__content .vd-text-images.ce__bodytext,
  body.template--controllerDetail .article .article__content .ce--vd_downloads .ce__content .vd-text-images.ce__bodytext, .ce--vd_downloads .ce__content body.template--controllerDetail .article .article__content .vd-text-images.ce__bodytext, body.template--controllerDetail .article .article__content .ce.ce--vd_carousel .ce__content > .vd-text-images.ce__bodytext, .ce.ce--vd_carousel body.template--controllerDetail .article .article__content .ce__content > .vd-text-images.ce__bodytext, body.template--controllerDetail .article .article__content .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-text-images.vd-wrapper, .ce.ce--vd_carousel.ce--bg_green__front_bright body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce.ce--vd_carousel.ce--bg_grey .vd-text-images.vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .vd-text-images.vd-slick-dots, body.template--controllerDetail .article .article__content .ce.ce--vd_image .vd-text-images.vd-wrapper, .ce.ce--vd_image body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce.ce--vd_text .vd-text-images.vd-wrapper, .ce.ce--vd_text body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce.ce--table .vd-text-images.vd-wrapper, .ce.ce--table body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce.ce--html .vd-text-images.vd-wrapper, .ce.ce--html body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce.ce--vd_text_images .vd-text-images.ce__title, .ce.ce--vd_text_images body.template--controllerDetail .article .article__content .vd-text-images.ce__title, body.template--controllerDetail .article .article__content .vd-text-images.ce.ce--vd_link_list, body.template--controllerDetail .article .article__content .vd-text-images.ce.ce--vd_quotation, body.template--controllerDetail .article .article__content .ce--vd_pages_teaser .vd-text-images.ce__title, .ce--vd_pages_teaser body.template--controllerDetail .article .article__content .vd-text-images.ce__title, body.template--controllerDetail .article .article__content .ce.ce--vd_video .vd-text-images.vd-wrapper, .ce.ce--vd_video body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce.ce--form_formframework .vd-text-images.vd-wrapper, .ce.ce--form_formframework body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .vd-text-images.ce.ce--vd_info_box, body.template--controllerDetail .article .article__content .ce.ce--vd_magazines .vd-text-images.vd-wrapper, .ce.ce--vd_magazines body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce.ce--vd_list_offers .vd-text-images.ce__title, .ce.ce--vd_list_offers body.template--controllerDetail .article .article__content .vd-text-images.ce__title, body.template--controllerDetail .article .article__content .content-element-directories .vd-text-images.text, .content-element-directories body.template--controllerDetail .article .article__content .vd-text-images.text, body.template--controllerDetail .article .article__content .content-element-directories .vd-text-images#directories_filter__form, .content-element-directories body.template--controllerDetail .article .article__content .vd-text-images#directories_filter__form, body.template--controllerDetail .article .article__content .content-element-directories .vd-text-images.directories-results, .content-element-directories body.template--controllerDetail .article .article__content .vd-text-images.directories-results, body.template--controllerDetail .article .article__content #tx-solr-search .vd-text-images.vd-wrapper, #tx-solr-search body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content main > .ce.ce--vd_event_teaser .vd-text-images.single-event-teaser, main > .ce.ce--vd_event_teaser body.template--controllerDetail .article .article__content .vd-text-images.single-event-teaser, body.template--controllerDetail .article .article__content .ce.ce--vd_departments_list .vd-text-images.ce__title, .ce.ce--vd_departments_list body.template--controllerDetail .article .article__content .vd-text-images.ce__title, body.template--controllerDetail .article .article__content .ce.ce--vd_divisions_list .vd-text-images.ce__title, .ce.ce--vd_divisions_list body.template--controllerDetail .article .article__content .vd-text-images.ce__title, body.template--controllerDetail .article .article__content .ce.ce--vd_persons_list .vd-text-images.ce__title, .ce.ce--vd_persons_list body.template--controllerDetail .article .article__content .vd-text-images.ce__title, body.template--controllerDetail .article .article__content .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-text-images.vd-wrapper, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-text-images.vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .vd-text-images.ce.ce--vd_job_form, body.template--controllerDetail .article .article__content .ce.ce--vd_social_wall > .vd-wrapper > .vd-text-images.ce__title, body.template--controllerDetail .article .article__content .ce--vd_downloads .vd-text-images.vd-wrapper, .ce--vd_downloads body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce--vd_download .vd-text-images.ce__title, .ce--vd_download body.template--controllerDetail .article .article__content .vd-text-images.ce__title, body.template--controllerDetail .article .article__content .ce--vd_download .vd-text-images.ce__content, .ce--vd_download body.template--controllerDetail .article .article__content .vd-text-images.ce__content, body.template--controllerDetail .article .article__content .ce.ce--vd_menu_teaser .vd-text-images.vd-wrapper, .ce.ce--vd_menu_teaser body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper, body.template--controllerDetail .article .article__content .ce.ce--vd_news_carousel > .vd-text-images.vd-wrapper {
    padding: 0px !important; }
    body.template--detail .article .article__content .vd-text-images.container .col-xl-6, body.template--detail .article .article__content .vd-text-images.vd-breadcrumb .col-xl-6, body.template--detail .article .article__content .vd-breadcrumb .vd-text-images.vd-nav .col-xl-6, .vd-breadcrumb body.template--detail .article .article__content .vd-text-images.vd-nav .col-xl-6, body.template--detail .article .article__content .vd-text-images#tx-solr-search .col-xl-6, body.template--detail .article .article__content .vd-text-images.vd-filter-container .col-xl-6, body.template--detail .article .article__content .vd-section--header .header__bottom .vd-text-images.vd-wrapper .col-xl-6, .vd-section--header .header__bottom body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .vd-section--header .vd-text-images.header__navigation--buttons .col-xl-6, .vd-section--header body.template--detail .article .article__content .vd-text-images.header__navigation--buttons .col-xl-6, body.template--detail .article .article__content body:not(.template--startpage) .vd-section--header .vd-text-images.vd-wrapper .col-xl-6, body:not(.template--startpage) .vd-section--header body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content body:not(.template--startpage) .vd-section .vd-text-images.header__navigation--buttons .col-xl-6, body:not(.template--startpage) .vd-section body.template--detail .article .article__content .vd-text-images.header__navigation--buttons .col-xl-6, body.template--detail .article .article__content body.template--startpage .vd-section--hero .vd-text-images.vd-wrapper .col-xl-6, body.template--startpage .vd-section--hero body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .vd-text-images.content-element.gutachter-list .col-xl-6, body.template--detail .article .article__content .vd-section--main .vd-text-images.vd-message .col-xl-6, .vd-section--main body.template--detail .article .article__content .vd-text-images.vd-message .col-xl-6, body.template--detail .article .article__content .vd-section--header .header__top .vd-text-images.vd-wrapper .col-xl-6, .vd-section--header .header__top body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_event_calendar .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_event_calendar body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_events_list > .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_events_search > .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_event_registration .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_event_registration body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce--sfeventmgt_pieventdetail .vd-text-images.vd-wrapper .col-xl-6, .ce--sfeventmgt_pieventdetail body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce--vd_event_list > .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce--vd_event_search > .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_press_mailing_list_subscription .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_press_mailing_list_subscription body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .vd-text-images.ce.ce--vd_newsletter_registration .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_services_teaser .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_services_teaser body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_text_teaser .vd-text-images.ce__title .col-xl-6, .ce.ce--vd_text_teaser body.template--detail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_news_teaser .vd-text-images.single-news-teaser .col-xl-6, .ce.ce--vd_news_teaser body.template--detail .article .article__content .vd-text-images.single-news-teaser .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_news_list .vd-text-images.ce__title .col-xl-6, .ce.ce--vd_news_list body.template--detail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_news_list .vd-text-images.icon .col-xl-6, .ce.ce--vd_news_list body.template--detail .article .article__content .vd-text-images.icon .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_news_list .vd-text-images.vd-actions .col-xl-6, .ce.ce--vd_news_list body.template--detail .article .article__content .vd-text-images.vd-actions .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_news_list .vd-text-images.news__cta .col-xl-6, .ce.ce--vd_news_list body.template--detail .article .article__content .vd-text-images.news__cta .col-xl-6, body.template--detail .article .article__content .ce--vd_accordion .vd-text-images.ce__title .col-xl-6, .ce--vd_accordion body.template--detail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--detail .article .article__content .ce--vd_downloads .vd-text-images.ce__title .col-xl-6, .ce--vd_downloads body.template--detail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--detail .article .article__content .ce--vd_accordion .ce__content .vd-text-images.ce__bodytext .col-xl-6, .ce--vd_accordion .ce__content body.template--detail .article .article__content .vd-text-images.ce__bodytext .col-xl-6, body.template--detail .article .article__content .ce--vd_downloads .ce__content .vd-text-images.ce__bodytext .col-xl-6, .ce--vd_downloads .ce__content body.template--detail .article .article__content .vd-text-images.ce__bodytext .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_carousel .ce__content > .vd-text-images.ce__bodytext .col-xl-6, .ce.ce--vd_carousel body.template--detail .article .article__content .ce__content > .vd-text-images.ce__bodytext .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_carousel.ce--bg_green__front_bright body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_carousel.ce--bg_grey .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_carousel.ce--bg_grey body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .vd-text-images.vd-slick-dots .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_image .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_image body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_text .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_text body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce.ce--table .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--table body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce.ce--html .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--html body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_text_images .vd-text-images.ce__title .col-xl-6, .ce.ce--vd_text_images body.template--detail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--detail .article .article__content .vd-text-images.ce.ce--vd_link_list .col-xl-6, body.template--detail .article .article__content .vd-text-images.ce.ce--vd_quotation .col-xl-6, body.template--detail .article .article__content .ce--vd_pages_teaser .vd-text-images.ce__title .col-xl-6, .ce--vd_pages_teaser body.template--detail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_video .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_video body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce.ce--form_formframework .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--form_formframework body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .vd-text-images.ce.ce--vd_info_box .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_magazines .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_magazines body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_list_offers .vd-text-images.ce__title .col-xl-6, .ce.ce--vd_list_offers body.template--detail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--detail .article .article__content .content-element-directories .vd-text-images.text .col-xl-6, .content-element-directories body.template--detail .article .article__content .vd-text-images.text .col-xl-6, body.template--detail .article .article__content .content-element-directories .vd-text-images#directories_filter__form .col-xl-6, .content-element-directories body.template--detail .article .article__content .vd-text-images#directories_filter__form .col-xl-6, body.template--detail .article .article__content .content-element-directories .vd-text-images.directories-results .col-xl-6, .content-element-directories body.template--detail .article .article__content .vd-text-images.directories-results .col-xl-6, body.template--detail .article .article__content #tx-solr-search .vd-text-images.vd-wrapper .col-xl-6, #tx-solr-search body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content main > .ce.ce--vd_event_teaser .vd-text-images.single-event-teaser .col-xl-6, main > .ce.ce--vd_event_teaser body.template--detail .article .article__content .vd-text-images.single-event-teaser .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_departments_list .vd-text-images.ce__title .col-xl-6, .ce.ce--vd_departments_list body.template--detail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_divisions_list .vd-text-images.ce__title .col-xl-6, .ce.ce--vd_divisions_list body.template--detail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_persons_list .vd-text-images.ce__title .col-xl-6, .ce.ce--vd_persons_list body.template--detail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_department_card:not(.ce-layout--aside-box) body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .vd-text-images.ce.ce--vd_job_form .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_social_wall > .vd-wrapper > .vd-text-images.ce__title .col-xl-6, body.template--detail .article .article__content .ce--vd_downloads .vd-text-images.vd-wrapper .col-xl-6, .ce--vd_downloads body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce--vd_download .vd-text-images.ce__title .col-xl-6, .ce--vd_download body.template--detail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--detail .article .article__content .ce--vd_download .vd-text-images.ce__content .col-xl-6, .ce--vd_download body.template--detail .article .article__content .vd-text-images.ce__content .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_menu_teaser .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_menu_teaser body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--detail .article .article__content .ce.ce--vd_news_carousel > .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .vd-text-images.container .col-xl-6, body.template--controllerDetail .article .article__content .vd-text-images.vd-breadcrumb .col-xl-6, body.template--controllerDetail .article .article__content .vd-breadcrumb .vd-text-images.vd-nav .col-xl-6, .vd-breadcrumb body.template--controllerDetail .article .article__content .vd-text-images.vd-nav .col-xl-6, body.template--controllerDetail .article .article__content .vd-text-images#tx-solr-search .col-xl-6, body.template--controllerDetail .article .article__content .vd-text-images.vd-filter-container .col-xl-6, body.template--controllerDetail .article .article__content .vd-section--header .header__bottom .vd-text-images.vd-wrapper .col-xl-6, .vd-section--header .header__bottom body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .vd-section--header .vd-text-images.header__navigation--buttons .col-xl-6, .vd-section--header body.template--controllerDetail .article .article__content .vd-text-images.header__navigation--buttons .col-xl-6, body.template--controllerDetail .article .article__content body:not(.template--startpage) .vd-section--header .vd-text-images.vd-wrapper .col-xl-6, body:not(.template--startpage) .vd-section--header body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content body:not(.template--startpage) .vd-section .vd-text-images.header__navigation--buttons .col-xl-6, body:not(.template--startpage) .vd-section body.template--controllerDetail .article .article__content .vd-text-images.header__navigation--buttons .col-xl-6, body.template--controllerDetail .article .article__content body.template--startpage .vd-section--hero .vd-text-images.vd-wrapper .col-xl-6, body.template--startpage .vd-section--hero body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .vd-text-images.content-element.gutachter-list .col-xl-6, body.template--controllerDetail .article .article__content .vd-section--main .vd-text-images.vd-message .col-xl-6, .vd-section--main body.template--controllerDetail .article .article__content .vd-text-images.vd-message .col-xl-6, body.template--controllerDetail .article .article__content .vd-section--header .header__top .vd-text-images.vd-wrapper .col-xl-6, .vd-section--header .header__top body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_event_calendar .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_event_calendar body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_events_list > .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_events_search > .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_event_registration .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_event_registration body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce--sfeventmgt_pieventdetail .vd-text-images.vd-wrapper .col-xl-6, .ce--sfeventmgt_pieventdetail body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce--vd_event_list > .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce--vd_event_search > .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_press_mailing_list_subscription .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_press_mailing_list_subscription body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .vd-text-images.ce.ce--vd_newsletter_registration .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_services_teaser .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_services_teaser body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_text_teaser .vd-text-images.ce__title .col-xl-6, .ce.ce--vd_text_teaser body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_news_teaser .vd-text-images.single-news-teaser .col-xl-6, .ce.ce--vd_news_teaser body.template--controllerDetail .article .article__content .vd-text-images.single-news-teaser .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_news_list .vd-text-images.ce__title .col-xl-6, .ce.ce--vd_news_list body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_news_list .vd-text-images.icon .col-xl-6, .ce.ce--vd_news_list body.template--controllerDetail .article .article__content .vd-text-images.icon .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_news_list .vd-text-images.vd-actions .col-xl-6, .ce.ce--vd_news_list body.template--controllerDetail .article .article__content .vd-text-images.vd-actions .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_news_list .vd-text-images.news__cta .col-xl-6, .ce.ce--vd_news_list body.template--controllerDetail .article .article__content .vd-text-images.news__cta .col-xl-6, body.template--controllerDetail .article .article__content .ce--vd_accordion .vd-text-images.ce__title .col-xl-6, .ce--vd_accordion body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--controllerDetail .article .article__content .ce--vd_downloads .vd-text-images.ce__title .col-xl-6, .ce--vd_downloads body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--controllerDetail .article .article__content .ce--vd_accordion .ce__content .vd-text-images.ce__bodytext .col-xl-6, .ce--vd_accordion .ce__content body.template--controllerDetail .article .article__content .vd-text-images.ce__bodytext .col-xl-6, body.template--controllerDetail .article .article__content .ce--vd_downloads .ce__content .vd-text-images.ce__bodytext .col-xl-6, .ce--vd_downloads .ce__content body.template--controllerDetail .article .article__content .vd-text-images.ce__bodytext .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_carousel .ce__content > .vd-text-images.ce__bodytext .col-xl-6, .ce.ce--vd_carousel body.template--controllerDetail .article .article__content .ce__content > .vd-text-images.ce__bodytext .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_carousel.ce--bg_green__front_bright body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_carousel.ce--bg_grey .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_carousel.ce--bg_grey body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .vd-text-images.vd-slick-dots .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_image .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_image body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_text .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_text body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--table .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--table body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--html .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--html body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_text_images .vd-text-images.ce__title .col-xl-6, .ce.ce--vd_text_images body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--controllerDetail .article .article__content .vd-text-images.ce.ce--vd_link_list .col-xl-6, body.template--controllerDetail .article .article__content .vd-text-images.ce.ce--vd_quotation .col-xl-6, body.template--controllerDetail .article .article__content .ce--vd_pages_teaser .vd-text-images.ce__title .col-xl-6, .ce--vd_pages_teaser body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_video .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_video body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--form_formframework .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--form_formframework body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .vd-text-images.ce.ce--vd_info_box .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_magazines .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_magazines body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_list_offers .vd-text-images.ce__title .col-xl-6, .ce.ce--vd_list_offers body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--controllerDetail .article .article__content .content-element-directories .vd-text-images.text .col-xl-6, .content-element-directories body.template--controllerDetail .article .article__content .vd-text-images.text .col-xl-6, body.template--controllerDetail .article .article__content .content-element-directories .vd-text-images#directories_filter__form .col-xl-6, .content-element-directories body.template--controllerDetail .article .article__content .vd-text-images#directories_filter__form .col-xl-6, body.template--controllerDetail .article .article__content .content-element-directories .vd-text-images.directories-results .col-xl-6, .content-element-directories body.template--controllerDetail .article .article__content .vd-text-images.directories-results .col-xl-6, body.template--controllerDetail .article .article__content #tx-solr-search .vd-text-images.vd-wrapper .col-xl-6, #tx-solr-search body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content main > .ce.ce--vd_event_teaser .vd-text-images.single-event-teaser .col-xl-6, main > .ce.ce--vd_event_teaser body.template--controllerDetail .article .article__content .vd-text-images.single-event-teaser .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_departments_list .vd-text-images.ce__title .col-xl-6, .ce.ce--vd_departments_list body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_divisions_list .vd-text-images.ce__title .col-xl-6, .ce.ce--vd_divisions_list body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_persons_list .vd-text-images.ce__title .col-xl-6, .ce.ce--vd_persons_list body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_department_card:not(.ce-layout--aside-box) body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .vd-text-images.ce.ce--vd_job_form .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_social_wall > .vd-wrapper > .vd-text-images.ce__title .col-xl-6, body.template--controllerDetail .article .article__content .ce--vd_downloads .vd-text-images.vd-wrapper .col-xl-6, .ce--vd_downloads body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce--vd_download .vd-text-images.ce__title .col-xl-6, .ce--vd_download body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-xl-6, body.template--controllerDetail .article .article__content .ce--vd_download .vd-text-images.ce__content .col-xl-6, .ce--vd_download body.template--controllerDetail .article .article__content .vd-text-images.ce__content .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_menu_teaser .vd-text-images.vd-wrapper .col-xl-6, .ce.ce--vd_menu_teaser body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-xl-6, body.template--controllerDetail .article .article__content .ce.ce--vd_news_carousel > .vd-text-images.vd-wrapper .col-xl-6 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%; }
    body.template--detail .article .article__content .vd-text-images.container .col-lg-6, body.template--detail .article .article__content .vd-text-images.vd-breadcrumb .col-lg-6, body.template--detail .article .article__content .vd-breadcrumb .vd-text-images.vd-nav .col-lg-6, .vd-breadcrumb body.template--detail .article .article__content .vd-text-images.vd-nav .col-lg-6, body.template--detail .article .article__content .vd-text-images#tx-solr-search .col-lg-6, body.template--detail .article .article__content .vd-text-images.vd-filter-container .col-lg-6, body.template--detail .article .article__content .vd-section--header .header__bottom .vd-text-images.vd-wrapper .col-lg-6, .vd-section--header .header__bottom body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .vd-section--header .vd-text-images.header__navigation--buttons .col-lg-6, .vd-section--header body.template--detail .article .article__content .vd-text-images.header__navigation--buttons .col-lg-6, body.template--detail .article .article__content body:not(.template--startpage) .vd-section--header .vd-text-images.vd-wrapper .col-lg-6, body:not(.template--startpage) .vd-section--header body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content body:not(.template--startpage) .vd-section .vd-text-images.header__navigation--buttons .col-lg-6, body:not(.template--startpage) .vd-section body.template--detail .article .article__content .vd-text-images.header__navigation--buttons .col-lg-6, body.template--detail .article .article__content body.template--startpage .vd-section--hero .vd-text-images.vd-wrapper .col-lg-6, body.template--startpage .vd-section--hero body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .vd-text-images.content-element.gutachter-list .col-lg-6, body.template--detail .article .article__content .vd-section--main .vd-text-images.vd-message .col-lg-6, .vd-section--main body.template--detail .article .article__content .vd-text-images.vd-message .col-lg-6, body.template--detail .article .article__content .vd-section--header .header__top .vd-text-images.vd-wrapper .col-lg-6, .vd-section--header .header__top body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_event_calendar .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_event_calendar body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_events_list > .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_events_search > .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_event_registration .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_event_registration body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce--sfeventmgt_pieventdetail .vd-text-images.vd-wrapper .col-lg-6, .ce--sfeventmgt_pieventdetail body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce--vd_event_list > .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce--vd_event_search > .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_press_mailing_list_subscription .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_press_mailing_list_subscription body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .vd-text-images.ce.ce--vd_newsletter_registration .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_services_teaser .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_services_teaser body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_text_teaser .vd-text-images.ce__title .col-lg-6, .ce.ce--vd_text_teaser body.template--detail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_news_teaser .vd-text-images.single-news-teaser .col-lg-6, .ce.ce--vd_news_teaser body.template--detail .article .article__content .vd-text-images.single-news-teaser .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_news_list .vd-text-images.ce__title .col-lg-6, .ce.ce--vd_news_list body.template--detail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_news_list .vd-text-images.icon .col-lg-6, .ce.ce--vd_news_list body.template--detail .article .article__content .vd-text-images.icon .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_news_list .vd-text-images.vd-actions .col-lg-6, .ce.ce--vd_news_list body.template--detail .article .article__content .vd-text-images.vd-actions .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_news_list .vd-text-images.news__cta .col-lg-6, .ce.ce--vd_news_list body.template--detail .article .article__content .vd-text-images.news__cta .col-lg-6, body.template--detail .article .article__content .ce--vd_accordion .vd-text-images.ce__title .col-lg-6, .ce--vd_accordion body.template--detail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--detail .article .article__content .ce--vd_downloads .vd-text-images.ce__title .col-lg-6, .ce--vd_downloads body.template--detail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--detail .article .article__content .ce--vd_accordion .ce__content .vd-text-images.ce__bodytext .col-lg-6, .ce--vd_accordion .ce__content body.template--detail .article .article__content .vd-text-images.ce__bodytext .col-lg-6, body.template--detail .article .article__content .ce--vd_downloads .ce__content .vd-text-images.ce__bodytext .col-lg-6, .ce--vd_downloads .ce__content body.template--detail .article .article__content .vd-text-images.ce__bodytext .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_carousel .ce__content > .vd-text-images.ce__bodytext .col-lg-6, .ce.ce--vd_carousel body.template--detail .article .article__content .ce__content > .vd-text-images.ce__bodytext .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_carousel.ce--bg_green__front_bright body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_carousel.ce--bg_grey .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_carousel.ce--bg_grey body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .vd-text-images.vd-slick-dots .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_image .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_image body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_text .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_text body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce.ce--table .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--table body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce.ce--html .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--html body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_text_images .vd-text-images.ce__title .col-lg-6, .ce.ce--vd_text_images body.template--detail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--detail .article .article__content .vd-text-images.ce.ce--vd_link_list .col-lg-6, body.template--detail .article .article__content .vd-text-images.ce.ce--vd_quotation .col-lg-6, body.template--detail .article .article__content .ce--vd_pages_teaser .vd-text-images.ce__title .col-lg-6, .ce--vd_pages_teaser body.template--detail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_video .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_video body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce.ce--form_formframework .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--form_formframework body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .vd-text-images.ce.ce--vd_info_box .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_magazines .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_magazines body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_list_offers .vd-text-images.ce__title .col-lg-6, .ce.ce--vd_list_offers body.template--detail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--detail .article .article__content .content-element-directories .vd-text-images.text .col-lg-6, .content-element-directories body.template--detail .article .article__content .vd-text-images.text .col-lg-6, body.template--detail .article .article__content .content-element-directories .vd-text-images#directories_filter__form .col-lg-6, .content-element-directories body.template--detail .article .article__content .vd-text-images#directories_filter__form .col-lg-6, body.template--detail .article .article__content .content-element-directories .vd-text-images.directories-results .col-lg-6, .content-element-directories body.template--detail .article .article__content .vd-text-images.directories-results .col-lg-6, body.template--detail .article .article__content #tx-solr-search .vd-text-images.vd-wrapper .col-lg-6, #tx-solr-search body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content main > .ce.ce--vd_event_teaser .vd-text-images.single-event-teaser .col-lg-6, main > .ce.ce--vd_event_teaser body.template--detail .article .article__content .vd-text-images.single-event-teaser .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_departments_list .vd-text-images.ce__title .col-lg-6, .ce.ce--vd_departments_list body.template--detail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_divisions_list .vd-text-images.ce__title .col-lg-6, .ce.ce--vd_divisions_list body.template--detail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_persons_list .vd-text-images.ce__title .col-lg-6, .ce.ce--vd_persons_list body.template--detail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_department_card:not(.ce-layout--aside-box) body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .vd-text-images.ce.ce--vd_job_form .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_social_wall > .vd-wrapper > .vd-text-images.ce__title .col-lg-6, body.template--detail .article .article__content .ce--vd_downloads .vd-text-images.vd-wrapper .col-lg-6, .ce--vd_downloads body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce--vd_download .vd-text-images.ce__title .col-lg-6, .ce--vd_download body.template--detail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--detail .article .article__content .ce--vd_download .vd-text-images.ce__content .col-lg-6, .ce--vd_download body.template--detail .article .article__content .vd-text-images.ce__content .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_menu_teaser .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_menu_teaser body.template--detail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--detail .article .article__content .ce.ce--vd_news_carousel > .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .vd-text-images.container .col-lg-6, body.template--controllerDetail .article .article__content .vd-text-images.vd-breadcrumb .col-lg-6, body.template--controllerDetail .article .article__content .vd-breadcrumb .vd-text-images.vd-nav .col-lg-6, .vd-breadcrumb body.template--controllerDetail .article .article__content .vd-text-images.vd-nav .col-lg-6, body.template--controllerDetail .article .article__content .vd-text-images#tx-solr-search .col-lg-6, body.template--controllerDetail .article .article__content .vd-text-images.vd-filter-container .col-lg-6, body.template--controllerDetail .article .article__content .vd-section--header .header__bottom .vd-text-images.vd-wrapper .col-lg-6, .vd-section--header .header__bottom body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .vd-section--header .vd-text-images.header__navigation--buttons .col-lg-6, .vd-section--header body.template--controllerDetail .article .article__content .vd-text-images.header__navigation--buttons .col-lg-6, body.template--controllerDetail .article .article__content body:not(.template--startpage) .vd-section--header .vd-text-images.vd-wrapper .col-lg-6, body:not(.template--startpage) .vd-section--header body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content body:not(.template--startpage) .vd-section .vd-text-images.header__navigation--buttons .col-lg-6, body:not(.template--startpage) .vd-section body.template--controllerDetail .article .article__content .vd-text-images.header__navigation--buttons .col-lg-6, body.template--controllerDetail .article .article__content body.template--startpage .vd-section--hero .vd-text-images.vd-wrapper .col-lg-6, body.template--startpage .vd-section--hero body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .vd-text-images.content-element.gutachter-list .col-lg-6, body.template--controllerDetail .article .article__content .vd-section--main .vd-text-images.vd-message .col-lg-6, .vd-section--main body.template--controllerDetail .article .article__content .vd-text-images.vd-message .col-lg-6, body.template--controllerDetail .article .article__content .vd-section--header .header__top .vd-text-images.vd-wrapper .col-lg-6, .vd-section--header .header__top body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_event_calendar .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_event_calendar body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_events_list > .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_events_search > .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_event_registration .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_event_registration body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce--sfeventmgt_pieventdetail .vd-text-images.vd-wrapper .col-lg-6, .ce--sfeventmgt_pieventdetail body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce--vd_event_list > .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce--vd_event_search > .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_press_mailing_list_subscription .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_press_mailing_list_subscription body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .vd-text-images.ce.ce--vd_newsletter_registration .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_services_teaser .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_services_teaser body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_text_teaser .vd-text-images.ce__title .col-lg-6, .ce.ce--vd_text_teaser body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_news_teaser .vd-text-images.single-news-teaser .col-lg-6, .ce.ce--vd_news_teaser body.template--controllerDetail .article .article__content .vd-text-images.single-news-teaser .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_news_list .vd-text-images.ce__title .col-lg-6, .ce.ce--vd_news_list body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_news_list .vd-text-images.icon .col-lg-6, .ce.ce--vd_news_list body.template--controllerDetail .article .article__content .vd-text-images.icon .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_news_list .vd-text-images.vd-actions .col-lg-6, .ce.ce--vd_news_list body.template--controllerDetail .article .article__content .vd-text-images.vd-actions .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_news_list .vd-text-images.news__cta .col-lg-6, .ce.ce--vd_news_list body.template--controllerDetail .article .article__content .vd-text-images.news__cta .col-lg-6, body.template--controllerDetail .article .article__content .ce--vd_accordion .vd-text-images.ce__title .col-lg-6, .ce--vd_accordion body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--controllerDetail .article .article__content .ce--vd_downloads .vd-text-images.ce__title .col-lg-6, .ce--vd_downloads body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--controllerDetail .article .article__content .ce--vd_accordion .ce__content .vd-text-images.ce__bodytext .col-lg-6, .ce--vd_accordion .ce__content body.template--controllerDetail .article .article__content .vd-text-images.ce__bodytext .col-lg-6, body.template--controllerDetail .article .article__content .ce--vd_downloads .ce__content .vd-text-images.ce__bodytext .col-lg-6, .ce--vd_downloads .ce__content body.template--controllerDetail .article .article__content .vd-text-images.ce__bodytext .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_carousel .ce__content > .vd-text-images.ce__bodytext .col-lg-6, .ce.ce--vd_carousel body.template--controllerDetail .article .article__content .ce__content > .vd-text-images.ce__bodytext .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_carousel.ce--bg_green__front_bright body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_carousel.ce--bg_grey .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_carousel.ce--bg_grey body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .vd-text-images.vd-slick-dots .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_image .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_image body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_text .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_text body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--table .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--table body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--html .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--html body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_text_images .vd-text-images.ce__title .col-lg-6, .ce.ce--vd_text_images body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--controllerDetail .article .article__content .vd-text-images.ce.ce--vd_link_list .col-lg-6, body.template--controllerDetail .article .article__content .vd-text-images.ce.ce--vd_quotation .col-lg-6, body.template--controllerDetail .article .article__content .ce--vd_pages_teaser .vd-text-images.ce__title .col-lg-6, .ce--vd_pages_teaser body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_video .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_video body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--form_formframework .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--form_formframework body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .vd-text-images.ce.ce--vd_info_box .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_magazines .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_magazines body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_list_offers .vd-text-images.ce__title .col-lg-6, .ce.ce--vd_list_offers body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--controllerDetail .article .article__content .content-element-directories .vd-text-images.text .col-lg-6, .content-element-directories body.template--controllerDetail .article .article__content .vd-text-images.text .col-lg-6, body.template--controllerDetail .article .article__content .content-element-directories .vd-text-images#directories_filter__form .col-lg-6, .content-element-directories body.template--controllerDetail .article .article__content .vd-text-images#directories_filter__form .col-lg-6, body.template--controllerDetail .article .article__content .content-element-directories .vd-text-images.directories-results .col-lg-6, .content-element-directories body.template--controllerDetail .article .article__content .vd-text-images.directories-results .col-lg-6, body.template--controllerDetail .article .article__content #tx-solr-search .vd-text-images.vd-wrapper .col-lg-6, #tx-solr-search body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content main > .ce.ce--vd_event_teaser .vd-text-images.single-event-teaser .col-lg-6, main > .ce.ce--vd_event_teaser body.template--controllerDetail .article .article__content .vd-text-images.single-event-teaser .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_departments_list .vd-text-images.ce__title .col-lg-6, .ce.ce--vd_departments_list body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_divisions_list .vd-text-images.ce__title .col-lg-6, .ce.ce--vd_divisions_list body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_persons_list .vd-text-images.ce__title .col-lg-6, .ce.ce--vd_persons_list body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_department_card:not(.ce-layout--aside-box) body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .vd-text-images.ce.ce--vd_job_form .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_social_wall > .vd-wrapper > .vd-text-images.ce__title .col-lg-6, body.template--controllerDetail .article .article__content .ce--vd_downloads .vd-text-images.vd-wrapper .col-lg-6, .ce--vd_downloads body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce--vd_download .vd-text-images.ce__title .col-lg-6, .ce--vd_download body.template--controllerDetail .article .article__content .vd-text-images.ce__title .col-lg-6, body.template--controllerDetail .article .article__content .ce--vd_download .vd-text-images.ce__content .col-lg-6, .ce--vd_download body.template--controllerDetail .article .article__content .vd-text-images.ce__content .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_menu_teaser .vd-text-images.vd-wrapper .col-lg-6, .ce.ce--vd_menu_teaser body.template--controllerDetail .article .article__content .vd-text-images.vd-wrapper .col-lg-6, body.template--controllerDetail .article .article__content .ce.ce--vd_news_carousel > .vd-text-images.vd-wrapper .col-lg-6 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%; }
  body.template--detail .article .vd-wrapper, body.template--controllerDetail .article .vd-wrapper {
    padding-left: 0rem !important;
    padding-right: 0rem !important; }
  body.template--detail .article .ce__title,
  body.template--detail .article .ce__content, body.template--controllerDetail .article .ce__title,
  body.template--controllerDetail .article .ce__content {
    padding-left: 0rem !important;
    padding-right: 0rem !important; }
  body.template--detail .article .colorize .ce__title,
  body.template--detail .article .colorize .ce__content, body.template--controllerDetail .article .colorize .ce__title,
  body.template--controllerDetail .article .colorize .ce__content {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important; }
  body.template--detail .article .ce--vd_download .ce__title > *, body.template--controllerDetail .article .ce--vd_download .ce__title > * {
    font-size: 32px;
    font-size: 2rem;
    text-transform: none; }
  body.template--detail .article .ce--vd_download .ce__title > h4, body.template--controllerDetail .article .ce--vd_download .ce__title > h4 {
    font-size: 22px;
    font-size: 1.375rem;
    margin-bottom: 0px; }

body.template--detail .aside, body.template--controllerDetail .aside {
  padding-top: 0rem;
  padding-bottom: 2.5rem; }
  @media only screen and (min-width: 768px) {
    body.template--detail .aside, body.template--controllerDetail .aside {
      padding-top: 4.375rem; } }

@media only screen and (min-width: 768px) {
  .ce.ce--vd_page_teaser .order-content--cta_right__visual_left [class^="col-"]:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
  .ce.ce--vd_page_teaser .order-content--cta_right__visual_left [class^="col-"]:last-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
  .ce.ce--vd_page_teaser .order-content--cta_right__visual_left [class^="col-"].landscape-teaser-right {
    padding-left: 0 !important;
    padding-right: calc((100% / 24) * 2) !important; }
    .ce.ce--vd_page_teaser .order-content--cta_right__visual_left [class^="col-"].landscape-teaser-right:before {
      -webkit-transform: scale(-1);
              transform: scale(-1);
      left: -35px; }
  .ce.ce--vd_page_teaser .order-content--cta_right__visual_left .vd-image--teaser:before {
    -webkit-transform: scale(-1);
            transform: scale(-1);
    left: -35px; }
  .ce.ce--vd_page_teaser .order-content--cta_right__visual_left .vd-teaser__image {
    padding-right: calc((100% / 24) * 2); }
  .ce.ce--vd_page_teaser .order-content--cta_right__visual_left .vd-teaser--text {
    padding-left: calc((100% / 24) * 2);
    padding-right: 0; } }

.ce {
  position: relative; }

.ce:not(.ce--vd_news_carousel).ce--color-sheme.ce--blue {
  background-color: #015D7D; }

.ce:not(.ce--vd_news_carousel).ce--color-sheme.ce--mint {
  background-color: #36AFA4; }

.ce:not(.ce--vd_news_carousel).ce--color-sheme.ce--purple {
  background-color: #54237F; }

.ce:not(.ce--vd_news_carousel).ce--color-sheme.ce--blue--tone {
  background-color: #E5EEF2; }

.ce:not(.ce--vd_news_carousel).ce--color-sheme.ce--mint--tone {
  background-color: #EEF8F7; }

.ce:not(.ce--vd_news_carousel).ce--color-sheme.ce--purple--tone {
  background-color: #EDE8F2; }

.ce.ce--vd_news_carousel.ce--color-sheme.ce--blue .vd-slider {
  background-color: #015D7D; }

.ce.ce--vd_news_carousel.ce--color-sheme.ce--mint .vd-slider {
  background-color: #36AFA4; }

.ce.ce--vd_news_carousel.ce--color-sheme.ce--purple .vd-slider {
  background-color: #54237F; }

.ce.ce--vd_news_carousel.ce--color-sheme.ce--blue--tone .vd-slider {
  background-color: #E5EEF2; }

.ce.ce--vd_news_carousel.ce--color-sheme.ce--mint--tone .vd-slider {
  background-color: #EEF8F7; }

.ce.ce--vd_news_carousel.ce--color-sheme.ce--purple--tone .vd-slider {
  background-color: #EDE8F2; }

.vd-wrapper.colorize.colorize--blue {
  background-color: #015D7D; }

.vd-wrapper.colorize.colorize--mint {
  background-color: #36AFA4; }

.vd-wrapper.colorize.colorize--purple {
  background-color: #54237F; }

.vd-wrapper.colorize.colorize--blue--tone {
  background-color: #E5EEF2; }

.vd-wrapper.colorize.colorize--mint--tone {
  background-color: #EEF8F7; }

.vd-wrapper.colorize.colorize--purple--tone {
  background-color: #EDE8F2; }

.ce2.ce-layout {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }
  .ce2.ce-layout--aside-box .vd-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .ce2.ce-layout--aside-box .vd-wrapper.colorize {
    padding: 10px !important;
    padding-bottom: 30px !important; }

.ce.ce-layout {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }
  .ce.ce-layout--aside-box .vd-wrapper.colorize {
    padding: 10px !important;
    padding-bottom: 30px !important; }

.ce.ce--vd_board_member {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem; }
  @media only screen and (min-width: 768px) {
    .ce.ce--vd_board_member {
      padding-top: 5rem;
      padding-bottom: 5rem; } }
  .ce.ce--vd_board_member .col-md-8 {
    -ms-flex-item-align: center;
        align-self: center; }
  .ce.ce--vd_board_member .ce__title__subtitle--top {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase; }
  .ce.ce--vd_board_member .ce__title__subtitle--bottom {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 700; }
  @media only screen and (min-width: 768px) {
    .ce.ce--vd_board_member:nth-child(odd) .col-md-4 {
      padding-left: 3.75rem; } }
  .ce.ce--vd_board_member:nth-child(even) {
    background-color: #EEF8F7; }
    @media only screen and (min-width: 768px) {
      .ce.ce--vd_board_member:nth-child(even) .col-md-8 {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
    @media only screen and (min-width: 768px) {
      .ce.ce--vd_board_member:nth-child(even) .col-md-4 {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        padding-right: 3.75rem; } }

.ce.ce--vd_menu_teaser {
  padding-bottom: 7.5rem;
  margin-top: 7.5rem; }
  .ce.ce--vd_menu_teaser.version--image-menu {
    padding-top: 5.625rem;
    padding-bottom: 5.625rem; }
  .ce.ce--vd_menu_teaser .vd-wrapper {
    position: relative; }
  .ce.ce--vd_menu_teaser .ce__title {
    margin-bottom: 2.5rem; }
    .ce.ce--vd_menu_teaser .ce__title .top-label, .ce.ce--vd_menu_teaser .ce__title .tag {
      display: none; }
    .ce.ce--vd_menu_teaser .ce__title > * {
      text-align: right;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      margin: 0; }
    .ce.ce--vd_menu_teaser .ce__title .landscape-left {
      text-align: left; }
  @media only screen and (max-width: 991px) {
    .ce.ce--vd_menu_teaser .row [class^="col-"] {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%;
      padding-right: 10px;
      padding-left: 10px; } }
  @media only screen and (max-width: 767px) {
    .ce.ce--vd_menu_teaser .row [class^="col-"] {
      padding-right: 20px;
      padding-left: 20px; } }
  .ce.ce--vd_menu_teaser .order-content {
    padding-right: 0px;
    padding-left: 0px; }
    .ce.ce--vd_menu_teaser .order-content .ce__title {
      margin-bottom: 0px; }
      .ce.ce--vd_menu_teaser .order-content .ce__title > * {
        font-size: 40px;
        font-size: 2.5rem;
        line-height: 50px;
        -webkit-transform: translateY(0%);
                transform: translateY(0%); }
    .ce.ce--vd_menu_teaser .order-content .ce__bodytext p {
      line-height: 30px; }
    .ce.ce--vd_menu_teaser .order-content .vd-teaser__image .vd-image--teaser {
      position: relative;
      padding-top: 30px;
      padding-bottom: 30px;
      margin-top: 10px; }
      .ce.ce--vd_menu_teaser .order-content .vd-teaser__image .vd-image--teaser:before {
        content: '';
        height: 100%;
        width: 100%;
        display: inline-block;
        position: absolute;
        z-index: 1;
        right: 32px;
        top: 0px;
        margin-top: 0px;
        background-position: right center;
        background-repeat: no-repeat;
        background-size: 54%;
        background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Ebene_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 332 452' style='enable-background:new 0 0 332 452;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23015D7D;%7D%0A%3C/style%3E%3Cg id='Gruppe_3153' transform='translate(-64 -827)'%3E%3Cg id='pattern' transform='translate(-347 811)'%3E%3Cg id='pattern-2' transform='translate(49 223)'%3E%3Cg id='Gruppe_3123'%3E%3Ccircle id='Ellipse_152' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-2' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-2' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-2' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-2' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-2' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-2' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-2' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-2' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-2' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-2' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-3' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-3' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-3' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-3' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-3' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-3' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-3' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-3' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-3' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-3' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-4' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-4' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-4' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-4' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-4' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-4' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-4' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-4' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-4' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-4' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-5' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-5' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-5' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-5' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-5' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-5' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-5' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-5' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-5' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-5' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-6' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-6' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-6' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-6' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-6' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-6' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-6' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-6' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-6' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-6' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-7' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-7' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-7' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-7' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-7' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-7' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-7' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-7' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-7' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-7' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-8' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-8' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-8' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-8' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-8' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-8' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-8' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-8' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-8' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-8' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-9' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-9' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-9' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-9' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-9' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-9' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-9' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-9' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-9' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-9' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-10' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-10' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-10' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-10' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-10' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-10' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-10' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-10' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-10' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-10' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-3' transform='translate(169 331)'%3E%3Cg id='Gruppe_3123-2'%3E%3Ccircle id='Ellipse_152-11' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-11' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-11' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-11' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-11' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-11' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-11' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-11' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-11' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-11' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-2' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-12' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-12' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-12' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-12' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-12' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-12' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-12' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-12' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-12' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-12' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-2' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-13' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-13' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-13' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-13' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-13' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-13' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-13' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-13' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-13' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-13' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-2' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-14' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-14' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-14' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-14' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-14' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-14' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-14' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-14' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-14' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-14' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-2' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-15' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-15' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-15' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-15' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-15' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-15' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-15' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-15' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-15' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-15' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-2' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-16' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-16' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-16' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-16' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-16' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-16' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-16' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-16' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-16' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-16' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-2' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-17' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-17' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-17' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-17' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-17' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-17' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-17' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-17' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-17' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-17' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-2' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-18' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-18' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-18' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-18' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-18' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-18' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-18' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-18' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-18' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-18' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-2' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-19' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-19' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-19' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-19' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-19' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-19' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-19' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-19' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-19' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-19' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-2' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-20' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-20' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-20' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-20' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-20' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-20' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-20' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-20' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-20' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-20' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-4' transform='translate(49 331)'%3E%3Cg id='Gruppe_3123-3'%3E%3Ccircle id='Ellipse_152-21' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-21' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-21' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-21' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-21' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-21' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-21' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-21' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-21' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-21' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-3' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-22' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-22' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-22' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-22' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-22' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-22' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-22' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-22' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-22' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-22' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-3' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-23' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-23' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-23' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-23' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-23' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-23' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-23' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-23' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-23' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-23' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-3' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-24' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-24' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-24' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-24' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-24' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-24' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-24' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-24' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-24' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-24' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-3' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-25' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-25' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-25' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-25' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-25' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-25' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-25' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-25' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-25' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-25' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-3' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-26' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-26' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-26' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-26' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-26' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-26' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-26' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-26' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-26' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-26' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-3' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-27' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-27' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-27' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-27' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-27' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-27' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-27' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-27' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-27' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-27' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-3' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-28' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-28' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-28' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-28' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-28' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-28' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-28' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-28' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-28' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-28' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-3' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-29' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-29' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-29' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-29' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-29' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-29' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-29' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-29' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-29' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-29' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-3' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-30' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-30' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-30' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-30' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-30' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-30' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-30' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-30' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-30' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-30' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-5' transform='translate(169 223)'%3E%3Cg id='Gruppe_3123-4'%3E%3Ccircle id='Ellipse_152-31' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-31' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-31' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-31' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-31' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-31' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-31' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-31' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-31' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-31' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-4' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-32' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-32' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-32' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-32' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-32' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-32' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-32' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-32' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-32' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-32' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-4' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-33' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-33' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-33' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-33' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-33' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-33' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-33' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-33' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-33' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-33' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-4' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-34' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-34' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-34' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-34' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-34' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-34' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-34' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-34' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-34' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-34' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-4' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-35' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-35' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-35' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-35' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-35' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-35' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-35' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-35' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-35' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-35' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-4' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-36' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-36' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-36' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-36' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-36' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-36' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-36' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-36' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-36' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-36' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-4' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-37' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-37' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-37' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-37' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-37' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-37' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-37' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-37' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-37' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-37' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-4' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-38' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-38' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-38' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-38' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-38' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-38' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-38' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-38' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-38' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-38' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-4' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-39' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-39' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-39' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-39' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-39' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-39' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-39' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-39' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-39' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-39' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-4' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-40' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-40' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-40' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-40' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-40' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-40' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-40' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-40' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-40' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-40' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-6' transform='translate(-589 583)'%3E%3Cg id='pattern-8' transform='translate(170 343)'%3E%3Cg id='Gruppe_3132-6' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-52' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-52' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-52' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-52' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-52' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-52' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-52' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-52' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-52' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-52' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-6' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-54' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-54' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-54' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-54' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-54' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-54' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-54' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-54' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-54' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-54' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-6' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-55' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-55' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-55' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-55' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-55' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-55' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-55' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-55' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-55' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-55' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-6' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-56' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-56' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-56' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-56' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-56' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-56' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-56' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-56' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-56' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-56' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-6' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-57' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-57' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-57' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-57' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-57' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-57' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-57' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-57' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-57' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-57' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-6' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-58' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-58' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-58' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-58' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-58' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-58' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-58' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-58' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-58' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-58' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-6' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-59' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-59' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-59' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-59' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-59' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-59' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-59' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-59' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-59' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-59' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-6' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-60' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-60' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-60' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-60' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-60' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-60' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-60' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-60' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-60' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-60' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-9' transform='translate(169 223)'%3E%3Cg id='Gruppe_3132-7' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-61' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-62' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-61' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-62' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-61' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-62' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-62' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-62' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-62' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-62' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-7' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-62' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-64' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-62' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-64' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-62' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-64' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-64' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-64' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-64' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-64' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-7' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-63' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-65' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-63' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-65' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-63' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-65' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-65' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-65' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-65' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-65' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-7' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-64' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-66' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-64' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-66' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-64' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-66' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-66' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-66' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-66' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-66' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-7' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-65' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-67' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-65' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-67' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-65' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-67' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-67' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-67' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-67' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-67' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-7' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-66' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-68' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-66' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-68' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-66' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-68' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-68' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-68' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-68' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-68' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-7' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-67' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-69' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-67' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-69' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-67' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-69' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-69' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-69' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-69' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-69' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-7' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-68' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-70' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-68' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-70' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-68' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-70' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-70' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-70' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-70' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-70' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-11' transform='translate(-348 583)'%3E%3Cg id='pattern-12' transform='translate(49 343)'%3E%3Cg id='Gruppe_3123-9'%3E%3Ccircle id='Ellipse_152-69' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-81' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-69' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-81' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-69' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-81' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-81' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-81' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-81' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-81' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-9' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-70' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-82' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-70' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-82' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-70' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-82' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-82' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-82' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-82' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-82' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-9' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-71' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-83' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-71' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-83' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-71' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-83' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-83' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-83' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-83' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-83' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-9' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-72' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-84' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-72' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-84' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-72' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-84' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-84' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-84' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-84' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-84' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-9' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-73' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-85' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-73' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-85' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-73' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-85' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-85' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-85' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-85' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-85' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-9' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-74' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-86' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-74' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-86' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-74' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-86' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-86' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-86' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-86' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-86' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-9' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-75' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-87' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-75' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-87' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-75' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-87' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-87' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-87' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-87' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-87' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-9' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-76' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-88' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-76' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-88' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-76' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-88' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-88' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-88' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-88' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-88' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-9' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-77' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-89' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-77' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-89' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-77' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-89' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-89' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-89' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-89' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-89' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-9' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-78' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-90' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-78' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-90' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-78' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-90' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-90' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-90' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-90' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-90' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-13' transform='translate(49 223)'%3E%3Cg id='Gruppe_3123-10'%3E%3Ccircle id='Ellipse_152-79' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-91' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-79' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-91' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-79' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-91' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-91' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-91' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-91' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-91' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-10' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-80' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-92' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-80' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-92' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-80' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-92' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-92' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-92' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-92' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-92' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-10' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-81' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-93' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-81' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-93' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-81' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-93' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-93' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-93' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-93' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-93' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-10' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-82' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-94' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-82' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-94' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-82' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-94' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-94' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-94' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-94' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-94' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-10' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-83' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-95' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-83' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-95' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-83' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-95' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-95' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-95' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-95' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-95' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-10' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-84' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-96' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-84' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-96' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-84' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-96' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-96' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-96' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-96' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-96' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-10' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-85' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-97' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-85' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-97' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-85' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-97' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-97' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-97' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-97' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-97' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-10' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-86' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-98' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-86' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-98' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-86' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-98' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-98' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-98' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-98' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-98' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-10' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-87' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-99' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-87' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-99' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-87' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-99' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-99' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-99' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-99' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-99' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-10' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-88' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-100' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-88' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-100' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-88' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-100' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-100' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-100' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-100' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-100' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-14' transform='translate(170 343)'%3E%3Cg id='Gruppe_3123-11'%3E%3Ccircle id='Ellipse_152-89' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-101' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-89' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-101' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-89' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-101' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-101' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-101' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-101' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-101' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-11' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-90' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-102' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-90' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-102' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-90' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-102' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-102' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-102' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-102' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-102' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-11' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-91' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-103' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-91' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-103' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-91' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-103' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-103' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-103' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-103' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-103' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-11' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-92' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-104' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-92' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-104' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-92' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-104' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-104' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-104' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-104' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-104' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-11' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-93' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-105' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-93' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-105' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-93' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-105' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-105' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-105' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-105' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-105' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-11' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-94' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-106' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-94' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-106' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-94' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-106' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-106' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-106' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-106' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-106' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-11' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-95' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-107' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-95' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-107' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-95' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-107' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-107' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-107' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-107' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-107' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-11' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-96' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-108' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-96' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-108' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-96' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-108' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-108' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-108' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-108' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-108' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-11' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-97' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-109' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-97' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-109' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-97' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-109' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-109' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-109' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-109' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-109' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-11' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-98' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-110' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-98' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-110' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-98' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-110' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-110' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-110' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-110' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-110' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-15' transform='translate(169 223)'%3E%3Cg id='Gruppe_3123-12'%3E%3Ccircle id='Ellipse_152-99' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-111' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-99' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-111' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-99' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-111' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-111' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-111' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-111' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-111' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-12' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-100' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-112' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-100' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-112' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-100' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-112' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-112' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-112' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-112' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-112' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-12' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-101' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-113' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-101' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-113' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-101' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-113' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-113' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-113' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-113' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-113' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-12' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-102' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-114' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-102' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-114' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-102' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-114' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-114' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-114' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-114' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-114' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-12' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-103' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-115' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-103' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-115' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-103' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-115' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-115' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-115' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-115' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-115' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-12' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-104' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-116' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-104' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-116' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-104' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-116' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-116' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-116' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-116' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-116' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-12' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-105' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-117' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-105' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-117' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-105' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-117' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-117' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-117' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-117' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-117' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-12' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-106' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-118' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-106' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-118' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-106' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-118' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-118' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-118' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-118' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-118' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-12' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-107' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-119' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-107' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-119' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-107' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-119' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-119' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-119' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-119' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-119' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-12' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-108' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-120' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-108' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-120' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-108' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-120' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-120' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-120' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-120' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-120' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
        @media only screen and (max-width: 991px) {
          .ce.ce--vd_menu_teaser .order-content .vd-teaser__image .vd-image--teaser:before {
            right: 8px;
            background-size: 43%; } }
      .ce.ce--vd_menu_teaser .order-content .vd-teaser__image .vd-image--teaser figure {
        z-index: 3; }
    .ce.ce--vd_menu_teaser .order-content--menu_right__teaser_left .vd-teaser__image .vd-image--teaser:before {
      right: unset;
      left: 32px;
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
      /*
                        @media only screen and (max-width: 991px) {
                            right: 8px;
                            background-size: 43%;
                        }
*/ }
      @media only screen and (max-width: 991px) {
        .ce.ce--vd_menu_teaser .order-content--menu_right__teaser_left .vd-teaser__image .vd-image--teaser:before {
          left: 10px; } }
      @media only screen and (max-width: 767px) {
        .ce.ce--vd_menu_teaser .order-content--menu_right__teaser_left .vd-teaser__image .vd-image--teaser:before {
          left: 7px; } }
  .ce.ce--vd_menu_teaser .ce__content .container, .ce.ce--vd_menu_teaser .ce__content .vd-breadcrumb, .ce.ce--vd_menu_teaser .ce__content .vd-breadcrumb .vd-nav, .vd-breadcrumb .ce.ce--vd_menu_teaser .ce__content .vd-nav, .ce.ce--vd_menu_teaser .ce__content #tx-solr-search, .ce.ce--vd_menu_teaser .ce__content .vd-filter-container, .ce.ce--vd_menu_teaser .ce__content .vd-section--header .header__navigation--buttons, .vd-section--header .ce.ce--vd_menu_teaser .ce__content .header__navigation--buttons, .ce.ce--vd_menu_teaser .ce__content body:not(.template--startpage) .vd-section .header__navigation--buttons, body:not(.template--startpage) .vd-section .ce.ce--vd_menu_teaser .ce__content .header__navigation--buttons, .ce.ce--vd_menu_teaser .ce__content .content-element.gutachter-list, .ce.ce--vd_menu_teaser .ce__content .vd-section--main .vd-message, .vd-section--main .ce.ce--vd_menu_teaser .ce__content .vd-message, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_newsletter_registration, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_text_teaser .ce.ce--vd_menu_teaser .ce__content .ce__title, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_teaser .ce.ce--vd_menu_teaser .ce__content .single-news-teaser, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .ce.ce--vd_menu_teaser .ce__content .ce__title, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list .ce.ce--vd_menu_teaser .ce__content .icon, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .ce.ce--vd_menu_teaser .ce__content .vd-actions, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_news_list .news__cta, .ce.ce--vd_news_list .ce.ce--vd_menu_teaser .ce__content .news__cta, .ce.ce--vd_menu_teaser .ce__content .ce--vd_accordion .ce__title, .ce--vd_accordion .ce.ce--vd_menu_teaser .ce__content .ce__title,
  .ce.ce--vd_menu_teaser .ce__content .ce--vd_downloads .ce__title, .ce--vd_downloads .ce.ce--vd_menu_teaser .ce__content .ce__title, .ce.ce--vd_menu_teaser .ce--vd_accordion .ce__content .ce__bodytext, .ce--vd_accordion .ce.ce--vd_menu_teaser .ce__content .ce__bodytext,
  .ce.ce--vd_menu_teaser .ce--vd_downloads .ce__content .ce__bodytext, .ce--vd_downloads .ce.ce--vd_menu_teaser .ce__content .ce__bodytext, .ce.ce--vd_menu_teaser .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel .ce.ce--vd_menu_teaser .ce__content > .ce__bodytext, .ce.ce--vd_menu_teaser .ce__content .vd-slick-dots, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_text_images .ce__title, .ce.ce--vd_text_images .ce.ce--vd_menu_teaser .ce__content .ce__title, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_link_list, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_quotation, .ce.ce--vd_menu_teaser .ce__content .ce--vd_pages_teaser .ce__title, .ce--vd_pages_teaser .ce.ce--vd_menu_teaser .ce__content .ce__title, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_info_box, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_list_offers .ce__title, .ce.ce--vd_list_offers .ce.ce--vd_menu_teaser .ce__content .ce__title, .ce.ce--vd_menu_teaser .ce__content .content-element-directories .text, .content-element-directories .ce.ce--vd_menu_teaser .ce__content .text, .ce.ce--vd_menu_teaser .ce__content .content-element-directories #directories_filter__form, .content-element-directories .ce.ce--vd_menu_teaser .ce__content #directories_filter__form, .ce.ce--vd_menu_teaser .ce__content .content-element-directories .directories-results, .content-element-directories .ce.ce--vd_menu_teaser .ce__content .directories-results, .ce.ce--vd_menu_teaser .ce__content #tx-solr-search .vd-wrapper, #tx-solr-search .ce.ce--vd_menu_teaser .ce__content .vd-wrapper, .ce.ce--vd_menu_teaser .ce__content main > .ce.ce--vd_event_teaser .single-event-teaser, main > .ce.ce--vd_event_teaser .ce.ce--vd_menu_teaser .ce__content .single-event-teaser, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_departments_list .ce.ce--vd_menu_teaser .ce__content .ce__title, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_divisions_list .ce.ce--vd_menu_teaser .ce__content .ce__title, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_persons_list .ce.ce--vd_menu_teaser .ce__content .ce__title, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_job_form, .ce.ce--vd_menu_teaser .ce__content .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce.ce--vd_menu_teaser .ce__content .ce--vd_download .ce__title, .ce--vd_download .ce.ce--vd_menu_teaser .ce__content .ce__title, .ce.ce--vd_menu_teaser .ce__content .ce--vd_download .ce__content, .ce--vd_download .ce.ce--vd_menu_teaser .ce__content .ce__content, .ce.ce--vd_menu_teaser .ce__content .vd-wrapper {
    padding-right: 0px;
    padding-left: 0px; }
  .ce.ce--vd_menu_teaser .ce__content .vd-teaser__title {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 50px; }
  .ce.ce--vd_menu_teaser .ce__content .vd-teaser__content p {
    line-height: 30px; }
  .ce.ce--vd_menu_teaser ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem; }
    .ce.ce--vd_menu_teaser ul a {
      display: inline-block;
      font-weight: 700;
      font-size: 30px;
      font-size: 1.875rem;
      padding-bottom: 0.625rem;
      line-height: 40px;
      padding-left: 45px;
      position: relative;
      font-family: Livvic, "Lucida Sans Unicode", "Lucida Grande", sans-serif; }
      @media only screen and (max-width: 991px) {
        .ce.ce--vd_menu_teaser ul a {
          padding-bottom: 0.625rem; } }
      .ce.ce--vd_menu_teaser ul a:before {
        content: '';
        position: absolute;
        top: 8px;
        left: 0;
        width: 30px;
        height: 20px;
        display: inline-block;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23015D7D'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 30px;
        -webkit-transform: rotate(0.06534deg);
                transform: rotate(0.06534deg); }
  .ce.ce--vd_menu_teaser .teaser.landscape-left,
  .ce.ce--vd_menu_teaser .teaser.landscape-right {
    /*
        content: '';
            height: 80%;
            width: 100%;
            display: inline-block;
            position: absolute;
            z-index: 1;
            right: 14px;
            top: calc(20% + 8px);
            margin-top: -2px;
*/ }
    .ce.ce--vd_menu_teaser .teaser.landscape-left:before,
    .ce.ce--vd_menu_teaser .teaser.landscape-right:before {
      content: '';
      height: 100%;
      width: 100%;
      display: inline-block;
      position: absolute;
      z-index: 1;
      right: 1px;
      top: 9px;
      margin-top: 0px;
      background-position: right bottom;
      background-repeat: no-repeat;
      background-size: 55%;
      background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Ebene_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 332 452' style='enable-background:new 0 0 332 452;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23015D7D;%7D%0A%3C/style%3E%3Cg id='Gruppe_3153' transform='translate(-64 -827)'%3E%3Cg id='pattern' transform='translate(-347 811)'%3E%3Cg id='pattern-2' transform='translate(49 223)'%3E%3Cg id='Gruppe_3123'%3E%3Ccircle id='Ellipse_152' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-2' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-2' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-2' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-2' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-2' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-2' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-2' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-2' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-2' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-2' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-3' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-3' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-3' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-3' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-3' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-3' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-3' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-3' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-3' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-3' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-4' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-4' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-4' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-4' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-4' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-4' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-4' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-4' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-4' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-4' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-5' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-5' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-5' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-5' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-5' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-5' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-5' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-5' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-5' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-5' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-6' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-6' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-6' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-6' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-6' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-6' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-6' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-6' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-6' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-6' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-7' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-7' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-7' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-7' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-7' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-7' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-7' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-7' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-7' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-7' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-8' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-8' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-8' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-8' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-8' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-8' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-8' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-8' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-8' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-8' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-9' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-9' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-9' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-9' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-9' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-9' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-9' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-9' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-9' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-9' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-10' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-10' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-10' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-10' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-10' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-10' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-10' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-10' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-10' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-10' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-3' transform='translate(169 331)'%3E%3Cg id='Gruppe_3123-2'%3E%3Ccircle id='Ellipse_152-11' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-11' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-11' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-11' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-11' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-11' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-11' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-11' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-11' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-11' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-2' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-12' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-12' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-12' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-12' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-12' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-12' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-12' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-12' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-12' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-12' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-2' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-13' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-13' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-13' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-13' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-13' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-13' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-13' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-13' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-13' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-13' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-2' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-14' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-14' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-14' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-14' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-14' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-14' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-14' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-14' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-14' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-14' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-2' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-15' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-15' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-15' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-15' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-15' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-15' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-15' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-15' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-15' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-15' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-2' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-16' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-16' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-16' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-16' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-16' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-16' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-16' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-16' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-16' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-16' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-2' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-17' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-17' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-17' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-17' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-17' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-17' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-17' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-17' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-17' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-17' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-2' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-18' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-18' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-18' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-18' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-18' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-18' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-18' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-18' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-18' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-18' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-2' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-19' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-19' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-19' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-19' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-19' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-19' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-19' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-19' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-19' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-19' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-2' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-20' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-20' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-20' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-20' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-20' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-20' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-20' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-20' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-20' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-20' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-4' transform='translate(49 331)'%3E%3Cg id='Gruppe_3123-3'%3E%3Ccircle id='Ellipse_152-21' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-21' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-21' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-21' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-21' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-21' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-21' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-21' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-21' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-21' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-3' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-22' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-22' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-22' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-22' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-22' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-22' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-22' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-22' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-22' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-22' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-3' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-23' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-23' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-23' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-23' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-23' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-23' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-23' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-23' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-23' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-23' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-3' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-24' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-24' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-24' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-24' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-24' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-24' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-24' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-24' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-24' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-24' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-3' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-25' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-25' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-25' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-25' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-25' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-25' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-25' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-25' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-25' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-25' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-3' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-26' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-26' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-26' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-26' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-26' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-26' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-26' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-26' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-26' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-26' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-3' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-27' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-27' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-27' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-27' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-27' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-27' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-27' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-27' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-27' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-27' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-3' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-28' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-28' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-28' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-28' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-28' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-28' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-28' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-28' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-28' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-28' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-3' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-29' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-29' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-29' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-29' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-29' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-29' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-29' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-29' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-29' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-29' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-3' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-30' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-30' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-30' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-30' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-30' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-30' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-30' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-30' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-30' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-30' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-5' transform='translate(169 223)'%3E%3Cg id='Gruppe_3123-4'%3E%3Ccircle id='Ellipse_152-31' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-31' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-31' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-31' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-31' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-31' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-31' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-31' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-31' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-31' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-4' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-32' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-32' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-32' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-32' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-32' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-32' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-32' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-32' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-32' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-32' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-4' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-33' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-33' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-33' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-33' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-33' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-33' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-33' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-33' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-33' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-33' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-4' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-34' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-34' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-34' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-34' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-34' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-34' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-34' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-34' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-34' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-34' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-4' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-35' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-35' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-35' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-35' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-35' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-35' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-35' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-35' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-35' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-35' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-4' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-36' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-36' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-36' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-36' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-36' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-36' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-36' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-36' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-36' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-36' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-4' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-37' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-37' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-37' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-37' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-37' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-37' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-37' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-37' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-37' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-37' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-4' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-38' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-38' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-38' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-38' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-38' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-38' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-38' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-38' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-38' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-38' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-4' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-39' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-39' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-39' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-39' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-39' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-39' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-39' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-39' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-39' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-39' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-4' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-40' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-40' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-40' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-40' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-40' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-40' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-40' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-40' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-40' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-40' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-6' transform='translate(-589 583)'%3E%3Cg id='pattern-8' transform='translate(170 343)'%3E%3Cg id='Gruppe_3132-6' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-52' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-52' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-52' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-52' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-52' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-52' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-52' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-52' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-52' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-52' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-6' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-54' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-54' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-54' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-54' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-54' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-54' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-54' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-54' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-54' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-54' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-6' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-55' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-55' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-55' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-55' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-55' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-55' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-55' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-55' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-55' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-55' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-6' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-56' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-56' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-56' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-56' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-56' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-56' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-56' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-56' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-56' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-56' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-6' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-57' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-57' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-57' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-57' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-57' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-57' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-57' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-57' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-57' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-57' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-6' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-58' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-58' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-58' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-58' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-58' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-58' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-58' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-58' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-58' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-58' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-6' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-59' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-59' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-59' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-59' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-59' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-59' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-59' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-59' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-59' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-59' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-6' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-60' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-60' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-60' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-60' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-60' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-60' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-60' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-60' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-60' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-60' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-9' transform='translate(169 223)'%3E%3Cg id='Gruppe_3132-7' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-61' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-62' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-61' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-62' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-61' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-62' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-62' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-62' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-62' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-62' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-7' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-62' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-64' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-62' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-64' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-62' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-64' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-64' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-64' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-64' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-64' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-7' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-63' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-65' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-63' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-65' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-63' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-65' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-65' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-65' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-65' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-65' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-7' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-64' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-66' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-64' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-66' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-64' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-66' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-66' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-66' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-66' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-66' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-7' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-65' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-67' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-65' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-67' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-65' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-67' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-67' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-67' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-67' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-67' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-7' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-66' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-68' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-66' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-68' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-66' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-68' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-68' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-68' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-68' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-68' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-7' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-67' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-69' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-67' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-69' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-67' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-69' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-69' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-69' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-69' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-69' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-7' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-68' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-70' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-68' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-70' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-68' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-70' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-70' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-70' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-70' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-70' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-11' transform='translate(-348 583)'%3E%3Cg id='pattern-12' transform='translate(49 343)'%3E%3Cg id='Gruppe_3123-9'%3E%3Ccircle id='Ellipse_152-69' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-81' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-69' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-81' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-69' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-81' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-81' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-81' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-81' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-81' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-9' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-70' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-82' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-70' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-82' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-70' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-82' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-82' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-82' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-82' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-82' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-9' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-71' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-83' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-71' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-83' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-71' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-83' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-83' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-83' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-83' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-83' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-9' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-72' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-84' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-72' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-84' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-72' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-84' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-84' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-84' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-84' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-84' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-9' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-73' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-85' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-73' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-85' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-73' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-85' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-85' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-85' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-85' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-85' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-9' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-74' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-86' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-74' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-86' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-74' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-86' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-86' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-86' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-86' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-86' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-9' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-75' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-87' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-75' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-87' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-75' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-87' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-87' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-87' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-87' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-87' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-9' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-76' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-88' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-76' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-88' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-76' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-88' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-88' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-88' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-88' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-88' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-9' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-77' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-89' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-77' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-89' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-77' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-89' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-89' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-89' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-89' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-89' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-9' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-78' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-90' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-78' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-90' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-78' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-90' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-90' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-90' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-90' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-90' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-13' transform='translate(49 223)'%3E%3Cg id='Gruppe_3123-10'%3E%3Ccircle id='Ellipse_152-79' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-91' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-79' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-91' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-79' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-91' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-91' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-91' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-91' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-91' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-10' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-80' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-92' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-80' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-92' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-80' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-92' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-92' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-92' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-92' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-92' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-10' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-81' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-93' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-81' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-93' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-81' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-93' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-93' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-93' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-93' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-93' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-10' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-82' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-94' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-82' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-94' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-82' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-94' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-94' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-94' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-94' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-94' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-10' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-83' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-95' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-83' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-95' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-83' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-95' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-95' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-95' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-95' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-95' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-10' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-84' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-96' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-84' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-96' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-84' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-96' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-96' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-96' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-96' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-96' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-10' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-85' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-97' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-85' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-97' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-85' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-97' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-97' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-97' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-97' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-97' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-10' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-86' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-98' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-86' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-98' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-86' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-98' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-98' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-98' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-98' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-98' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-10' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-87' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-99' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-87' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-99' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-87' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-99' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-99' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-99' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-99' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-99' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-10' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-88' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-100' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-88' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-100' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-88' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-100' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-100' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-100' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-100' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-100' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-14' transform='translate(170 343)'%3E%3Cg id='Gruppe_3123-11'%3E%3Ccircle id='Ellipse_152-89' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-101' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-89' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-101' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-89' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-101' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-101' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-101' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-101' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-101' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-11' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-90' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-102' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-90' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-102' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-90' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-102' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-102' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-102' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-102' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-102' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-11' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-91' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-103' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-91' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-103' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-91' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-103' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-103' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-103' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-103' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-103' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-11' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-92' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-104' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-92' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-104' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-92' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-104' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-104' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-104' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-104' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-104' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-11' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-93' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-105' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-93' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-105' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-93' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-105' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-105' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-105' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-105' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-105' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-11' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-94' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-106' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-94' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-106' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-94' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-106' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-106' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-106' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-106' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-106' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-11' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-95' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-107' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-95' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-107' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-95' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-107' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-107' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-107' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-107' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-107' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-11' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-96' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-108' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-96' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-108' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-96' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-108' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-108' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-108' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-108' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-108' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-11' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-97' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-109' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-97' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-109' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-97' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-109' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-109' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-109' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-109' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-109' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-11' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-98' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-110' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-98' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-110' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-98' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-110' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-110' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-110' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-110' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-110' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-15' transform='translate(169 223)'%3E%3Cg id='Gruppe_3123-12'%3E%3Ccircle id='Ellipse_152-99' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-111' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-99' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-111' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-99' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-111' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-111' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-111' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-111' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-111' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-12' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-100' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-112' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-100' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-112' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-100' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-112' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-112' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-112' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-112' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-112' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-12' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-101' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-113' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-101' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-113' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-101' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-113' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-113' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-113' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-113' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-113' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-12' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-102' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-114' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-102' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-114' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-102' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-114' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-114' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-114' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-114' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-114' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-12' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-103' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-115' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-103' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-115' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-103' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-115' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-115' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-115' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-115' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-115' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-12' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-104' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-116' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-104' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-116' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-104' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-116' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-116' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-116' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-116' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-116' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-12' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-105' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-117' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-105' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-117' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-105' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-117' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-117' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-117' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-117' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-117' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-12' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-106' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-118' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-106' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-118' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-106' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-118' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-118' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-118' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-118' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-118' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-12' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-107' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-119' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-107' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-119' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-107' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-119' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-119' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-119' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-119' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-119' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-12' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-108' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-120' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-108' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-120' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-108' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-120' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-120' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-120' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-120' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-120' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
      /*
            @media only screen and (min-width: 992px) {
                height: calc(100% + 70px);
                right: -28px;
                margin-top: -45px;
                background-size: 77%;
            }
            @media only screen and (min-width: 1200px) {
                height: calc(100% + 70px);
                right: -28px;
                margin-top: -45px; 
                background-size: 56%;
            }
*/ }
      @media only screen and (max-width: 767px) {
        .ce.ce--vd_menu_teaser .teaser.landscape-left:before,
        .ce.ce--vd_menu_teaser .teaser.landscape-right:before {
          right: 11px; } }
      @media only screen and (min-width: 1200px) {
        .ce.ce--vd_menu_teaser .teaser.landscape-left:before,
        .ce.ce--vd_menu_teaser .teaser.landscape-right:before {
          background-position: right center;
          height: calc(100% + 67px);
          right: -26px;
          top: -37px; } }
    .ce.ce--vd_menu_teaser .teaser.landscape-left .vd-button--readmore,
    .ce.ce--vd_menu_teaser .teaser.landscape-right .vd-button--readmore {
      color: #015D7D;
      background-color: transparent;
      border-color: transparent;
      padding-right: 80px;
      padding-left: 0px;
      background-repeat: no-repeat;
      background-position: calc(100% - 30px) center;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23015D7D'/%3E%3C/svg%3E"); }
  @media only screen and (min-width: 992px) {
    .ce.ce--vd_menu_teaser .teaser.landscape-left {
      padding-right: 3.75rem; } }
  .ce.ce--vd_menu_teaser .teaser.landscape-left:before {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    height: 100%;
    width: 100%;
    display: inline-block;
    position: absolute;
    z-index: 1;
    right: 11px;
    top: 9px;
    margin-top: 0px;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 55%; }
    @media only screen and (min-width: 768px) {
      .ce.ce--vd_menu_teaser .teaser.landscape-left:before {
        right: 1px; } }
  @media only screen and (min-width: 992px) {
    .ce.ce--vd_menu_teaser .teaser.landscape-right {
      padding-left: 3.75rem; } }
  .ce.ce--vd_menu_teaser .vd-teaser {
    background-color: #fff;
    padding: 2.5rem;
    position: relative;
    z-index: 3;
    height: 100%; }
    .ce.ce--vd_menu_teaser .vd-teaser .vd-teaser__title > * {
      margin-top: 0px;
      margin-bottom: 10px; }

@media only screen and (min-width: 992px) {
  .ce.ce--vd_menu_teaser .order-content .landscape-left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-right: 20px; }
  .ce.ce--vd_menu_teaser .order-content .landscape-right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-left: calc((100% / 12) * 1); } }

.ce.ce--vd_page_teaser .vd-image--header--wrapper {
  position: relative;
  padding-bottom: 7.5rem;
  margin-bottom: 3.75rem; }

.ce.ce--vd_page_teaser .ce__title {
  background-color: #fff;
  width: calc((100% / 12) * 8);
  position: absolute;
  bottom: 0px;
  padding: 1.25rem; }
  @media only screen and (min-width: 992px) {
    .ce.ce--vd_page_teaser .ce__title {
      padding: 3.75rem;
      width: calc((100% / 12) * 5); } }
  .ce.ce--vd_page_teaser .ce__title > * {
    margin-bottom: 0; }
    @media only screen and (max-width: 991px) {
      .ce.ce--vd_page_teaser .ce__title > * {
        font-size: 40px;
        font-size: 2.5rem;
        line-height: 50px; } }

@media only screen and (max-width: 991px) {
  .ce.ce--vd_page_teaser .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / 12) * 7);
            flex: 0 0 calc((100% / 12) * 7);
    max-width: calc((100% / 12) * 7);
    padding-left: 0px;
    padding-right: 10px; } }

@media only screen and (max-width: 991px) {
  .ce.ce--vd_page_teaser .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / 12) * 5);
            flex: 0 0 calc((100% / 12) * 5);
    max-width: calc((100% / 12) * 5);
    padding-right: 0px;
    padding-left: 10px; } }

.ce.ce--vd_page_teaser .ce__teaser-box {
  padding: 2.5rem;
  background-color: #E5EEF2;
  color: #015D7D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media only screen and (max-width: 991px) {
    .ce.ce--vd_page_teaser .ce__teaser-box {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%;
      padding: 2.5rem;
      margin-bottom: 20px; } }
  .ce.ce--vd_page_teaser .ce__teaser-box .ce__cta a {
    background-color: transparent;
    border-color: transparent;
    padding-right: 80px;
    padding-left: 0px;
    background-repeat: no-repeat;
    background-position: calc(100% - 30px) 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23015D7D'/%3E%3C/svg%3E"); }

.ce.ce--vd_page_teaser .vd-image {
  height: 100%; }
  .ce.ce--vd_page_teaser .vd-image img {
    height: auto;
    /*
            max-height: calc((100vw / 16) * 9);
            object-fit: cover;
*/ }

.ce.ce--vd_page_teaser.ce--color-sheme {
  padding-bottom: 5rem;
  padding-top: 5rem; }
  @media only screen and (max-width: 767px) {
    .ce.ce--vd_page_teaser.ce--color-sheme {
      padding-bottom: 2.5rem;
      padding-top: 2.5rem; } }

@media only screen and (max-width: 991px) {
  .ce.ce--vd_page_teaser.version--icon-cta .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; } }

@media only screen and (max-width: 991px) {
  .ce.ce--vd_page_teaser.version--icon-cta .vd-teaser__title > * {
    font-size: 50px;
    font-size: 3.125rem;
    line-height: 60px;
    margin-bottom: 1.25rem; } }

.ce.ce--vd_page_teaser.version--icon-cta .vd-teaser__content .ce__bodytext * {
  color: #015D7D; }

.ce.ce--vd_page_teaser.version--icon-cta .vd-teaser__icon {
  margin-top: 3.125rem;
  padding-left: 33%;
  padding-right: 33%; }
  @media only screen and (min-width: 992px) {
    .ce.ce--vd_page_teaser.version--icon-cta .vd-teaser__icon {
      padding-left: 25%;
      display: block;
      margin-top: 0px;
      padding-right: 0px; } }
  @media only screen and (min-width: 992px) {
    .ce.ce--vd_page_teaser.version--icon-cta .vd-teaser__icon {
      padding-right: 25%; } }

@media only screen and (max-width: 991px) {
  .ce.ce--vd_page_teaser.version--image-cta .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; } }

@media only screen and (max-width: 991px) {
  .ce.ce--vd_page_teaser.version--image-cta .col-sm-6:last-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 1.25rem; } }

.ce.ce--vd_page_teaser.version--image-cta .vd-teaser--text {
  padding-right: calc((100% / 12) * 2); }

.ce.ce--vd_page_teaser.version--image-cta .vd-image--teaser figure {
  z-index: 3; }

.ce.ce--vd_page_teaser.version--image-cta .vd-image--teaser:before {
  content: '';
  height: 100%;
  width: 100%;
  display: inline-block;
  position: absolute;
  z-index: 1;
  right: -8px;
  top: 10px;
  margin-top: 0px;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 65%;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Ebene_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 332 452' style='enable-background:new 0 0 332 452;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23015D7D;%7D%0A%3C/style%3E%3Cg id='Gruppe_3153' transform='translate(-64 -827)'%3E%3Cg id='pattern' transform='translate(-347 811)'%3E%3Cg id='pattern-2' transform='translate(49 223)'%3E%3Cg id='Gruppe_3123'%3E%3Ccircle id='Ellipse_152' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-2' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-2' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-2' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-2' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-2' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-2' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-2' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-2' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-2' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-2' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-3' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-3' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-3' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-3' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-3' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-3' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-3' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-3' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-3' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-3' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-4' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-4' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-4' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-4' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-4' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-4' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-4' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-4' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-4' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-4' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-5' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-5' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-5' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-5' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-5' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-5' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-5' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-5' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-5' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-5' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-6' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-6' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-6' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-6' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-6' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-6' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-6' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-6' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-6' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-6' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-7' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-7' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-7' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-7' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-7' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-7' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-7' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-7' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-7' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-7' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-8' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-8' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-8' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-8' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-8' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-8' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-8' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-8' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-8' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-8' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-9' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-9' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-9' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-9' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-9' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-9' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-9' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-9' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-9' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-9' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-10' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-10' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-10' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-10' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-10' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-10' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-10' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-10' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-10' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-10' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-3' transform='translate(169 331)'%3E%3Cg id='Gruppe_3123-2'%3E%3Ccircle id='Ellipse_152-11' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-11' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-11' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-11' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-11' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-11' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-11' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-11' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-11' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-11' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-2' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-12' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-12' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-12' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-12' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-12' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-12' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-12' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-12' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-12' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-12' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-2' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-13' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-13' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-13' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-13' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-13' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-13' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-13' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-13' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-13' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-13' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-2' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-14' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-14' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-14' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-14' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-14' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-14' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-14' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-14' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-14' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-14' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-2' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-15' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-15' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-15' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-15' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-15' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-15' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-15' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-15' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-15' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-15' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-2' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-16' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-16' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-16' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-16' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-16' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-16' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-16' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-16' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-16' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-16' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-2' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-17' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-17' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-17' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-17' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-17' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-17' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-17' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-17' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-17' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-17' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-2' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-18' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-18' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-18' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-18' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-18' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-18' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-18' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-18' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-18' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-18' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-2' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-19' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-19' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-19' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-19' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-19' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-19' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-19' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-19' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-19' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-19' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-2' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-20' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-20' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-20' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-20' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-20' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-20' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-20' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-20' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-20' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-20' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-4' transform='translate(49 331)'%3E%3Cg id='Gruppe_3123-3'%3E%3Ccircle id='Ellipse_152-21' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-21' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-21' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-21' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-21' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-21' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-21' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-21' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-21' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-21' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-3' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-22' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-22' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-22' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-22' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-22' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-22' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-22' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-22' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-22' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-22' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-3' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-23' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-23' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-23' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-23' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-23' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-23' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-23' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-23' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-23' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-23' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-3' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-24' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-24' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-24' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-24' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-24' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-24' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-24' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-24' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-24' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-24' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-3' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-25' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-25' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-25' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-25' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-25' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-25' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-25' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-25' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-25' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-25' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-3' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-26' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-26' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-26' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-26' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-26' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-26' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-26' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-26' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-26' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-26' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-3' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-27' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-27' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-27' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-27' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-27' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-27' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-27' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-27' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-27' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-27' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-3' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-28' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-28' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-28' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-28' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-28' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-28' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-28' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-28' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-28' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-28' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-3' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-29' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-29' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-29' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-29' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-29' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-29' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-29' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-29' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-29' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-29' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-3' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-30' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-30' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-30' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-30' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-30' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-30' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-30' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-30' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-30' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-30' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-5' transform='translate(169 223)'%3E%3Cg id='Gruppe_3123-4'%3E%3Ccircle id='Ellipse_152-31' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-31' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-31' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-31' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-31' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-31' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-31' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-31' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-31' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-31' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-4' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-32' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-32' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-32' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-32' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-32' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-32' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-32' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-32' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-32' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-32' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-4' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-33' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-33' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-33' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-33' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-33' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-33' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-33' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-33' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-33' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-33' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-4' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-34' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-34' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-34' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-34' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-34' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-34' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-34' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-34' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-34' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-34' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-4' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-35' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-35' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-35' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-35' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-35' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-35' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-35' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-35' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-35' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-35' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-4' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-36' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-36' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-36' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-36' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-36' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-36' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-36' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-36' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-36' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-36' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-4' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-37' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-37' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-37' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-37' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-37' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-37' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-37' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-37' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-37' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-37' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-4' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-38' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-38' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-38' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-38' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-38' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-38' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-38' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-38' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-38' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-38' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-4' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-39' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-39' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-39' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-39' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-39' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-39' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-39' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-39' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-39' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-39' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-4' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-40' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-40' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-40' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-40' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-40' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-40' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-40' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-40' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-40' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-40' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-6' transform='translate(-589 583)'%3E%3Cg id='pattern-8' transform='translate(170 343)'%3E%3Cg id='Gruppe_3132-6' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-52' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-52' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-52' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-52' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-52' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-52' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-52' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-52' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-52' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-52' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-6' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-54' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-54' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-54' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-54' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-54' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-54' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-54' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-54' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-54' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-54' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-6' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-55' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-55' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-55' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-55' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-55' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-55' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-55' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-55' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-55' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-55' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-6' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-56' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-56' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-56' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-56' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-56' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-56' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-56' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-56' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-56' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-56' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-6' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-57' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-57' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-57' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-57' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-57' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-57' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-57' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-57' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-57' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-57' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-6' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-58' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-58' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-58' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-58' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-58' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-58' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-58' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-58' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-58' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-58' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-6' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-59' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-59' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-59' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-59' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-59' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-59' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-59' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-59' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-59' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-59' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-6' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-60' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-60' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-60' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-60' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-60' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-60' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-60' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-60' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-60' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-60' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-9' transform='translate(169 223)'%3E%3Cg id='Gruppe_3132-7' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-61' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-62' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-61' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-62' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-61' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-62' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-62' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-62' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-62' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-62' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-7' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-62' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-64' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-62' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-64' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-62' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-64' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-64' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-64' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-64' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-64' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-7' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-63' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-65' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-63' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-65' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-63' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-65' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-65' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-65' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-65' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-65' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-7' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-64' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-66' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-64' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-66' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-64' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-66' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-66' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-66' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-66' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-66' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-7' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-65' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-67' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-65' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-67' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-65' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-67' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-67' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-67' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-67' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-67' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-7' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-66' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-68' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-66' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-68' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-66' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-68' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-68' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-68' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-68' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-68' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-7' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-67' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-69' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-67' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-69' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-67' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-69' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-69' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-69' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-69' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-69' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-7' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-68' class='st0' cx='464' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-70' class='st0' cx='464' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-68' class='st0' cx='464' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-70' class='st0' cx='464' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-68' class='st0' cx='464' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-70' class='st0' cx='464' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-70' class='st0' cx='464' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-70' class='st0' cx='464' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-70' class='st0' cx='464' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-70' class='st0' cx='464' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-11' transform='translate(-348 583)'%3E%3Cg id='pattern-12' transform='translate(49 343)'%3E%3Cg id='Gruppe_3123-9'%3E%3Ccircle id='Ellipse_152-69' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-81' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-69' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-81' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-69' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-81' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-81' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-81' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-81' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-81' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-9' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-70' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-82' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-70' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-82' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-70' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-82' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-82' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-82' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-82' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-82' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-9' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-71' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-83' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-71' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-83' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-71' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-83' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-83' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-83' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-83' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-83' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-9' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-72' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-84' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-72' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-84' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-72' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-84' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-84' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-84' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-84' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-84' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-9' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-73' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-85' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-73' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-85' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-73' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-85' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-85' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-85' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-85' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-85' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-9' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-74' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-86' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-74' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-86' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-74' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-86' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-86' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-86' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-86' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-86' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-9' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-75' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-87' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-75' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-87' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-75' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-87' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-87' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-87' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-87' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-87' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-9' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-76' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-88' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-76' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-88' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-76' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-88' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-88' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-88' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-88' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-88' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-9' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-77' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-89' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-77' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-89' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-77' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-89' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-89' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-89' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-89' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-89' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-9' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-78' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-90' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-78' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-90' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-78' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-90' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-90' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-90' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-90' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-90' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-13' transform='translate(49 223)'%3E%3Cg id='Gruppe_3123-10'%3E%3Ccircle id='Ellipse_152-79' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-91' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-79' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-91' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-79' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-91' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-91' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-91' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-91' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-91' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-10' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-80' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-92' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-80' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-92' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-80' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-92' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-92' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-92' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-92' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-92' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-10' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-81' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-93' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-81' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-93' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-81' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-93' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-93' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-93' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-93' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-93' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-10' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-82' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-94' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-82' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-94' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-82' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-94' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-94' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-94' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-94' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-94' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-10' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-83' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-95' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-83' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-95' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-83' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-95' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-95' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-95' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-95' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-95' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-10' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-84' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-96' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-84' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-96' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-84' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-96' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-96' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-96' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-96' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-96' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-10' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-85' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-97' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-85' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-97' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-85' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-97' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-97' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-97' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-97' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-97' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-10' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-86' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-98' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-86' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-98' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-86' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-98' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-98' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-98' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-98' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-98' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-10' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-87' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-99' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-87' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-99' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-87' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-99' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-99' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-99' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-99' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-99' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-10' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-88' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-100' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-88' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-100' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-88' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-100' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-100' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-100' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-100' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-100' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-14' transform='translate(170 343)'%3E%3Cg id='Gruppe_3123-11'%3E%3Ccircle id='Ellipse_152-89' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-101' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-89' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-101' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-89' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-101' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-101' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-101' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-101' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-101' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-11' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-90' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-102' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-90' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-102' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-90' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-102' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-102' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-102' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-102' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-102' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-11' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-91' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-103' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-91' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-103' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-91' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-103' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-103' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-103' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-103' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-103' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-11' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-92' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-104' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-92' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-104' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-92' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-104' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-104' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-104' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-104' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-104' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-11' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-93' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-105' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-93' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-105' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-93' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-105' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-105' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-105' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-105' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-105' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-11' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-94' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-106' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-94' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-106' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-94' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-106' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-106' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-106' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-106' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-106' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-11' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-95' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-107' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-95' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-107' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-95' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-107' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-107' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-107' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-107' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-107' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-11' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-96' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-108' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-96' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-108' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-96' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-108' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-108' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-108' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-108' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-108' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-11' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-97' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-109' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-97' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-109' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-97' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-109' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-109' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-109' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-109' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-109' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-11' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-98' class='st0' cx='462' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-110' class='st0' cx='462' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-98' class='st0' cx='462' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-110' class='st0' cx='462' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-98' class='st0' cx='462' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-110' class='st0' cx='462' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-110' class='st0' cx='462' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-110' class='st0' cx='462' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-110' class='st0' cx='462' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-110' class='st0' cx='462' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3Cg id='pattern-15' transform='translate(169 223)'%3E%3Cg id='Gruppe_3123-12'%3E%3Ccircle id='Ellipse_152-99' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-111' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-99' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-111' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-99' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-111' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-111' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-111' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-111' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-111' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3132-12' transform='translate(60)'%3E%3Ccircle id='Ellipse_152-100' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-112' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-100' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-112' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-100' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-112' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-112' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-112' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-112' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-112' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3124-12' transform='translate(12)'%3E%3Ccircle id='Ellipse_152-101' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-113' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-101' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-113' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-101' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-113' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-113' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-113' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-113' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-113' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3131-12' transform='translate(72)'%3E%3Ccircle id='Ellipse_152-102' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-114' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-102' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-114' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-102' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-114' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-114' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-114' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-114' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-114' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3125-12' transform='translate(24)'%3E%3Ccircle id='Ellipse_152-103' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-115' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-103' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-115' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-103' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-115' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-115' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-115' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-115' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-115' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3130-12' transform='translate(84)'%3E%3Ccircle id='Ellipse_152-104' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-116' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-104' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-116' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-104' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-116' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-116' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-116' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-116' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-116' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3126-12' transform='translate(36)'%3E%3Ccircle id='Ellipse_152-105' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-117' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-105' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-117' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-105' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-117' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-117' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-117' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-117' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-117' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3129-12' transform='translate(96)'%3E%3Ccircle id='Ellipse_152-106' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-118' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-106' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-118' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-106' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-118' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-118' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-118' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-118' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-118' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3127-12' transform='translate(48)'%3E%3Ccircle id='Ellipse_152-107' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-119' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-107' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-119' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-107' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-119' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-119' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-119' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-119' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-119' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3Cg id='Gruppe_3128-12' transform='translate(108)'%3E%3Ccircle id='Ellipse_152-108' class='st0' cx='463' cy='25' r='4'/%3E%3Ccircle id='Ellipse_220-120' class='st0' cx='463' cy='85' r='4'/%3E%3Ccircle id='Ellipse_216-108' class='st0' cx='463' cy='37' r='4'/%3E%3Ccircle id='Ellipse_221-120' class='st0' cx='463' cy='97' r='4'/%3E%3Ccircle id='Ellipse_217-108' class='st0' cx='463' cy='49' r='4'/%3E%3Ccircle id='Ellipse_222-120' class='st0' cx='463' cy='109' r='4'/%3E%3Ccircle id='Ellipse_218-120' class='st0' cx='463' cy='61' r='4'/%3E%3Ccircle id='Ellipse_223-120' class='st0' cx='463' cy='121' r='4'/%3E%3Ccircle id='Ellipse_219-120' class='st0' cx='463' cy='73' r='4'/%3E%3Ccircle id='Ellipse_224-120' class='st0' cx='463' cy='133' r='4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A"); }
  @media only screen and (min-width: 992px) {
    .ce.ce--vd_page_teaser.version--image-cta .vd-image--teaser:before {
      height: calc(100% + 70px);
      right: -28px;
      margin-top: -45px;
      background-size: 77%; } }
  @media only screen and (min-width: 1200px) {
    .ce.ce--vd_page_teaser.version--image-cta .vd-image--teaser:before {
      height: calc(100% + 77px);
      right: -35px;
      margin-top: -48px;
      background-size: 56%; } }

/* Slider */
/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slider-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .slider-controls .vd-slick-prev,
  .slider-controls .vd-slick-next {
    background-color: transparent;
    border: none;
    width: 14px;
    height: 25px;
    padding: 0;
    background-repeat: no-repeat; }
  .slider-controls .slick-dots {
    text-align: center;
    padding: 0;
    margin: 0 15px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .slider-controls .slick-dots li {
      position: relative;
      display: inline-block;
      margin: 0 5px;
      padding: 0;
      cursor: pointer;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .slider-controls .slick-dots li button {
        font-size: 0;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        padding: 0; }
  .slider-controls--turquoise .vd-slick-prev {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2022%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m18.7%2032.88-15.5-14.7%2015.5-14.98%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E"); }
  .slider-controls--turquoise .vd-slick-next {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2022%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m3.2%2032.88%2015.5-14.7-15.5-14.98%22%20fill%3D%22none%22%20stroke%3D%22%2300848d%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E"); }
  .slider-controls--turquoise .slick-dots li button {
    background: transparent;
    border: 2px solid #00848d; }
  .slider-controls--turquoise .slick-dots li.slick-active button {
    background: #00848d; }
  .slider-controls--white .vd-slick-prev {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2022%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m18.7%2032.88-15.5-14.7%2015.5-14.98%22%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E"); }
  .slider-controls--white .vd-slick-next {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2022%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m3.2%2032.88%2015.5-14.7-15.5-14.98%22%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%226%22%2F%3E%3C%2Fsvg%3E"); }
  .slider-controls--white .slick-dots li button {
    background: transparent;
    border: 2px solid #fff; }
  .slider-controls--white .slick-dots li.slick-active button {
    background: #fff; }

.slick-dotted.slick-slider {
  margin-bottom: 10px; }

.slick-dots-container {
  width: 5.5rem;
  overflow: hidden;
  display: block;
  padding: 0;
  margin: 0.625rem auto;
  height: 0.875rem;
  position: relative; }

.slick-dots-container > ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  position: relative;
  margin: 0;
  list-style: none;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: unset;
  height: 100%; }

.slick-dots-container > ul li {
  width: 0.625rem;
  height: 0.625rem;
  margin: 0 0.25rem;
  background-color: #efd5d5;
  border: none;
  border-radius: 50%; }

.slick-dots-container > ul li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0.3125rem;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0; }

.slick-dots-container > ul li.p-small-1,
.slick-dots-container > ul li.n-small-1 {
  -webkit-transform: scale(0.8);
          transform: scale(0.8); }

.slick-dots-container > ul li.slick-active {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transform-origin: center;
          transform-origin: center;
  background: #3498db; }

.slick-dots li button:before {
  display: none; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.ce.ce--vd_news_carousel {
  position: relative;
  margin-top: 0px;
  padding-bottom: 7.5rem;
  padding-top: 7.5rem; }
  .ce.ce--vd_news_carousel .ce__content {
    margin: 0 auto;
    overflow: hidden; }
  .ce.ce--vd_news_carousel .vd-slide {
    position: relative; }
  .ce.ce--vd_news_carousel .ce__title__subtitle {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.8px;
    color: #101010;
    text-transform: uppercase;
    font-weight: 700; }
  .ce.ce--vd_news_carousel .vd-image {
    position: relative; }
  .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slide__content {
    padding: 80px 80px;
    /*
                @media only screen and (max-width: 1199px) {
                    padding: 40px 80px;   
                }
*/ }
    @media only screen and (max-width: 991px) {
      .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slide__content {
        padding: 40px 80px;
        padding-bottom: 200px; } }
    @media only screen and (max-width: 767px) {
      .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slide__content {
        padding: 20px;
        padding-bottom: 200px; } }
    .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slide__content .ce__title > * {
      font-size: 40px;
      font-size: 2.5rem; }
      @media only screen and (max-width: 991px) {
        .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slide__content .ce__title > * {
          font-size: 30px;
          font-size: 1.875rem; } }
  .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider {
    max-width: 85%;
    margin: 0 auto; }
    @media only screen and (max-width: 991px) {
      .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider {
        max-width: 100%; } }
    .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .container, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-breadcrumb, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-breadcrumb .vd-nav, .vd-breadcrumb .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-nav, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider #tx-solr-search, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-filter-container, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__bottom .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-section--header .header__navigation--buttons, .vd-section--header .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .header__navigation--buttons, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section--header .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider body:not(.template--startpage) .vd-section .header__navigation--buttons, body:not(.template--startpage) .vd-section .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .header__navigation--buttons, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider body.template--startpage .vd-section--hero .vd-wrapper, body.template--startpage .vd-section--hero .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .content-element.gutachter-list, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-section--main .vd-message, .vd-section--main .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-message, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-section--header .header__top .vd-wrapper, .vd-section--header .header__top .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_event_calendar .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_event_registration .vd-wrapper, .ce.ce--vd_event_registration .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--sfeventmgt_pieventdetail .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_event_list > .vd-wrapper,
    .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_event_search > .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_newsletter_registration, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_services_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_text_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .single-news-teaser, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .icon, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-actions, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_list .news__cta, .ce.ce--vd_news_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .news__cta, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_accordion .ce__title, .ce--vd_accordion .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title,
    .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_downloads .ce__title, .ce--vd_downloads .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_accordion .ce__content .ce__bodytext, .ce--vd_accordion .ce__content .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__bodytext,
    .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_downloads .ce__content .ce__bodytext, .ce--vd_downloads .ce__content .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__bodytext, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__content > .ce__bodytext, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_green__front_bright .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-slick-dots, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_image .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_text .vd-wrapper, .ce.ce--vd_text .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--table .vd-wrapper, .ce.ce--table .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--html .vd-wrapper, .ce.ce--html .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_text_images .ce__title, .ce.ce--vd_text_images .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_link_list, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_quotation, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_pages_teaser .ce__title, .ce--vd_pages_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_video .vd-wrapper, .ce.ce--vd_video .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--form_formframework .vd-wrapper, .ce.ce--form_formframework .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_info_box, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_magazines .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_list_offers .ce__title, .ce.ce--vd_list_offers .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .content-element-directories .text, .content-element-directories .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .text, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .content-element-directories #directories_filter__form, .content-element-directories .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider #directories_filter__form, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .content-element-directories .directories-results, .content-element-directories .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .directories-results, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider #tx-solr-search .vd-wrapper, #tx-solr-search .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider main > .ce.ce--vd_event_teaser .single-event-teaser, main > .ce.ce--vd_event_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .single-event-teaser, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_departments_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_divisions_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_persons_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_job_form, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_downloads .vd-wrapper, .ce--vd_downloads .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_download .ce__title, .ce--vd_download .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_download .ce__content, .ce--vd_download .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__content, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_menu_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_carousel > .vd-wrapper {
      background-repeat: no-repeat;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='230.75' height='143.3' viewBox='0 0 230.75 143.3'%3E%3Cg id='teaser' transform='translate(1.234 -83.547)'%3E%3Cg id='Gruppe_3301' data-name='Gruppe 3301' transform='translate(-1.234 83.547)'%3E%3Cg id='Gruppe_3309' data-name='Gruppe 3309' transform='translate(0 0)'%3E%3Cg id='Gruppe_3187' data-name='Gruppe 3187'%3E%3Cg id='Gruppe_2052' data-name='Gruppe 2052' transform='translate(0 8.976)'%3E%3Cg id='Gruppe_2051' data-name='Gruppe 2051' transform='translate(1.496 1.774)'%3E%3Cpath id='Pfad_942' data-name='Pfad 942' d='M158.513,417.242h0c-2.992,2.244-9.35,2.618-11.968,5.61v8.975c0,9.724,9.724,14.96,9.724,14.96L183.2,431.454l87.887,50.862c5.236,2.992,14.586,2.618,20.943-.748l66.57-38.521c2.992-1.87,4.862-4.114,5.236-6.358s0-5.984,0-9.724L228.075,354.786c-5.236-2.992-14.585-2.618-20.943.748L135.7,391.811v8.976c0,1.87,1.122,3.74,3.74,4.862Z' transform='translate(-135.7 -352.757)' fill='%23005d7d'/%3E%3C/g%3E%3Cpath id='Pfad_943' data-name='Pfad 943' d='M281.155,486.608a19.67,19.67,0,0,1-9.724-2.244l-87.513-50.488-26.179,15.333a.7.7,0,0,1-1.122,0c-.374-.374-10.472-5.61-10.472-16.082v-8.975c0-.374,0-.374.374-.748,1.5-2.244,4.488-2.992,7.48-4.114a25.782,25.782,0,0,0,2.992-1.122l-17.577-10.1c-2.618-1.5-4.114-3.366-4.114-5.984v-9.35c0-.374.374-.748.748-1.122l71.431-36.277c6.358-3.74,16.455-4.114,22.065-.748L365.3,426.77c.374.374.748.374.748,1.122v10.1c-.374,2.618-2.244,5.236-5.61,7.106l-66.57,38.521A28.922,28.922,0,0,1,281.155,486.608Zm-97.237-54.976h.374l87.887,50.862c4.862,2.992,14.212,2.618,19.821-.748l66.57-38.521c2.618-1.5,4.488-3.74,4.488-5.61V428.64L228.049,356.834c-4.862-2.992-14.211-2.618-19.821.748L137.17,393.859v8.228c0,1.5,1.122,2.992,2.992,4.114l19.447,11.22c.374,0,.374.374.374.748s0,.748-.374.748c-1.5,1.122-3.366,1.5-5.236,2.244-2.244.748-4.862,1.5-6.358,2.992v8.6c0,7.854,6.732,12.342,8.6,13.837L182.8,431.257A2.9,2.9,0,0,0,183.918,431.631Z' transform='translate(-135.3 -352.283)' fill='%23034f69'/%3E%3C/g%3E%3Cg id='Gruppe_2054' data-name='Gruppe 2054'%3E%3Cg id='Gruppe_2053' data-name='Gruppe 2053' transform='translate(1.234 1.774)'%3E%3Cpath id='Pfad_944' data-name='Pfad 944' d='M158.705,414.842h0c-5.236,3.366-11.594,8.976-11.967,14.585-.748,8.976,9.724,14.96,9.724,14.96l26.927-15.334,87.887,50.862c5.236,2.992,14.585,2.618,20.943-.748l66.57-38.521c6.357-3.74,6.732-8.975,1.5-11.968L228.267,352.386c-5.236-2.992-14.585-2.618-20.943.748l-66.57,38.147c-6.358,3.74-6.732,8.975-1.5,11.967Z' transform='translate(-135.63 -350.358)' fill='%23fff'/%3E%3C/g%3E%3Cpath id='Pfad_945' data-name='Pfad 945' d='M281.155,484.208a19.676,19.676,0,0,1-9.724-2.244l-87.513-50.488-26.179,15.333a.7.7,0,0,1-1.122,0c-.374-.374-10.846-6.358-10.1-16.081.374-5.61,5.984-10.845,10.846-14.585L139.414,405.67c-2.618-1.5-4.114-3.74-4.114-6.358,0-2.992,2.244-5.61,5.61-7.854l66.57-38.52c6.358-3.74,16.455-4.114,22.065-.748l132.017,76.293c2.618,1.5,4.114,3.74,4.114,6.358,0,2.992-2.244,5.61-5.61,7.854L293.5,481.216A26.177,26.177,0,0,1,281.155,484.208Zm-97.237-54.976h.374l87.887,50.862c4.862,2.992,14.212,2.618,19.821-.748l66.57-38.521c2.992-1.5,4.488-3.74,4.488-5.984,0-1.5-1.122-2.992-2.992-4.488L228.049,354.06c-4.862-2.992-14.211-2.618-19.821.748l-66.57,38.521c-2.992,1.5-4.488,3.74-4.488,5.984,0,1.5,1.122,2.992,2.992,4.488l19.447,11.22c.374,0,.374.374.374.748s0,.748-.374.748c-7.106,4.862-11.22,9.724-11.594,13.837-.374,7.106,6.732,12.342,8.6,13.464L182.8,428.484C183.544,429.232,183.918,429.232,183.918,429.232Z' transform='translate(-135.3 -349.883)' fill='%23034f69'/%3E%3C/g%3E%3Cg id='Gruppe_2055' data-name='Gruppe 2055' transform='translate(78.756 26.835)'%3E%3Cpath id='Pfad_946' data-name='Pfad 946' d='M261.6,419.3h-.374L156.887,359.083c-.374-.374-.748-1.122-.374-1.5s1.122-.748,1.5-.374l104.342,60.212c.374.374.748,1.122.374,1.5C262.352,418.921,261.978,419.3,261.6,419.3Z' transform='translate(-156.359 -357.059)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_2056' data-name='Gruppe 2056' transform='translate(62.301 35.811)'%3E%3Cpath id='Pfad_947' data-name='Pfad 947' d='M257.578,422.069H257.2L152.487,361.483c-.374-.374-.748-1.122-.374-1.5s1.122-.748,1.5-.374l104.342,60.212c.374.374.748,1.122.374,1.5A.8.8,0,0,1,257.578,422.069Z' transform='translate(-151.959 -359.459)' fill='%23005d7d'/%3E%3C/g%3E%3Cg id='Gruppe_2057' data-name='Gruppe 2057' transform='translate(46.593 45.535)'%3E%3Cpath id='Pfad_948' data-name='Pfad 948' d='M253,424.295h-.374L148.288,364.083c-.374-.374-.748-1.122-.374-1.5s1.122-.748,1.5-.374l104.342,60.212c.374.374.748,1.122.374,1.5C253.752,423.921,253.378,424.295,253,424.295Z' transform='translate(-147.759 -362.059)' fill='%23005d7d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
      background-position: calc(100% - 50px) center; }
      @media only screen and (max-width: 1199px) {
        .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .container, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-breadcrumb, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-breadcrumb .vd-nav, .vd-breadcrumb .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-nav, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider #tx-solr-search, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-filter-container, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__bottom .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-section--header .header__navigation--buttons, .vd-section--header .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .header__navigation--buttons, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section--header .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider body:not(.template--startpage) .vd-section .header__navigation--buttons, body:not(.template--startpage) .vd-section .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .header__navigation--buttons, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider body.template--startpage .vd-section--hero .vd-wrapper, body.template--startpage .vd-section--hero .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .content-element.gutachter-list, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-section--main .vd-message, .vd-section--main .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-message, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-section--header .header__top .vd-wrapper, .vd-section--header .header__top .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_event_calendar .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_event_registration .vd-wrapper, .ce.ce--vd_event_registration .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--sfeventmgt_pieventdetail .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_event_list > .vd-wrapper,
        .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_event_search > .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_newsletter_registration, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_services_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_text_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .single-news-teaser, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .icon, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-actions, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_list .news__cta, .ce.ce--vd_news_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .news__cta, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_accordion .ce__title, .ce--vd_accordion .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title,
        .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_downloads .ce__title, .ce--vd_downloads .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_accordion .ce__content .ce__bodytext, .ce--vd_accordion .ce__content .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__bodytext,
        .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_downloads .ce__content .ce__bodytext, .ce--vd_downloads .ce__content .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__bodytext, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__content > .ce__bodytext, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_green__front_bright .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-slick-dots, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_image .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_text .vd-wrapper, .ce.ce--vd_text .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--table .vd-wrapper, .ce.ce--table .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--html .vd-wrapper, .ce.ce--html .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_text_images .ce__title, .ce.ce--vd_text_images .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_link_list, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_quotation, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_pages_teaser .ce__title, .ce--vd_pages_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_video .vd-wrapper, .ce.ce--vd_video .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--form_formframework .vd-wrapper, .ce.ce--form_formframework .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_info_box, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_magazines .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_list_offers .ce__title, .ce.ce--vd_list_offers .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .content-element-directories .text, .content-element-directories .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .text, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .content-element-directories #directories_filter__form, .content-element-directories .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider #directories_filter__form, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .content-element-directories .directories-results, .content-element-directories .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .directories-results, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider #tx-solr-search .vd-wrapper, #tx-solr-search .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider main > .ce.ce--vd_event_teaser .single-event-teaser, main > .ce.ce--vd_event_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .single-event-teaser, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_departments_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_divisions_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_persons_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_job_form, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_downloads .vd-wrapper, .ce--vd_downloads .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_download .ce__title, .ce--vd_download .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_download .ce__content, .ce--vd_download .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__content, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_menu_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_carousel > .vd-wrapper {
          background-size: 190px; } }
      @media only screen and (max-width: 991px) {
        .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .container, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-breadcrumb, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-breadcrumb .vd-nav, .vd-breadcrumb .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-nav, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider #tx-solr-search, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-filter-container, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__bottom .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-section--header .header__navigation--buttons, .vd-section--header .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .header__navigation--buttons, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section--header .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider body:not(.template--startpage) .vd-section .header__navigation--buttons, body:not(.template--startpage) .vd-section .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .header__navigation--buttons, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider body.template--startpage .vd-section--hero .vd-wrapper, body.template--startpage .vd-section--hero .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .content-element.gutachter-list, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-section--main .vd-message, .vd-section--main .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-message, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-section--header .header__top .vd-wrapper, .vd-section--header .header__top .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_event_calendar .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_event_registration .vd-wrapper, .ce.ce--vd_event_registration .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--sfeventmgt_pieventdetail .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_event_list > .vd-wrapper,
        .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_event_search > .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_newsletter_registration, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_services_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_text_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .single-news-teaser, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .icon, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-actions, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_list .news__cta, .ce.ce--vd_news_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .news__cta, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_accordion .ce__title, .ce--vd_accordion .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title,
        .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_downloads .ce__title, .ce--vd_downloads .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_accordion .ce__content .ce__bodytext, .ce--vd_accordion .ce__content .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__bodytext,
        .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_downloads .ce__content .ce__bodytext, .ce--vd_downloads .ce__content .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__bodytext, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__content > .ce__bodytext, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_green__front_bright .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-slick-dots, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_image .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_text .vd-wrapper, .ce.ce--vd_text .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--table .vd-wrapper, .ce.ce--table .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--html .vd-wrapper, .ce.ce--html .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_text_images .ce__title, .ce.ce--vd_text_images .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_link_list, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_quotation, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_pages_teaser .ce__title, .ce--vd_pages_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_video .vd-wrapper, .ce.ce--vd_video .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--form_formframework .vd-wrapper, .ce.ce--form_formframework .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_info_box, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_magazines .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_list_offers .ce__title, .ce.ce--vd_list_offers .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .content-element-directories .text, .content-element-directories .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .text, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .content-element-directories #directories_filter__form, .content-element-directories .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider #directories_filter__form, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .content-element-directories .directories-results, .content-element-directories .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .directories-results, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider #tx-solr-search .vd-wrapper, #tx-solr-search .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider main > .ce.ce--vd_event_teaser .single-event-teaser, main > .ce.ce--vd_event_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .single-event-teaser, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_departments_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_divisions_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_persons_list .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_job_form, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_downloads .vd-wrapper, .ce--vd_downloads .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_download .ce__title, .ce--vd_download .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__title, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce--vd_download .ce__content, .ce--vd_download .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce__content, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_menu_teaser .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .vd-wrapper, .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .ce.ce--vd_news_carousel > .vd-wrapper {
          background-position: center calc(100% - 40px);
          background-size: 150px; } }
    @media only screen and (max-width: 991px) {
      .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider .col-md-9 {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 100%; } }
  @media only screen and (max-width: 991px) {
    .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slider-container {
      padding-bottom: 120px; } }
  @media only screen and (max-width: 991px) {
    .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slick-prev span,
    .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slick-next span {
      top: calc(100% - 60px); } }
  @media only screen and (max-width: 991px) {
    .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slick-prev {
      left: calc(50% - 70px); } }
  @media only screen and (max-width: 991px) {
    .ce.ce--vd_news_carousel .news-layout--headline_only__icon .vd-slick-next {
      right: calc(50% - 70px); } }
  .ce.ce--vd_news_carousel .vd-slider-container {
    position: relative; }
  .ce.ce--vd_news_carousel .vd-slick-prev, .ce.ce--vd_news_carousel .vd-slick-next {
    position: absolute;
    width: 60px;
    top: 0;
    height: 100%;
    z-index: 100;
    cursor: pointer; }
    .ce.ce--vd_news_carousel .vd-slick-prev span, .ce.ce--vd_news_carousel .vd-slick-next span {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 60px;
      height: 60px;
      background-color: #015D7D;
      border-radius: 30px;
      text-indent: -9999px;
      background-size: 30px 30px;
      background-position: center center;
      background-repeat: no-repeat;
      overflow: hidden;
      position: relative;
      top: calc(50% - 30px); }
  .ce.ce--vd_news_carousel .vd-slick-prev {
    left: 0; }
    .ce.ce--vd_news_carousel .vd-slick-prev span {
      position: relative; }
      .ce.ce--vd_news_carousel .vd-slick-prev span:after {
        content: '';
        height: 18px;
        width: 32px;
        display: block;
        top: 21px;
        left: 13px;
        position: absolute;
        background-repeat: no-repeat;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23fff'/%3E%3C/svg%3E");
        background-size: contain;
        background-position: center center;
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
  .ce.ce--vd_news_carousel .vd-slick-next {
    text-align: right;
    right: 0; }
    .ce.ce--vd_news_carousel .vd-slick-next span {
      position: relative; }
      .ce.ce--vd_news_carousel .vd-slick-next span:after {
        content: '';
        height: 18px;
        width: 32px;
        display: block;
        top: 21px;
        left: 13px;
        position: absolute;
        background-repeat: no-repeat;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31.75' height='17.416' viewBox='0 0 31.75 17.416'%3E%3Cpath id='right-arrow' d='M23.042,107.5l-1.414,1.414,6.293,6.293H0v2H27.921L21.628,123.5l1.414,1.414,8.708-8.708Z' transform='translate(0 -107.5)' fill='%23fff'/%3E%3C/svg%3E");
        background-size: contain;
        background-position: center center; }

#hero .ce.ce--vd_news_carousel {
  padding-top: 0; }

@media only screen and (min-width: 1200px) {
  .container, .vd-breadcrumb, .vd-breadcrumb .vd-nav, #tx-solr-search, .vd-filter-container, .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__navigation--buttons, body.template--startpage .vd-section--header .header__top .vd-wrapper, body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section .header__navigation--buttons, body.template--startpage .vd-section--hero .vd-wrapper, .content-element.gutachter-list, .vd-section--main .vd-message, .vd-section--header .header__top .vd-wrapper, .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_event_registration .vd-wrapper, .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--vd_event_list > .vd-wrapper,
  .ce--vd_event_search > .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_newsletter_registration, .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list.ce--minimal__background_red .icon, .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .news__cta, .ce--vd_accordion .ce__title,
  .ce--vd_downloads .ce__title, .ce--vd_accordion .ce__content .ce__bodytext,
  .ce--vd_downloads .ce__content .ce__bodytext, .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .vd-slick-dots, .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_text .vd-wrapper, .ce.ce--table .vd-wrapper, .ce.ce--html .vd-wrapper, .ce.ce--vd_text_images .ce__title, .ce.ce--vd_link_list, .ce.ce--vd_quotation, .ce--vd_pages_teaser .ce__title, .ce.ce--vd_video .vd-wrapper, .ce.ce--form_formframework .vd-wrapper, .ce.ce--vd_info_box, .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_list_offers .ce__title, .content-element-directories .text, .content-element-directories #directories_filter__form, .content-element-directories .directories-results, #tx-solr-search .vd-wrapper, main > .ce.ce--vd_event_teaser .single-event-teaser, .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_job_form, .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce--vd_downloads .vd-wrapper, .ce--vd_download .ce__title, .ce--vd_download .ce__content, .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_news_carousel > .vd-wrapper {
    max-width: 1440px;
    padding-right: 5.638em;
    padding-left: 5.638em; } }

@media only screen and (max-width: 400px) {
  .container, .vd-breadcrumb, .vd-breadcrumb .vd-nav, #tx-solr-search, .vd-filter-container, .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__navigation--buttons, body.template--startpage .vd-section--header .header__top .vd-wrapper, body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section .header__navigation--buttons, body.template--startpage .vd-section--hero .vd-wrapper, .content-element.gutachter-list, .vd-section--main .vd-message, .vd-section--header .header__top .vd-wrapper, .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_events_list > .vd-wrapper, .ce.ce--vd_events_search > .vd-wrapper, .ce.ce--vd_event_registration .vd-wrapper, .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--vd_event_list > .vd-wrapper,
  .ce--vd_event_search > .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_newsletter_registration, .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list.ce--minimal__background_red .icon, .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list .news__cta, .ce--vd_accordion .ce__title,
  .ce--vd_downloads .ce__title, .ce--vd_accordion .ce__content .ce__bodytext,
  .ce--vd_downloads .ce__content .ce__bodytext, .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .vd-slick-dots, .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_text .vd-wrapper, .ce.ce--table .vd-wrapper, .ce.ce--html .vd-wrapper, .ce.ce--vd_text_images .ce__title, .ce.ce--vd_link_list, .ce.ce--vd_quotation, .ce--vd_pages_teaser .ce__title, .ce.ce--vd_video .vd-wrapper, .ce.ce--form_formframework .vd-wrapper, .ce.ce--vd_info_box, .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_list_offers .ce__title, .content-element-directories .text, .content-element-directories #directories_filter__form, .content-element-directories .directories-results, #tx-solr-search .vd-wrapper, main > .ce.ce--vd_event_teaser .single-event-teaser, .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_job_form, .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, .ce--vd_downloads .vd-wrapper, .ce--vd_download .ce__title, .ce--vd_download .ce__content, .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_news_carousel > .vd-wrapper {
    max-width: 768px;
    padding-right: 1em;
    padding-left: 1em; } }

body {
  overflow-x: hidden !important; }

body.fixed {
  overflow: hidden;
  position: fixed; }

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  /* added line */ }

@media only screen and (max-width: 767px) {
  main {
    padding-top: 40px; } }

main h1,
main h2,
main h3,
main .ce.ce--vd_job_form fieldset legend,
.ce.ce--vd_job_form fieldset main legend,
main h4,
main h5 {
  -ms-hyphens: auto;
      hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto; }

.ce__bodytext .text-right {
  text-align: right; }

.print {
  display: none; }

@media print {
  .body__container {
    width: 100%;
    margin: 0;
    float: none; }
  .print {
    display: block; }
    .print--header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin: 3.125rem auto; }
      .print--header svg {
        width: 100px;
        height: auto;
        margin-right: 2.5rem; }
    .print--search-query {
      margin-bottom: 2.5rem; }
      .print--search-query > * {
        margin: 0.625rem 0; }
  @page {
    margin: 1.6cm 0; }
  body {
    line-height: 1.3 !important;
    background: #fff !important;
    color: #000 !important; }
  h1 {
    font-size: 24pt; }
  h2, h3, .ce.ce--vd_job_form fieldset legend,
  h4 {
    font-size: 20pt;
    margin-top: 25px; }
  a {
    page-break-inside: avoid; }
  blockquote {
    page-break-inside: avoid; }
  h1,
  h2, h3, .ce.ce--vd_job_form fieldset legend,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
    page-break-inside: avoid; }
  img,
  .vd-image {
    display: block !important;
    page-break-inside: avoid !important;
    page-break-after: avoid !important; }
  p {
    page-break-inside: avoid !important;
    orphans: 3 !important;
    widows: 3 !important;
    display: block !important; }
  table,
  pre {
    page-break-inside: avoid; }
  ul,
  ol,
  dl {
    page-break-before: avoid; }
  /* Linkfarbe und Linkverhalten darstellen */
  a:link,
  a:visited,
  a {
    background: transparent;
    color: #0000EE !important;
    font-weight: bold;
    text-decoration: underline;
    text-align: left;
    page-break-inside: avoid;
    border-bottom: 0px !important;
    border: none; }
  a[href^=http]:after {
    content: " <" attr(href) "> "; }
  a[href]:after {
    content: " (" attr(href) ") "; }
  iframe,
  ins {
    display: none;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    line-height: 0pt !important;
    white-space: nowrap; }
  .embed-youtube,
  .embed-responsive {
    position: absolute;
    height: 0;
    overflow: hidden; }
  header,
  footer,
  #hero,
  .page-navigation,
  .vd-social-media-sharing,
  .back-link,
  .ce--vd_carousel,
  .ce--vd_pages_teaser,
  .ce--vd_icons,
  .ce--vd_newsletter_registration,
  .ce--vd_news_teaser,
  .ce--vd_event_teaser .ce--vd_video,
  .ce--vd_event_teaser,
  .figure__caption,
  .vd-breadcrumb,
  .event__calendar-actions,
  .icon.icon--svg,
  .print-results,
  nav[aria-label="pagebrowser"],
  .f3-widget-paginator,
  .vd-filter--reviewer,
  .vd-filter--authority,
  .vd-filter--course {
    display: none; }
  html[data-page-id="190"] .body__container,
  html[data-page-id="223"] .body__container,
  html[data-page-id="224"] .body__container {
    padding-top: 0; }
  html[data-page-id="190"] .container, html[data-page-id="190"] .vd-breadcrumb, html[data-page-id="190"] .vd-breadcrumb .vd-nav, .vd-breadcrumb html[data-page-id="190"] .vd-nav, html[data-page-id="190"] #tx-solr-search, html[data-page-id="190"] .vd-filter-container, html[data-page-id="190"] .vd-section--header .header__bottom .vd-wrapper, .vd-section--header .header__bottom html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .vd-section--header .header__navigation--buttons, .vd-section--header html[data-page-id="190"] .header__navigation--buttons, html[data-page-id="190"] body:not(.template--startpage) .vd-section--header .vd-wrapper, body:not(.template--startpage) .vd-section--header html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] body:not(.template--startpage) .vd-section .header__navigation--buttons, body:not(.template--startpage) .vd-section html[data-page-id="190"] .header__navigation--buttons, html[data-page-id="190"] body.template--startpage .vd-section--hero .vd-wrapper, body.template--startpage .vd-section--hero html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .content-element.gutachter-list, html[data-page-id="190"] .vd-section--main .vd-message, .vd-section--main html[data-page-id="190"] .vd-message, html[data-page-id="190"] .vd-section--header .header__top .vd-wrapper, .vd-section--header .header__top html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce.ce--vd_event_calendar .vd-wrapper, .ce.ce--vd_event_calendar html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce.ce--vd_events_list > .vd-wrapper, html[data-page-id="190"] .ce.ce--vd_events_search > .vd-wrapper, html[data-page-id="190"] .ce.ce--vd_event_registration .vd-wrapper, .ce.ce--vd_event_registration html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce--sfeventmgt_pieventdetail .vd-wrapper, .ce--sfeventmgt_pieventdetail html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce--vd_event_list > .vd-wrapper,
  html[data-page-id="190"] .ce--vd_event_search > .vd-wrapper, html[data-page-id="190"] .ce.ce--vd_press_mailing_list_subscription .vd-wrapper, .ce.ce--vd_press_mailing_list_subscription html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce.ce--vd_newsletter_registration, html[data-page-id="190"] .ce.ce--vd_services_teaser .vd-wrapper, .ce.ce--vd_services_teaser html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce.ce--vd_text_teaser .ce__title, .ce.ce--vd_text_teaser html[data-page-id="190"] .ce__title, html[data-page-id="190"] .ce.ce--vd_news_teaser .single-news-teaser, .ce.ce--vd_news_teaser html[data-page-id="190"] .single-news-teaser, html[data-page-id="190"] .ce.ce--vd_news_list .ce__title, .ce.ce--vd_news_list html[data-page-id="190"] .ce__title, html[data-page-id="190"] .ce.ce--vd_news_list .icon, .ce.ce--vd_news_list html[data-page-id="190"] .icon, html[data-page-id="190"] .ce.ce--vd_news_list .vd-actions, .ce.ce--vd_news_list html[data-page-id="190"] .vd-actions, html[data-page-id="190"] .ce.ce--vd_news_list .news__cta, .ce.ce--vd_news_list html[data-page-id="190"] .news__cta, html[data-page-id="190"] .ce--vd_accordion .ce__title, .ce--vd_accordion html[data-page-id="190"] .ce__title,
  html[data-page-id="190"] .ce--vd_downloads .ce__title, .ce--vd_downloads html[data-page-id="190"] .ce__title, html[data-page-id="190"] .ce--vd_accordion .ce__content .ce__bodytext, .ce--vd_accordion .ce__content html[data-page-id="190"] .ce__bodytext,
  html[data-page-id="190"] .ce--vd_downloads .ce__content .ce__bodytext, .ce--vd_downloads .ce__content html[data-page-id="190"] .ce__bodytext, html[data-page-id="190"] .ce.ce--vd_carousel .ce__content > .ce__bodytext, .ce.ce--vd_carousel html[data-page-id="190"] .ce__content > .ce__bodytext, html[data-page-id="190"] .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper, .ce.ce--vd_carousel.ce--bg_green__front_bright html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper, .ce.ce--vd_carousel.ce--bg_grey html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .vd-slick-dots, html[data-page-id="190"] .ce.ce--vd_image .vd-wrapper, .ce.ce--vd_image html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce.ce--vd_text .vd-wrapper, .ce.ce--vd_text html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce.ce--table .vd-wrapper, .ce.ce--table html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce.ce--html .vd-wrapper, .ce.ce--html html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce.ce--vd_text_images .ce__title, .ce.ce--vd_text_images html[data-page-id="190"] .ce__title, html[data-page-id="190"] .ce.ce--vd_link_list, html[data-page-id="190"] .ce.ce--vd_quotation, html[data-page-id="190"] .ce--vd_pages_teaser .ce__title, .ce--vd_pages_teaser html[data-page-id="190"] .ce__title, html[data-page-id="190"] .ce.ce--vd_video .vd-wrapper, .ce.ce--vd_video html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce.ce--form_formframework .vd-wrapper, .ce.ce--form_formframework html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce.ce--vd_info_box, html[data-page-id="190"] .ce.ce--vd_magazines .vd-wrapper, .ce.ce--vd_magazines html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce.ce--vd_list_offers .ce__title, .ce.ce--vd_list_offers html[data-page-id="190"] .ce__title, html[data-page-id="190"] .content-element-directories .text, .content-element-directories html[data-page-id="190"] .text, html[data-page-id="190"] .content-element-directories #directories_filter__form, .content-element-directories html[data-page-id="190"] #directories_filter__form, html[data-page-id="190"] .content-element-directories .directories-results, .content-element-directories html[data-page-id="190"] .directories-results, html[data-page-id="190"] #tx-solr-search .vd-wrapper, #tx-solr-search html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] main > .ce.ce--vd_event_teaser .single-event-teaser, main > .ce.ce--vd_event_teaser html[data-page-id="190"] .single-event-teaser, html[data-page-id="190"] .ce.ce--vd_departments_list .ce__title, .ce.ce--vd_departments_list html[data-page-id="190"] .ce__title, html[data-page-id="190"] .ce.ce--vd_divisions_list .ce__title, .ce.ce--vd_divisions_list html[data-page-id="190"] .ce__title, html[data-page-id="190"] .ce.ce--vd_persons_list .ce__title, .ce.ce--vd_persons_list html[data-page-id="190"] .ce__title, html[data-page-id="190"] .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_contact_card:not(.ce-layout--aside-box) html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper, .ce.ce--vd_department_card:not(.ce-layout--aside-box) html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce.ce--vd_job_form, html[data-page-id="190"] .ce.ce--vd_social_wall > .vd-wrapper > .ce__title, html[data-page-id="190"] .ce--vd_downloads .vd-wrapper, .ce--vd_downloads html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce--vd_download .ce__title, .ce--vd_download html[data-page-id="190"] .ce__title, html[data-page-id="190"] .ce--vd_download .ce__content, .ce--vd_download html[data-page-id="190"] .ce__content, html[data-page-id="190"] .ce.ce--vd_menu_teaser .vd-wrapper, .ce.ce--vd_menu_teaser html[data-page-id="190"] .vd-wrapper, html[data-page-id="190"] .ce.ce--vd_news_carousel > .vd-wrapper,
  html[data-page-id="223"] .container,
  html[data-page-id="223"] .vd-breadcrumb,
  html[data-page-id="223"] .vd-breadcrumb .vd-nav,
  .vd-breadcrumb html[data-page-id="223"] .vd-nav,
  html[data-page-id="223"] #tx-solr-search,
  html[data-page-id="223"] .vd-filter-container,
  html[data-page-id="223"] .vd-section--header .header__bottom .vd-wrapper,
  .vd-section--header .header__bottom html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .vd-section--header .header__navigation--buttons,
  .vd-section--header html[data-page-id="223"] .header__navigation--buttons,
  html[data-page-id="223"] body:not(.template--startpage) .vd-section--header .vd-wrapper,
  body:not(.template--startpage) .vd-section--header html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] body:not(.template--startpage) .vd-section .header__navigation--buttons,
  body:not(.template--startpage) .vd-section html[data-page-id="223"] .header__navigation--buttons,
  html[data-page-id="223"] body.template--startpage .vd-section--hero .vd-wrapper,
  body.template--startpage .vd-section--hero html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .content-element.gutachter-list,
  html[data-page-id="223"] .vd-section--main .vd-message,
  .vd-section--main html[data-page-id="223"] .vd-message,
  html[data-page-id="223"] .vd-section--header .header__top .vd-wrapper,
  .vd-section--header .header__top html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce.ce--vd_event_calendar .vd-wrapper,
  .ce.ce--vd_event_calendar html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce.ce--vd_events_list > .vd-wrapper,
  html[data-page-id="223"] .ce.ce--vd_events_search > .vd-wrapper,
  html[data-page-id="223"] .ce.ce--vd_event_registration .vd-wrapper,
  .ce.ce--vd_event_registration html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce--sfeventmgt_pieventdetail .vd-wrapper,
  .ce--sfeventmgt_pieventdetail html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce--vd_event_list > .vd-wrapper,
  html[data-page-id="223"] .ce--vd_event_search > .vd-wrapper,
  html[data-page-id="223"] .ce.ce--vd_press_mailing_list_subscription .vd-wrapper,
  .ce.ce--vd_press_mailing_list_subscription html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce.ce--vd_newsletter_registration,
  html[data-page-id="223"] .ce.ce--vd_services_teaser .vd-wrapper,
  .ce.ce--vd_services_teaser html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce.ce--vd_text_teaser .ce__title,
  .ce.ce--vd_text_teaser html[data-page-id="223"] .ce__title,
  html[data-page-id="223"] .ce.ce--vd_news_teaser .single-news-teaser,
  .ce.ce--vd_news_teaser html[data-page-id="223"] .single-news-teaser,
  html[data-page-id="223"] .ce.ce--vd_news_list .ce__title,
  .ce.ce--vd_news_list html[data-page-id="223"] .ce__title,
  html[data-page-id="223"] .ce.ce--vd_news_list .icon,
  .ce.ce--vd_news_list html[data-page-id="223"] .icon,
  html[data-page-id="223"] .ce.ce--vd_news_list .vd-actions,
  .ce.ce--vd_news_list html[data-page-id="223"] .vd-actions,
  html[data-page-id="223"] .ce.ce--vd_news_list .news__cta,
  .ce.ce--vd_news_list html[data-page-id="223"] .news__cta,
  html[data-page-id="223"] .ce--vd_accordion .ce__title,
  .ce--vd_accordion html[data-page-id="223"] .ce__title,
  html[data-page-id="223"] .ce--vd_downloads .ce__title,
  .ce--vd_downloads html[data-page-id="223"] .ce__title,
  html[data-page-id="223"] .ce--vd_accordion .ce__content .ce__bodytext,
  .ce--vd_accordion .ce__content html[data-page-id="223"] .ce__bodytext,
  html[data-page-id="223"] .ce--vd_downloads .ce__content .ce__bodytext,
  .ce--vd_downloads .ce__content html[data-page-id="223"] .ce__bodytext,
  html[data-page-id="223"] .ce.ce--vd_carousel .ce__content > .ce__bodytext,
  .ce.ce--vd_carousel html[data-page-id="223"] .ce__content > .ce__bodytext,
  html[data-page-id="223"] .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper,
  .ce.ce--vd_carousel.ce--bg_green__front_bright html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper,
  .ce.ce--vd_carousel.ce--bg_grey html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .vd-slick-dots,
  html[data-page-id="223"] .ce.ce--vd_image .vd-wrapper,
  .ce.ce--vd_image html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce.ce--vd_text .vd-wrapper,
  .ce.ce--vd_text html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce.ce--table .vd-wrapper,
  .ce.ce--table html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce.ce--html .vd-wrapper,
  .ce.ce--html html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce.ce--vd_text_images .ce__title,
  .ce.ce--vd_text_images html[data-page-id="223"] .ce__title,
  html[data-page-id="223"] .ce.ce--vd_link_list,
  html[data-page-id="223"] .ce.ce--vd_quotation,
  html[data-page-id="223"] .ce--vd_pages_teaser .ce__title,
  .ce--vd_pages_teaser html[data-page-id="223"] .ce__title,
  html[data-page-id="223"] .ce.ce--vd_video .vd-wrapper,
  .ce.ce--vd_video html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce.ce--form_formframework .vd-wrapper,
  .ce.ce--form_formframework html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce.ce--vd_info_box,
  html[data-page-id="223"] .ce.ce--vd_magazines .vd-wrapper,
  .ce.ce--vd_magazines html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce.ce--vd_list_offers .ce__title,
  .ce.ce--vd_list_offers html[data-page-id="223"] .ce__title,
  html[data-page-id="223"] .content-element-directories .text,
  .content-element-directories html[data-page-id="223"] .text,
  html[data-page-id="223"] .content-element-directories #directories_filter__form,
  .content-element-directories html[data-page-id="223"] #directories_filter__form,
  html[data-page-id="223"] .content-element-directories .directories-results,
  .content-element-directories html[data-page-id="223"] .directories-results,
  html[data-page-id="223"] #tx-solr-search .vd-wrapper,
  #tx-solr-search html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] main > .ce.ce--vd_event_teaser .single-event-teaser,
  main > .ce.ce--vd_event_teaser html[data-page-id="223"] .single-event-teaser,
  html[data-page-id="223"] .ce.ce--vd_departments_list .ce__title,
  .ce.ce--vd_departments_list html[data-page-id="223"] .ce__title,
  html[data-page-id="223"] .ce.ce--vd_divisions_list .ce__title,
  .ce.ce--vd_divisions_list html[data-page-id="223"] .ce__title,
  html[data-page-id="223"] .ce.ce--vd_persons_list .ce__title,
  .ce.ce--vd_persons_list html[data-page-id="223"] .ce__title,
  html[data-page-id="223"] .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper,
  .ce.ce--vd_contact_card:not(.ce-layout--aside-box) html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper,
  .ce.ce--vd_department_card:not(.ce-layout--aside-box) html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce.ce--vd_job_form,
  html[data-page-id="223"] .ce.ce--vd_social_wall > .vd-wrapper > .ce__title,
  html[data-page-id="223"] .ce--vd_downloads .vd-wrapper,
  .ce--vd_downloads html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce--vd_download .ce__title,
  .ce--vd_download html[data-page-id="223"] .ce__title,
  html[data-page-id="223"] .ce--vd_download .ce__content,
  .ce--vd_download html[data-page-id="223"] .ce__content,
  html[data-page-id="223"] .ce.ce--vd_menu_teaser .vd-wrapper,
  .ce.ce--vd_menu_teaser html[data-page-id="223"] .vd-wrapper,
  html[data-page-id="223"] .ce.ce--vd_news_carousel > .vd-wrapper,
  html[data-page-id="224"] .container,
  html[data-page-id="224"] .vd-breadcrumb,
  html[data-page-id="224"] .vd-breadcrumb .vd-nav,
  .vd-breadcrumb html[data-page-id="224"] .vd-nav,
  html[data-page-id="224"] #tx-solr-search,
  html[data-page-id="224"] .vd-filter-container,
  html[data-page-id="224"] .vd-section--header .header__bottom .vd-wrapper,
  .vd-section--header .header__bottom html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .vd-section--header .header__navigation--buttons,
  .vd-section--header html[data-page-id="224"] .header__navigation--buttons,
  html[data-page-id="224"] body:not(.template--startpage) .vd-section--header .vd-wrapper,
  body:not(.template--startpage) .vd-section--header html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] body:not(.template--startpage) .vd-section .header__navigation--buttons,
  body:not(.template--startpage) .vd-section html[data-page-id="224"] .header__navigation--buttons,
  html[data-page-id="224"] body.template--startpage .vd-section--hero .vd-wrapper,
  body.template--startpage .vd-section--hero html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .content-element.gutachter-list,
  html[data-page-id="224"] .vd-section--main .vd-message,
  .vd-section--main html[data-page-id="224"] .vd-message,
  html[data-page-id="224"] .vd-section--header .header__top .vd-wrapper,
  .vd-section--header .header__top html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce.ce--vd_event_calendar .vd-wrapper,
  .ce.ce--vd_event_calendar html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce.ce--vd_events_list > .vd-wrapper,
  html[data-page-id="224"] .ce.ce--vd_events_search > .vd-wrapper,
  html[data-page-id="224"] .ce.ce--vd_event_registration .vd-wrapper,
  .ce.ce--vd_event_registration html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce--sfeventmgt_pieventdetail .vd-wrapper,
  .ce--sfeventmgt_pieventdetail html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce--vd_event_list > .vd-wrapper,
  html[data-page-id="224"] .ce--vd_event_search > .vd-wrapper,
  html[data-page-id="224"] .ce.ce--vd_press_mailing_list_subscription .vd-wrapper,
  .ce.ce--vd_press_mailing_list_subscription html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce.ce--vd_newsletter_registration,
  html[data-page-id="224"] .ce.ce--vd_services_teaser .vd-wrapper,
  .ce.ce--vd_services_teaser html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce.ce--vd_text_teaser .ce__title,
  .ce.ce--vd_text_teaser html[data-page-id="224"] .ce__title,
  html[data-page-id="224"] .ce.ce--vd_news_teaser .single-news-teaser,
  .ce.ce--vd_news_teaser html[data-page-id="224"] .single-news-teaser,
  html[data-page-id="224"] .ce.ce--vd_news_list .ce__title,
  .ce.ce--vd_news_list html[data-page-id="224"] .ce__title,
  html[data-page-id="224"] .ce.ce--vd_news_list .icon,
  .ce.ce--vd_news_list html[data-page-id="224"] .icon,
  html[data-page-id="224"] .ce.ce--vd_news_list .vd-actions,
  .ce.ce--vd_news_list html[data-page-id="224"] .vd-actions,
  html[data-page-id="224"] .ce.ce--vd_news_list .news__cta,
  .ce.ce--vd_news_list html[data-page-id="224"] .news__cta,
  html[data-page-id="224"] .ce--vd_accordion .ce__title,
  .ce--vd_accordion html[data-page-id="224"] .ce__title,
  html[data-page-id="224"] .ce--vd_downloads .ce__title,
  .ce--vd_downloads html[data-page-id="224"] .ce__title,
  html[data-page-id="224"] .ce--vd_accordion .ce__content .ce__bodytext,
  .ce--vd_accordion .ce__content html[data-page-id="224"] .ce__bodytext,
  html[data-page-id="224"] .ce--vd_downloads .ce__content .ce__bodytext,
  .ce--vd_downloads .ce__content html[data-page-id="224"] .ce__bodytext,
  html[data-page-id="224"] .ce.ce--vd_carousel .ce__content > .ce__bodytext,
  .ce.ce--vd_carousel html[data-page-id="224"] .ce__content > .ce__bodytext,
  html[data-page-id="224"] .ce.ce--vd_carousel.ce--bg_green__front_bright .vd-wrapper,
  .ce.ce--vd_carousel.ce--bg_green__front_bright html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce.ce--vd_carousel.ce--bg_grey .vd-wrapper,
  .ce.ce--vd_carousel.ce--bg_grey html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .vd-slick-dots,
  html[data-page-id="224"] .ce.ce--vd_image .vd-wrapper,
  .ce.ce--vd_image html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce.ce--vd_text .vd-wrapper,
  .ce.ce--vd_text html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce.ce--table .vd-wrapper,
  .ce.ce--table html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce.ce--html .vd-wrapper,
  .ce.ce--html html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce.ce--vd_text_images .ce__title,
  .ce.ce--vd_text_images html[data-page-id="224"] .ce__title,
  html[data-page-id="224"] .ce.ce--vd_link_list,
  html[data-page-id="224"] .ce.ce--vd_quotation,
  html[data-page-id="224"] .ce--vd_pages_teaser .ce__title,
  .ce--vd_pages_teaser html[data-page-id="224"] .ce__title,
  html[data-page-id="224"] .ce.ce--vd_video .vd-wrapper,
  .ce.ce--vd_video html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce.ce--form_formframework .vd-wrapper,
  .ce.ce--form_formframework html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce.ce--vd_info_box,
  html[data-page-id="224"] .ce.ce--vd_magazines .vd-wrapper,
  .ce.ce--vd_magazines html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce.ce--vd_list_offers .ce__title,
  .ce.ce--vd_list_offers html[data-page-id="224"] .ce__title,
  html[data-page-id="224"] .content-element-directories .text,
  .content-element-directories html[data-page-id="224"] .text,
  html[data-page-id="224"] .content-element-directories #directories_filter__form,
  .content-element-directories html[data-page-id="224"] #directories_filter__form,
  html[data-page-id="224"] .content-element-directories .directories-results,
  .content-element-directories html[data-page-id="224"] .directories-results,
  html[data-page-id="224"] #tx-solr-search .vd-wrapper,
  #tx-solr-search html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] main > .ce.ce--vd_event_teaser .single-event-teaser,
  main > .ce.ce--vd_event_teaser html[data-page-id="224"] .single-event-teaser,
  html[data-page-id="224"] .ce.ce--vd_departments_list .ce__title,
  .ce.ce--vd_departments_list html[data-page-id="224"] .ce__title,
  html[data-page-id="224"] .ce.ce--vd_divisions_list .ce__title,
  .ce.ce--vd_divisions_list html[data-page-id="224"] .ce__title,
  html[data-page-id="224"] .ce.ce--vd_persons_list .ce__title,
  .ce.ce--vd_persons_list html[data-page-id="224"] .ce__title,
  html[data-page-id="224"] .ce.ce--vd_contact_card:not(.ce-layout--aside-box) .vd-wrapper,
  .ce.ce--vd_contact_card:not(.ce-layout--aside-box) html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce.ce--vd_department_card:not(.ce-layout--aside-box) .vd-wrapper,
  .ce.ce--vd_department_card:not(.ce-layout--aside-box) html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce.ce--vd_job_form,
  html[data-page-id="224"] .ce.ce--vd_social_wall > .vd-wrapper > .ce__title,
  html[data-page-id="224"] .ce--vd_downloads .vd-wrapper,
  .ce--vd_downloads html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce--vd_download .ce__title,
  .ce--vd_download html[data-page-id="224"] .ce__title,
  html[data-page-id="224"] .ce--vd_download .ce__content,
  .ce--vd_download html[data-page-id="224"] .ce__content,
  html[data-page-id="224"] .ce.ce--vd_menu_teaser .vd-wrapper,
  .ce.ce--vd_menu_teaser html[data-page-id="224"] .vd-wrapper,
  html[data-page-id="224"] .ce.ce--vd_news_carousel > .vd-wrapper {
    max-width: 85% !important; }
  html[data-page-id="190"] .grid-container,
  html[data-page-id="190"] .ce--vd_text_teaser,
  html[data-page-id="223"] .grid-container,
  html[data-page-id="223"] .ce--vd_text_teaser,
  html[data-page-id="224"] .grid-container,
  html[data-page-id="224"] .ce--vd_text_teaser {
    display: none; }
  html[data-page-id="190"] .vd-result-list__item,
  html[data-page-id="223"] .vd-result-list__item,
  html[data-page-id="224"] .vd-result-list__item {
    page-break-inside: avoid; }
    html[data-page-id="190"] .vd-result-list__item *,
    html[data-page-id="223"] .vd-result-list__item *,
    html[data-page-id="224"] .vd-result-list__item * {
      font-size: 16px !important; }
  html[data-page-id="190"] .vd-result-list__item-title,
  html[data-page-id="223"] .vd-result-list__item-title,
  html[data-page-id="224"] .vd-result-list__item-title {
    color: #000;
    font-size: 18px;
    font-size: 1.125rem; }
  html[data-page-id="190"] .print-footer,
  html[data-page-id="223"] .print-footer,
  html[data-page-id="224"] .print-footer {
    position: fixed;
    bottom: 0; }
  html[data-page-id="190"] .vd-result-list__item .row--additional,
  html[data-page-id="223"] .vd-result-list__item .row--additional,
  html[data-page-id="224"] .vd-result-list__item .row--additional {
    display: block !important;
    margin-bottom: 0;
    padding-bottom: 0; }
  html[data-page-id="190"] a[href],
  html[data-page-id="223"] a[href],
  html[data-page-id="224"] a[href] {
    color: #000 !important; }
  html[data-page-id="190"] a[href]:after,
  html[data-page-id="190"] a[href]:before,
  html[data-page-id="223"] a[href]:after,
  html[data-page-id="223"] a[href]:before,
  html[data-page-id="224"] a[href]:after,
  html[data-page-id="224"] a[href]:before {
    content: none; }
  html[data-page-id="190"] .reviewer__details,
  html[data-page-id="223"] .reviewer__details,
  html[data-page-id="224"] .reviewer__details {
    padding-top: 0; }
  .top-label, .tag {
    background-color: transparent;
    color: #000;
    padding: 0;
    font-weight: 400;
    border: none; }
  .ce--vd_cta.version--text_image .vd_cta__item--image {
    display: none; }
  .ce--vd_cta.version--text_image .vd_cta__item--text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }
  .ce--vd_cta {
    background-color: transparent !important; }
    .ce--vd_cta .vd_cta__item--icon {
      display: none; }
    .ce--vd_cta .vd_cta__item--text {
      background-color: transparent !important;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      max-width: 100%; }
    .ce--vd_cta *:not(a) {
      color: #000 !important; }
  .accordion .accordion__panel {
    height: auto !important;
    display: block !important; }
  p,
  address,
  li,
  dt,
  dd,
  blockquote {
    font-size: 16px; }
  table {
    width: 100% !important; }
  ul,
  ol {
    list-style: square;
    margin-left: 18pt;
    margin-bottom: 20pt; }
  li {
    line-height: 1.6em; } }

