/* line 8, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box {
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.84);
  z-index: 30;
  -webkit-transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
  box-sizing: border-box;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
/* line 24, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box.lsb-active {
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  width: 100%;
  height: 100%;
}
/* line 36, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-content {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  margin: auto;
  padding: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: 100%;
}
/* line 49, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
/* line 61, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box img.lsb-image {
  position: relative;
  max-height: 0%;
  max-width: 0%;
  cursor: pointer;
  min-width: 0;
  min-height: 0;
  margin: auto;
  /* -webkit-transition: all 0.95s cubic-bezier(0.12, 0.58, 0.26, 0.99);
    transition: all 0.95s cubic-bezier(0.12, 0.58, 0.26, 0.99); */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
/* line 72, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box img.lsb-image.lsb-image-loaded {
  max-height: 100%;
  max-width: 100%;
  min-height: 1px;
  border-radius: 3px;
}
/* line 81, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-no-image-found {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  height: 100%;
  width: 100%;
  padding: 10px;
  margin: auto;
  overflow: visible;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}
/* line 96, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-no-image-found .no-found-msg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  margin: 0 auto;
}
/* line 106, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-control-panel {
  position: absolute;
  bottom: 5px;
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  z-index: 2;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.64);
  border-radius: 3px;
  opacity: .5;
}
/* line 116, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-control-panel:hover {
  opacity: 1;
}
/* line 120, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-panel-button {
  display: inline-block;
  cursor: pointer;
  width: 21px;
  height: 28px;
  margin: 6px 6px 0 6px;
  position: relative;
}
/* line 127, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-panel-button:not(:last-child) {
  margin-right: 10px;
}
/* line 131, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-panel-button:hover svg {
  opacity: 1;
}
/* line 135, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-panel-button svg {
  position: absolute;
  width: 21px;
  opacity: 0.5;
  top: 0;
  left: 0;
}
/* line 141, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-panel-button svg:last-child {
  top: -1px;
}
/* line 150, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-pause svg {
  opacity: 1;
}
/* line 154, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-download {
  text-decoration: underline;
}
/* line 157, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-header {
  position: absolute;
  top: 9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 32;
  margin: 0;
  padding: 0;
  display: block;
  background: transparent;
}
/* line 168, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-image-title {
  display: block;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 17px;
  text-shadow: 0 1px 4px #000000;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.32);
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  opacity: 0;
}
/* line 169, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-image-title:not(:empty) {
  opacity: 1;
}
/* line 181, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-image-title.lsb-image-notitle {
  opacity: 0;
}
/* line 185, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-image-count {
  display: block;
  margin-right: 5px;
  font-weight: 500;
  color: #ffffff;
  font-size: 11px;
  text-shadow: 0 1px 4px #000000;
  background: transparent;
}
/* line 194, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-control {
  cursor: pointer;
  color: #ffffff;
  overflow: visible;
  text-shadow: 0 0 2px #000;
}
/* line 199, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-control:hover {
  color: #ffffff;
  text-shadow: 0 0 2px #000, 0 0 20px #ffffff;
}
/* line 203, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-control:hover svg {
  opacity: 1;
}
/* line 209, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-prev,
.lightspeed-box .lsb-next {
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0;
  z-index: 2;
}
/* line 216, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-prev svg,
.lightspeed-box .lsb-next svg {
  width: 21px;
  height: 100%;
  opacity: .5;
  position: absolute;
}
/* line 223, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-prev {
  left: 0;
}
/* line 225, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-prev svg {
  left: 35px;
}
/* line 228, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-prev svg:last-child {
  left: 36px;
}
/* line 232, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-next {
  right: 0;
}
/* line 234, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-next svg {
  right: 35px;
}
/* line 237, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-next svg:last-child {
  right: 36px;
}
/* line 242, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 25%;
  z-index: 3;
  text-align: right;
}
/* line 250, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-close svg {
  width: 21px;
  height: 28px;
  opacity: .5;
  position: absolute;
  top: 25px;
  right: 35px;
}
/* line 258, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.lightspeed-box .lsb-close svg:last-child {
  top: 24px;
}
/* line 264, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon {
  margin: auto;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/* line 274, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
/* line 280, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  -webkit-animation: waitingiconSicrleDelay 1.2s infinite ease-in-out both;
  animation: waitingiconSicrleDelay 1.2s infinite ease-in-out both;
}
/* line 290, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(1) {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
/* line 293, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(1)::before {
  -webkit-animation-delay: -1.3s;
  animation-delay: -1.3s;
}
/* line 290, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(2) {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}
/* line 293, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(2)::before {
  -webkit-animation-delay: -1.4s;
  animation-delay: -1.4s;
}
/* line 290, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(3) {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
/* line 293, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(3)::before {
  -webkit-animation-delay: -1.5s;
  animation-delay: -1.5s;
}
/* line 290, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(4) {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}
/* line 293, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(4)::before {
  -webkit-animation-delay: -1.6s;
  animation-delay: -1.6s;
}
/* line 290, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(5) {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}
/* line 293, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(5)::before {
  -webkit-animation-delay: -1.7s;
  animation-delay: -1.7s;
}
/* line 290, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(6) {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* line 293, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(6)::before {
  -webkit-animation-delay: -1.8s;
  animation-delay: -1.8s;
}
/* line 290, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(7) {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}
/* line 293, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(7)::before {
  -webkit-animation-delay: -1.9s;
  animation-delay: -1.9s;
}
/* line 290, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(8) {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}
/* line 293, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(8)::before {
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}
/* line 290, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(9) {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
/* line 293, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(9)::before {
  -webkit-animation-delay: -2.1s;
  animation-delay: -2.1s;
}
/* line 290, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(10) {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}
/* line 293, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(10)::before {
  -webkit-animation-delay: -2.2s;
  animation-delay: -2.2s;
}
/* line 290, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(11) {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}
/* line 293, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(11)::before {
  -webkit-animation-delay: -2.3s;
  animation-delay: -2.3s;
}
/* line 290, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(12) {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
/* line 293, D:/yadisk/YandexDisk/web-dev/lsb-lightbox/src/lsb.scss */
.waitingicon .waitingicon-circle:nth-child(12)::before {
  -webkit-animation-delay: -2.4s;
  animation-delay: -2.4s;
}
@-webkit-keyframes waitingiconSicrleDelay {
  0%,
  39%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes waitingiconSicrleDelay {
  0%,
  39%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
  #portal-searchbox {
    display: None;
  }
  #portal-personaltools {
    display: None;
  }
  #portal-breadcrumbs {
    display: None;
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #222;
  background-color: #fffa a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #d40f14;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #8d0a0d;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #cccccc;
}
.sr-only,
.hiddenStructure,
.crud-form .header-select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
body {
  word-wrap: break-word;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 400;
  line-height: 1.1;
  color: inherit;
  font-style: normal;
}
h1,
h2,
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h1 a:focus,
h2 a:focus,
h3 a:focus {
  text-decoration: none;
  border-bottom: 2px #8d0a0d solid;
}
h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 34px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.documentDescription {
  font-size: 24px;
  font-weight: 500;
  color: #777777;
  margin-bottom: 10px;
}
small {
  font-size: 85%;
}
cite {
  font-style: normal;
}
mark {
  background-color: #ebd380;
  padding: .2em;
}
.discreet {
  color: #777777;
  font-weight: 400;
}
.documentByLine {
  color: #777777;
  font-weight: 400;
  margin-bottom: 10px;
}
.documentFirstHeading {
  padding-bottom: 9px;
  margin: 0 0 10px;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 2px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #222;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 25px;
  padding-right: 25px;
  /*
  @media (min-width: @plone-screen-sm-min) {
    width: @plone-container-sm-full;
  }
  @media (min-width: @plone-screen-md-min) {
    width: @plone-container-md-full;
  }
*/
}
@media (min-width: 1368px) {
  .container {
    width: 1368px;
  }
}
body.userrole-authenticated .container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 25px;
  padding-right: 25px;
  /*
  @media (min-width: @plone-screen-sm-min) {
    width: @plone-container-sm;
  }
  @media (min-width: @plone-screen-md-min) {
    width: @plone-container-md;
  }
*/
}
@media (min-width: 1368px) {
  body.userrole-authenticated .container {
    width: 1370px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 25px;
  padding-right: 25px;
}
.row {
  margin-left: -25px;
  margin-right: -25px;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 25px;
  padding-right: 25px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .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-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .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-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1368px) {
  .col-lg-1, .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-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
#edit-zone.plone-toolbar-top .plone-toolbar-container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 auto;
  height: 50px;
}
@media (min-width: 768px) {
  #edit-zone.plone-toolbar-top .plone-toolbar-container {
    width: 770px;
  }
}
@media (min-width: 992px) {
  #edit-zone.plone-toolbar-top .plone-toolbar-container {
    width: 990px;
  }
}
@media (min-width: 1368px) {
  #edit-zone.plone-toolbar-top .plone-toolbar-container {
    width: 1370px;
  }
}
#edit-zone.plone-toolbar-top.compressed .plone-toolbar-container {
  width: auto;
}
table {
  max-width: 100%;
  background-color: #fff;
  border-radius: 4px;
  font-weight: 400;
  color: #696969;
}
th {
  text-align: left;
  color: #222;
}
.listing {
  width: 100%;
  margin-bottom: 20px;
}
.listing > thead > tr > th,
.listing > tbody > tr > th,
.listing > tfoot > tr > th,
.listing > thead > tr > td,
.listing > tbody > tr > td,
.listing > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 0 solid #e5e5e5;
  border-collapse: collapse;
}
.listing > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 1px solid #e5e5e5;
}
.listing > caption + thead > tr:first-child > th,
.listing > colgroup + thead > tr:first-child > th,
.listing > thead:first-child > tr:first-child > th,
.listing > caption + thead > tr:first-child > td,
.listing > colgroup + thead > tr:first-child > td,
.listing > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.listing > tbody + tbody {
  border-top: 2px solid #e5e5e5;
}
.listing .listing {
  background-color: #fffa a;
}
.listing > tbody > tr:nth-child(odd) > td,
.listing > tbody > tr:nth-child(odd) > th {
  background-color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .plone-has-table {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }
  .plone-has-table:after {
    content: "⟷";
    position: fixed;
    color: #cccccc;
    margin-top: -3px;
  }
  .plone-has-table > .listing {
    margin-bottom: 0;
  }
  .plone-has-table > .listing > thead > tr > th,
  .plone-has-table > .listing > tbody > tr > th,
  .plone-has-table > .listing > tfoot > tr > th,
  .plone-has-table > .listing > thead > tr > td,
  .plone-has-table > .listing > tbody > tr > td,
  .plone-has-table > .listing > tfoot > tr > td {
    white-space: nowrap;
  }
}
table {
  width: 100%;
  max-width: 100%;
  border: 1px solid #e5e5e5;
}
table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td {
  vertical-align: top;
  border-top: 1px solid #e5e5e5;
}
table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #e5e5e5;
}
table > caption + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > th,
table > thead:first-child > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
table > tbody + tbody {
  border-top: 2px solid #e5e5e5;
}
table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td {
  border: 1px solid #e5e5e5;
}
table > thead > tr > th,
table > thead > tr > td {
  border-bottom-width: #e5e5e5;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #222;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
  font-weight: 100;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 18px;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
  min-width: 10em;
}
select[size="1"] {
  height: 34px;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #696969;
}
/*.form-control,*/
input[type="text"],
input[type="password"],
textarea,
select {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #000;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: #64bee8;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(100, 190, 232, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(100, 190, 232, 0.6);
}
input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: #222;
  opacity: 1;
}
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #222;
}
input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #222;
}
input[type="text"][disabled],
input[type="password"][disabled],
textarea[disabled],
select[disabled],
input[type="text"][readonly],
input[type="password"][readonly],
textarea[readonly],
select[readonly],
fieldset[disabled] input[type="text"],
fieldset[disabled] input[type="password"],
fieldset[disabled] textarea,
fieldset[disabled] select {
  cursor: not-allowed;
  background-color: #e5e5e5;
  opacity: 1;
}
textarea {
  min-height: 9em;
  min-width: 10em;
  resize: vertical;
}
textarea[name='form.widgets.IRichText.text'] {
  min-height: 12em;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
input[type="search"] {
  -webkit-appearance: none;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  line-height: 34px;
  line-height: 1.42857143 \0;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.field {
  margin-bottom: 15px;
}
.field span.option {
  display: block;
}
.field.error {
  background: #fbe8e4;
  -webkit-box-shadow: 0 0 0 5px #fbe8e4;
  box-shadow: 0 0 0 5px #fbe8e4;
}
.field.error .help-block,
.field.error .control-label,
.field.error .radio,
.field.error .checkbox,
.field.error .radio-inline,
.field.error .checkbox-inline {
  color: rgba(0, 0, 0, 0.5);
}
.field.error .form-control {
  border-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.field.error .form-control:focus {
  border-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(51, 51, 51, 0.5);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(51, 51, 51, 0.5);
}
.field.error .input-group-addon {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.5);
  background-color: #EC9C8D;
}
.field.error .form-control-feedback {
  color: rgba(0, 0, 0, 0.5);
}
.field.error > label,
.field.error div.error {
  color: #c4183c;
}
.field.error div.error {
  padding-left: 30px;
  font-weight: 400;
}
.field.error div.error:before {
  background-color: #ac493f;
  content: "×";
  font-size: 14px;
  font-weight: 400;
  margin-left: -30px;
  margin-right: 5px;
  display: inline-block;
  border-radius: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  top: -1px;
  position: relative;
}
.field.error input,
.field.error textarea,
.field.error select {
  border-color: #c4183c;
}
.field.error input:focus,
.field.error textarea:focus,
.field.error select:focus {
  -webkit-box-shadow: 0 0 8px #f6b2c0;
  box-shadow: 0 0 8px #f6b2c0;
}
.formHelp {
  margin-top: 0;
  margin-bottom: 0;
  color: #3c3c3c;
  font-weight: 400;
  font-style: italic;
}
.formControls {
  border-top: 1px solid #cccccc;
  background: #fcfcfd;
  padding: 12px;
  box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0, 0.05);
}
.plone-modal-body .formControls {
  border: none;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
label .required:after {
  color: #c4183c;
  content: "•";
  font-size: 200%;
  line-height: 0;
  position: relative;
  top: 7px;
  margin-left: -4px;
}
.searchField.portlet-search-gadget,
#sharing-user-group-search,
#select-rules {
  width: 100%;
  display: inline-block;
}
.searchField.portlet-search-gadget + .searchButton,
#sharing-user-group-search + #sharing-search-button,
#select-rules + input {
  position: relative;
  float: right;
  margin-top: -34px;
}
#search-results li {
  margin: 12px 0;
}
#search-results li .croppedDescription {
  margin-bottom: 0;
}
.highlightedSearchTerm {
  background: #fea;
  box-shadow: 0 0 1px 1px #fea;
}
.search-date-options > div,
.search-type-options > div {
  display: inline-block;
  margin-right: 12px;
}
.optionsToggle label {
  font-weight: 300;
  color: #696969;
}
.ordered-selection-field td {
  vertical-align: middle;
  text-align: center;
}
.ordered-selection-field td button {
  float: left;
  margin-left: 2rem;
}
.folder-factories {
  list-style: none;
}
.widget input + label {
  display: inline;
}
.template-asdform legend {
  background-color: #eee;
  padding: 10px;
}
.template-asdform .field {
  padding: 0px 20px;
}
.template-asdform #content .col-md-12 {
  padding-left: 0px;
  padding-right: 0px;
}
.zeam-form textarea,
.zeam-form input[type=text] {
  -moz-box-sizing: border-box;
  font-size: 16px;
  height: 100%;
  padding: 10px;
  border: none;
  background-color: #eee;
}
.zeam-form input[type=checkbox] {
  margin-right: 10px;
}
.zeam-form input {
  padding: 2em;
}
.zeam-form div.col-md-6,
.zeam-form div.col-md-12 {
  padding-left: 0;
  padding-right: 0;
}
.zeam-form fieldset {
  background-color: #eee;
  margin: 1em 0;
}
.zeam-form fieldset textarea,
.zeam-form fieldset input[type=text] {
  background-color: #fff;
}
.actions {
  text-align: right;
  margin-bottom: 40px;
}
.actions input {
  background-color: #444;
  color: #fff;
}
.standalone,
.context,
.destructive,
[type="submit"],
button {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 1px rgba(0, 0, 0, 0.25);
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.standalone:focus,
.context:focus,
.destructive:focus,
[type="submit"]:focus,
button:focus,
.standalone:active:focus,
.context:active:focus,
.destructive:active:focus,
[type="submit"]:active:focus,
button:active:focus,
.standalone.active:focus,
.context.active:focus,
.destructive.active:focus,
[type="submit"].active:focus,
button.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.standalone:hover,
.context:hover,
.destructive:hover,
[type="submit"]:hover,
button:hover,
.standalone:focus,
.context:focus,
.destructive:focus,
[type="submit"]:focus,
button:focus {
  color: #222;
  text-decoration: none;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.standalone:active,
.context:active,
.destructive:active,
[type="submit"]:active,
button:active,
.standalone.active,
.context.active,
.destructive.active,
[type="submit"].active,
button.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.standalone.disabled,
.context.disabled,
.destructive.disabled,
[type="submit"].disabled,
button.disabled,
.standalone[disabled],
.context[disabled],
.destructive[disabled],
[type="submit"][disabled],
button[disabled],
fieldset[disabled] .standalone,
fieldset[disabled] .context,
fieldset[disabled] .destructive,
fieldset[disabled] [type="submit"],
fieldset[disabled] button {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.standalone,
[type="submit"],
button {
  color: #222;
  background-color: #e5e5e5;
  border-color: #b2b2b2;
}
.standalone:hover,
[type="submit"]:hover,
button:hover,
.standalone:focus,
[type="submit"]:focus,
button:focus,
.standalone:active,
[type="submit"]:active,
button:active,
.standalone.active,
[type="submit"].active,
button.active,
.open > .dropdown-toggle.standalone,
.open > .dropdown-toggle[type="submit"],
.open > .dropdown-togglebutton {
  color: #222;
  background-color: #cccccc;
  border-color: #939393;
}
.standalone:active,
[type="submit"]:active,
button:active,
.standalone.active,
[type="submit"].active,
button.active,
.open > .dropdown-toggle.standalone,
.open > .dropdown-toggle[type="submit"],
.open > .dropdown-togglebutton {
  background-image: none;
}
.standalone.disabled,
[type="submit"].disabled,
button.disabled,
.standalone[disabled],
[type="submit"][disabled],
button[disabled],
fieldset[disabled] .standalone,
fieldset[disabled] [type="submit"],
fieldset[disabled] button,
.standalone.disabled:hover,
[type="submit"].disabled:hover,
button.disabled:hover,
.standalone[disabled]:hover,
[type="submit"][disabled]:hover,
button[disabled]:hover,
fieldset[disabled] .standalone:hover,
fieldset[disabled] [type="submit"]:hover,
fieldset[disabled] button:hover,
.standalone.disabled:focus,
[type="submit"].disabled:focus,
button.disabled:focus,
.standalone[disabled]:focus,
[type="submit"][disabled]:focus,
button[disabled]:focus,
fieldset[disabled] .standalone:focus,
fieldset[disabled] [type="submit"]:focus,
fieldset[disabled] button:focus,
.standalone.disabled:active,
[type="submit"].disabled:active,
button.disabled:active,
.standalone[disabled]:active,
[type="submit"][disabled]:active,
button[disabled]:active,
fieldset[disabled] .standalone:active,
fieldset[disabled] [type="submit"]:active,
fieldset[disabled] button:active,
.standalone.disabled.active,
[type="submit"].disabled.active,
button.disabled.active,
.standalone[disabled].active,
[type="submit"][disabled].active,
button[disabled].active,
fieldset[disabled] .standalone.active,
fieldset[disabled] [type="submit"].active,
fieldset[disabled] button.active {
  background-color: #e5e5e5;
  border-color: #b2b2b2;
}
.standalone .badge,
[type="submit"] .badge,
button .badge {
  color: #e5e5e5;
  background-color: #222;
}
.context {
  color: #fff;
  background-color: #2385c4;
  border-color: #1b6899;
}
.context:hover,
.context:focus,
.context:active,
.context.active,
.open > .dropdown-toggle.context {
  color: #fff;
  background-color: #1b6899;
  border-color: #124465;
}
.context:active,
.context.active,
.open > .dropdown-toggle.context {
  background-image: none;
}
.context.disabled,
.context[disabled],
fieldset[disabled] .context,
.context.disabled:hover,
.context[disabled]:hover,
fieldset[disabled] .context:hover,
.context.disabled:focus,
.context[disabled]:focus,
fieldset[disabled] .context:focus,
.context.disabled:active,
.context[disabled]:active,
fieldset[disabled] .context:active,
.context.disabled.active,
.context[disabled].active,
fieldset[disabled] .context.active {
  background-color: #2385c4;
  border-color: #1b6899;
}
.context .badge {
  color: #2385c4;
  background-color: #fff;
}
.destructive {
  color: #fff;
  background-color: #bb4f45;
  border-color: #963f37;
}
.destructive:hover,
.destructive:focus,
.destructive:active,
.destructive.active,
.open > .dropdown-toggle.destructive {
  color: #fff;
  background-color: #963f37;
  border-color: #692c26;
}
.destructive:active,
.destructive.active,
.open > .dropdown-toggle.destructive {
  background-image: none;
}
.destructive.disabled,
.destructive[disabled],
fieldset[disabled] .destructive,
.destructive.disabled:hover,
.destructive[disabled]:hover,
fieldset[disabled] .destructive:hover,
.destructive.disabled:focus,
.destructive[disabled]:focus,
fieldset[disabled] .destructive:focus,
.destructive.disabled:active,
.destructive[disabled]:active,
fieldset[disabled] .destructive:active,
.destructive.disabled.active,
.destructive[disabled].active,
fieldset[disabled] .destructive.active {
  background-color: #bb4f45;
  border-color: #963f37;
}
.destructive .badge {
  color: #bb4f45;
  background-color: #fff;
}
.link-parent {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 1px rgba(0, 0, 0, 0.25);
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #222;
  background-color: #e5e5e5;
  border-color: #b2b2b2;
  margin-bottom: 12px;
}
.link-parent:focus,
.link-parent:active:focus,
.link-parent.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.link-parent:hover,
.link-parent:focus {
  color: #222;
  text-decoration: none;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.link-parent:active,
.link-parent.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.link-parent.disabled,
.link-parent[disabled],
fieldset[disabled] .link-parent {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.link-parent:hover,
.link-parent:focus,
.link-parent:active,
.link-parent.active,
.open > .dropdown-toggle.link-parent {
  color: #222;
  background-color: #cccccc;
  border-color: #939393;
}
.link-parent:active,
.link-parent.active,
.open > .dropdown-toggle.link-parent {
  background-image: none;
}
.link-parent.disabled,
.link-parent[disabled],
fieldset[disabled] .link-parent,
.link-parent.disabled:hover,
.link-parent[disabled]:hover,
fieldset[disabled] .link-parent:hover,
.link-parent.disabled:focus,
.link-parent[disabled]:focus,
fieldset[disabled] .link-parent:focus,
.link-parent.disabled:active,
.link-parent[disabled]:active,
fieldset[disabled] .link-parent:active,
.link-parent.disabled.active,
.link-parent[disabled].active,
fieldset[disabled] .link-parent.active {
  background-color: #e5e5e5;
  border-color: #b2b2b2;
}
.link-parent .badge {
  color: #e5e5e5;
  background-color: #222;
}
.link-parent:before {
  content: "↩ ";
  top: 3px;
  position: relative;
}
.btn-default {
  color: white;
  font-size: 14px;
  background: #555555;
  margin-bottom: 0em;
  padding: 6px 8px;
}
.btn-primary {
  color: white;
  font-size: 16px;
  background: #555555;
  margin-bottom: 0em;
  padding: 8px 20px;
}
a.btn-primary:after {
  font-family: FontAwesome;
  content: '\f105';
  color: white;
  padding-left: 5px;
  font-style: normal;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}
.state-draft {
  color: #d39105;
}
.state-draft:hover,
.state-draft:active,
.state-draft:focus {
  color: #885e03;
}
.state-pending {
  color: #a5a912;
}
.state-pending:hover,
.state-pending:active,
.state-pending:focus {
  color: #62640b;
}
.state-private {
  color: #c4183c;
}
.state-private:hover,
.state-private:active,
.state-private:focus {
  color: #801027;
}
.state-internal {
  color: #d39105;
}
.state-internal:hover,
.state-internal:active,
.state-internal:focus {
  color: #885e03;
}
.state-internally_published {
  color: #7924f9;
}
.state-internally_published:hover,
.state-internally_published:active,
.state-internally_published:focus {
  color: #5405cc;
}
.plone-breadcrumb {
  clear: left;
  padding-top: 1.5em;
  font-size: 18px;
  background-color: #fff;
  /* uncomment to hide breadcrumbs on home
  body.section-front-page & {display: none;} //not breadcrumbs on homepage
  */
}
@media (max-width: 768px) {
  .plone-breadcrumb {
    display: none;
  }
}
.plone-breadcrumb > * > span {
  display: inline-block;
  color: #000;
  padding: 8px 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .plone-breadcrumb > * > span {
    display: none;
  }
}
.plone-breadcrumb ol {
  display: inline-block;
  padding: 8px 0;
  list-style: none;
  margin: 0;
}
.plone-breadcrumb ol > li {
  font-weight: 400;
  display: inline-block;
  line-height: 0;
  position: relative;
  padding: 0 30px 0 0;
  /*
      + li:after {
        content: "";
        position: absolute;
        padding: 0 5px;
        color: @plone-breadcrumb-bg;
        border-left: 5px solid;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        left: -21px;
        top: -15px;
        padding: 0 !important;
      }
*/
}
.plone-breadcrumb ol > li + li:before {
  content: "»";
  position: absolute;
  padding: 0 5px;
  color: #222;
  left: -22px;
  /*
        color: @plone-breadcrumb-color;
        border-left: 5px solid;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        left: -20px;
        top: -15px;
*/
  padding: 0 !important;
}
.plone-breadcrumb ol a {
  color: #222;
}
.plone-breadcrumb ol #breadcrumbs-current {
  color: #222;
  font-style: italic;
}
.listingBar {
  display: inline-block;
  padding: 0;
  list-style: none;
  margin: 20px 0;
}
.listingBar > li {
  font-weight: 400;
  display: inline;
  line-height: 0;
  position: relative;
  padding: 0;
  font-weight: 100;
}
.listingBar > li a {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #d40f14;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  margin-left: -1px;
}
.listingBar > li:first-child > a {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.listingBar > li:last-child > a {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.listingBar > li a:hover,
.listingBar > li a:focus {
  color: #8d0a0d;
  background-color: #f2f1f1;
  border-color: 1px solid #e5e5e5;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.listingBar > .active > a,
.listingBar > .active > a:hover,
.listingBar > .active > a:focus {
  z-index: 2;
  font-weight: 400;
  color: #fff;
  background-color: #d40f14;
  border-color: #d40f14;
  cursor: default;
}
.listingBar > .disabled > a,
.listingBar > .disabled > a:hover,
.listingBar > .disabled > a:focus {
  color: #cccccc;
  background-color: #fcfcfd;
  border-color: 1px solid #e5e5e5;
  cursor: default;
}
@media (max-width: 480px) {
  .listingBar li {
    display: none;
  }
  .listingBar li.previous,
  .listingBar li.next {
    display: inline;
  }
}
.pat-autotoc.autotabs,
.autotabs {
  background: #fff;
  padding: 6px 12px;
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.pat-autotoc.autotabs .autotoc-nav,
.autotabs .autotoc-nav {
  background: #f2f1f1;
  border-bottom: 1px solid #e5e5e5;
  margin: -6px -12px 6px;
}
.pat-autotoc.autotabs .autotoc-nav a,
.autotabs .autotoc-nav a {
  display: inline-block;
  padding: 12px;
  margin: 6px 0 0 6px;
  border: 1px solid #e5e5e5;
  margin-bottom: -1px;
  border-radius: 4px 4px 0 0;
  background: #fcfcfd;
  font-weight: 400;
}
.pat-autotoc.autotabs .autotoc-nav a:last-child,
.autotabs .autotoc-nav a:last-child {
  margin-right: 6px;
}
.pat-autotoc.autotabs .autotoc-nav a:hover,
.autotabs .autotoc-nav a:hover {
  text-decoration: none;
  background: #fff;
}
.pat-autotoc.autotabs .autotoc-nav a.active,
.autotabs .autotoc-nav a.active,
.pat-autotoc.autotabs .autotoc-nav a.active:hover,
.autotabs .autotoc-nav a.active:hover {
  color: #696969;
  cursor: default;
  background: #fff;
  border-bottom-color: #fff;
}
.pat-autotoc.autotabs .autotoc-nav .autotab-heading,
.autotabs .autotoc-nav .autotab-heading {
  display: inline-block;
  margin: 6px 0 0 6px;
}
.pat-autotoc.autotabs .formControls,
.autotabs .formControls {
  margin: 0 -12px -6px;
  border-radius: 0 0 4px 4px;
}
@media (max-width: 767px) {
  .autotabs .autotoc-nav {
    overflow-x: scroll;
    overflow-y: hidden;
    max-height: 52px;
    width: auto;
    white-space: nowrap;
    border-bottom: 0;
    box-shadow: inset 0 -1px #e5e5e5;
  }
  .autotabs .autotoc-nav a:not(.active) {
    box-shadow: inset 0 -1px #e5e5e5;
  }
}
.autotabs ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.autotabs ul li {
  list-style: none;
  display: inline-block;
}
.folder-listing {
  font-weight: 500;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
.folder-listing li {
  margin: 10px 0;
}
.folder-listing > li:before {
  content: "•";
  position: absolute;
  font-size: 19px;
  margin-top: -9px;
  left: 0;
  color: #a7daf2;
}
.folder-listing .documentByLine {
  font-weight: 400;
  color: #777777;
}
.tileImage {
  padding-right: 5px;
  float: left;
}
.tileImageNoFloat {
  margin-bottom: 5px;
}
.tileFooter {
  clear: both;
  margin-top: 5px;
}
.photoalbumEntryWrapper {
  display: block;
}
.photoAlbumEntry {
  display: inline-block;
  margin: 5px;
  vertical-align: middle;
}
.photoAlbumEntry a {
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  font-weight: 400;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: #fcfcfd;
  width: 220px;
  height: 240px;
}
.photoAlbumEntry img {
  max-width: 200px;
  max-height: 200px;
}
#content-core img {
  max-width: 100%;
  height: auto;
}
.portalMessage {
  padding: 15px;
  padding-left: 45px;
  margin-bottom: 20px;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17);
  font-size: 14px;
  font-weight: 400;
  text-shadow: 0 1px rgba(255, 255, 255, 0.1);
}
.portalMessage > strong,
.portalMessage > dt {
  font-weight: 500;
  padding-right: 5px;
  color: rgba(0, 0, 0, 0.5);
}
.portalMessage a {
  font-weight: 300;
  color: #9b0b0f;
}
.portalMessage > strong:before,
.portalMessage > dt:before {
  font-size: 14px;
  font-weight: 400;
  margin-left: -30px;
  margin-right: 10px;
  display: inline-block;
  border-radius: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  top: -1px;
  position: relative;
}
.portalMessage > dt,
.portalMessage > dd {
  display: inline;
}
.portalMessage > dd {
  margin: 0;
}
.portlet .portletContent > .portalMessage {
  padding: 15px;
  padding-left: 45px;
  margin: 15px;
}
.portalMessage.info {
  background-color: #aad6ea;
  border: 1px solid #9acee6;
  color: rgba(0, 0, 0, 0.5);
}
.portalMessage.info > strong,
.portalMessage.info > dt {
  color: rgba(0, 0, 0, 0.67);
}
.portalMessage.info > strong:before,
.portalMessage.info > dt:before {
  background-color: #3e7b91;
  content: "i";
}
.portalMessage.warning {
  background-color: #ebd380;
  border: 1px solid #e7ca66;
  color: rgba(0, 0, 0, 0.5);
}
.portalMessage.warning > strong,
.portalMessage.warning > dt {
  color: rgba(0, 0, 0, 0.67);
}
.portalMessage.warning > strong:before,
.portalMessage.warning > dt:before {
  background-color: #bc8d0d;
  content: "!";
}
.portalMessage.error {
  background-color: #EC9C8D;
  border: 1px solid #eb9484;
  color: rgba(0, 0, 0, 0.5);
}
.portalMessage.error > strong,
.portalMessage.error > dt {
  color: rgba(0, 0, 0, 0.67);
}
.portalMessage.error > strong:before,
.portalMessage.error > dt:before {
  background-color: #ac493f;
  content: "×";
}
/* special octogonal shape for error
.portalMessage.error {
	& > strong:before, & > dt:before {
		border-radius: 8px; //soften border
		background: @plone-alert-error-bullet;
		background:
			linear-gradient(135deg, transparent 4px, @plone-alert-error-bullet 0) top left,
			linear-gradient(225deg, transparent 4px, @plone-alert-error-bullet 0) top right,
			linear-gradient(315deg, transparent 4px, @plone-alert-error-bullet 0) bottom right,
			linear-gradient(45deg,  transparent 4px, @plone-alert-error-bullet 0) bottom left;
		background-size: 50% 50%;
		background-repeat: no-repeat;
	}
}
*/
.portlet .portletHeader {
  color: #555555;
}
.portlet.portletCalendar .portletHeader {
  text-align: center;
  position: relative;
}
.portlet.portletCalendar .portletHeader .calendarPrevious,
.portlet.portletCalendar .portletHeader .calendarNext {
  width: 30px;
  height: 30px;
  padding: 0 1px 2px;
  border-radius: 50%;
  position: absolute;
  display: inline-block;
  left: 5px;
  font-size: 30px;
  margin-top: -3px;
  line-height: 28px;
  font-weight: 100;
}
.portlet.portletCalendar .portletHeader .calendarPrevious:hover,
.portlet.portletCalendar .portletHeader .calendarNext:hover {
  background: #fff;
  text-decoration: none;
}
.portlet.portletCalendar .portletHeader .calendarNext {
  right: 5px;
  left: inherit;
}
.portlet .portletContent {
  font-size: 16px;
}
.portlet .portletContent > *,
.portlet .portletContent > div:not(.portalMessage) {
  font-weight: 400;
  color: #000;
}
.portlet .portletContent > ul {
  padding: 0;
  list-style: none;
  position: relative;
}
.portlet .portletContent > ul > li a {
  display: block;
  padding: 10px 15px 26px 30px;
  position: relative;
  color: #000;
  z-index: 1;
  background: #f3f2f2;
}
.portlet .portletContent > ul > li a:before {
  content: "•";
  position: absolute;
  font-size: 31px;
  margin-top: -9px;
  left: 15px;
  color: #a7daf2;
}
.portlet .portletContent > ul ul {
  padding-left: 15px;
  list-style: none;
}
.portlet .portletContent > ul .portletItemDetails {
  display: block;
  z-index: 0;
  padding: 0 15px 10px 30px;
  font-weight: 100;
  position: relative;
  margin-top: -26px;
  font-size: 12px;
  color: #777777;
}
.portlet .portletContent > ul li:hover {
  background: #fcfcfd;
}
.portlet .portletContent > ul li:hover a:before {
  color: #64bee8;
}
.portlet .portletContent table {
  width: 100%;
  text-align: center;
  text-align: middle;
  border-collapse: collapse;
  border-spacing: 0;
}
.portlet .portletContent table tr {
  line-height: 30px;
}
.portlet .portletContent table thead {
  background: #fcfcfd;
  border-bottom: 1px solid #e5e5e5;
}
.portlet .portletContent table thead th {
  color: #777777;
  font-weight: 100;
  height: 40px;
  text-align: center;
}
.portlet .portletContent table td > * {
  border-radius: 50%;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.portlet .portletContent table .cal_has_events {
  position: relative;
}
.portlet .portletContent table .cal_has_events a:hover {
  background: #dbecfe;
  text-decoration: none;
  box-shadow: 0 0 0 5px #dbecfe;
}
.portlet .portletContent table .cal_has_events a:after {
  content: "•";
  position: absolute;
  margin-left: 50%;
  left: -3px;
  font-size: 20px;
  color: #a7daf2;
  margin-top: 9px;
}
.portlet .portletContent table .cal_has_events a:hover:after {
  color: #64bee8;
}
.portlet .portletContent table .cal_next_month,
.portlet .portletContent table .cal_prev_month {
  color: #cccccc;
}
.portlet .portletContent table .cal_next_month.cal_has_events > a,
.portlet .portletContent table .cal_prev_month.cal_has_events > a {
  color: #a7daf2;
}
.portlet .portletContent table .cal_next_month.cal_has_events > a:after,
.portlet .portletContent table .cal_prev_month.cal_has_events > a:after {
  color: #d3edf8;
}
.portlet .portletContent table .cal_next_month.cal_has_events > a:hover,
.portlet .portletContent table .cal_prev_month.cal_has_events > a:hover {
  color: #8d0a0d;
}
.portlet .portletContent table .cal_next_month.cal_has_events > a:hover:after,
.portlet .portletContent table .cal_prev_month.cal_has_events > a:hover:after {
  color: #64bee8;
}
.portlet .portletContent table .today > * {
  background: #e5e5e5;
  font-weight: 500;
  box-shadow: 0 0 0 5px #e5e5e5;
}
.portlet .portletContent table tbody tr:first-child td > * {
  margin-top: 10px;
}
.portlet .portletContent table tbody tr:last-child td > * {
  margin-bottom: 10px;
}
.portlet .formControls {
  border: 0;
  background: none;
  padding: 0;
  box-shadow: none;
}
.portlet .portletFooter {
  border-top: 1px solid #e5e5e5;
  background: #fcfcfd;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 400;
  box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0, 0.05);
}
.portletDownloadPortlet {
  padding: 15px;
  margin-bottom: 5px;
  background: #f3f2f2;
}
.portletDownloadPortlet ul {
  list-style: none;
  padding-left: 0;
}
.portletDownloadPortlet ul > li {
  text-indent: -25px;
  margin-left: 25px;
  margin-bottom: 10px;
}
.portletDownloadPortlet ul > li > span > a {
  font-size: 16px;
}
.portletStaticText,
.portletPLZSuche,
.portletKontaktPortlet {
  font-size: 16px;
  padding: 15px;
  margin-bottom: 5px;
  background: #f3f2f2;
}
.portletStaticText .portletHeader,
.portletPLZSuche .portletHeader,
.portletKontaktPortlet .portletHeader,
.portletStaticText h3,
.portletPLZSuche h3,
.portletKontaktPortlet h3 {
  margin-bottom: 10px;
  margin-top: 0;
  color: #d40f14;
  font-size: 24px;
  font-style: normal;
  line-height: 1.1;
}
.portletTextplusPortlet {
  margin-bottom: 0;
}
.portletTextplusPortlet .portletHeader {
  display: none;
}
.portletTextplusPortlet .portletItem {
  background: #f3f2f2;
  border-top: 5px solid #004b93;
  padding-top: 3px;
}
.portletTextplusPortlet p:first-of-type {
  padding: 0 !important;
}
.portletTextplusPortlet p:last-of-type {
  padding-bottom: 20px !important;
}
.portletTextplusPortlet p,
.portletTextplusPortlet h2,
.portletTextplusPortlet h3,
.portletTextplusPortlet h4,
.portletTextplusPortlet h5 {
  padding: 0 15px;
}
.portletTextplusPortlet p {
  margin-bottom: 5px;
}
#front-page-portlets-bottom .portletHeader {
  padding-bottom: 0 !important;
}
#front-page-portlets-bottom .portletHeader,
#front-page-portlets-bottom .portletHeader a {
  line-height: 1.22222;
  margin-bottom: 0;
  font-size: 18px;
  color: #555555;
  font-style: italic;
}
#front-page-portlets-bottom h3 {
  margin-bottom: 10px;
}
#front-page-portlets-bottom .portletContent {
  padding-top: 10px;
}
#front-page-portlets-bottom .portletContent blockquote {
  margin-left: 0;
  margin-top: 20px;
}
#front-page-portlets-bottom .portletContent blockquote p {
  font-style: italic;
  font-size: 28px;
  line-height: 33px;
}
#front-page-portlets-bottom .portletContent img {
  margin-bottom: 20px;
}
#front-page-portlets-bottom .portletContent > p {
  line-height: 22px;
  font-size: 16px;
  margin-bottom: 10px;
}
#front-page-portlets-bottom .portletContent > p span.zitatschrift {
  font-size: 14px;
  line-height: 16px !important;
}
.portletKontaktPortlet p.contact-position,
.portletKontaktPortlet p.contact-phone {
  margin-bottom: 0;
}
.portletKontaktPortlet p > span {
  padding-left: 8px;
}
.portletKontaktPortlet p.contact-phone > span {
  padding-left: 11px;
}
.cards-portlets .portletKontaktPortlet {
  background: transparent;
  padding: 0;
}
.cards-portlets .portletKontaktPortlet h3 {
  font-size: 28px;
  margin-bottom: 15px;
  line-height: 1.6em;
  margin-top: 0;
  border-bottom: 3px dotted #222;
}
.portlet-sidebar > div {
  margin-bottom: 30px;
}
.PLZBox {
  padding: 15px 0;
}
.PLZBox.form-group {
  display: inline-block;
  width: calc(100% - 35px);
}
.portletPLZSuche .btn-default {
  margin-left: -35px;
}
.cards-portlets .portletPLZSuche {
  background: transparent;
}
.cards-portlets .portletPLZSuche .portletHeader {
  margin-bottom: 15px;
  line-height: 1.6em;
  margin-top: 0;
  border-bottom: 3px dotted #222;
}
.cards-portlets .portletPLZSuche p {
  font-size: inherit;
}
#searchPLZ [type="submit"] {
  display: none;
}
.front-page-section-top {
  margin-bottom: -40px;
  padding-top: 40px;
}
.front-page-section-top .portletPLZSuche,
.front-page-section-top .portletStaticText {
  padding: 0;
}
.front-page-section-top h2,
.front-page-section-top .portletHeader {
  line-height: 1.1;
  font-size: 2.2vw;
  font-weight: 400;
  word-wrap: normal;
  color: #d40f14;
}
.front-page-section-top .portletHeader {
  padding-top: 15px;
  margin-top: 4px;
}
.front-page-section-top p {
  font-size: 16px;
  color: #000;
  margin: 0 0 10px;
}
.front-page-section-top .portletContent {
  background: transparent;
}
.front-page-section-top span.linkinternal a {
  font-weight: bold;
}
.front-page-section-top > div:nth-child(1) {
  padding-left: 0;
}
@media only screen and (min-width: 85.5625em) {
  .front-page-section-top h2,
  .front-page-section-top .portletHeader {
    font-size: 36px;
  }
}
#front-page-portlets-bottom .portletStaticText,
#media-aside .portletStaticText {
  padding: 0;
  background: transparent !important;
}
.portletNavigationTree nav.portletContent > ul > li a:hover {
  text-decoration: none !important;
  color: #014C93 !important;
}
.portletNavigationTree nav.portletContent > ul > li a {
  padding: 10px 40px 10px 15px;
  border-top: 3px solid #fff;
}
.portletNavigationTree nav.portletContent > ul > li strong {
  padding: 10px 15px;
  border-top: 1px solid #e5e5e5;
  background: #fcfcfd;
  color: #696969;
  display: block;
  font-weight: 400;
}
.portletNavigationTree {
  margin-bottom: 40px;
}
.portletNavigationTree .portletContent {
  border-top: 0;
}
.portletNavigationTree .portletContent a:before {
  content: "" !important;
}
.portletNavigationTree .portletContent > ul > li > div > a {
  font-size: 20px;
}
.portletNavigationTree .portletContent > ul > li > a {
  font-size: 20px;
  display: block;
  background: #edecec;
}
.portletNavigationTree .portletContent > ul > li > a:hover {
  background: #fcfcfd;
}
.portletNavigationTree .portletContent > ul ul {
  padding-left: 0;
}
.portletNavigationTree .portletContent .navTreeCurrentNode > a {
  background: #e8e8e8;
  color: #014C93;
}
.portletNavigationTree .portletContent a.navTreeFolderish.navTreeItemInPath,
.portletNavigationTree .portletContent a.navTreeFolderish.navTreeCurrentItem {
  background-image: url("/++theme++bgv/dist/img/bg_leftnav_level1_active.png") !important;
  background-repeat: no-repeat;
  background-position: right;
  font-style: italic;
}
.portletNavigationTree .portletContent ul.navTreeLevel0 > li > a {
  background-image: url("/++theme++bgv/dist/img/bg_leftnav_level1.png");
  background-repeat: no-repeat;
  background-position: right;
}
.portletNavigationTree .portletContent .navTreeLevel0 a.navTreeFolderish:hover,
.portletNavigationTree .portletContent .navTreeLevel1 a.navTreeFolderish:hover {
  background-color: #e8e8e8;
  color: #014C93;
  background-image: url("/++theme++bgv/dist/img/bg_leftnav_level1_hover.png");
  background-repeat: no-repeat;
  background-position: right;
  z-index: 333;
  content: "" !important;
}
.portletNavigationTree .portletContent .navTreeLevel2 > li > a {
  padding-left: 30px;
}
.portletNavigationTree .portletContent .navTreeLevel1 li a {
  border: none;
}
.portletNavigationTree .portletContent .navTreeLevel1 li a span {
  font-size: 18px;
  position: relative;
  display: block;
  padding-left: 20px;
}
.portletNavigationTree .portletContent .navTreeLevel1 li a span:before {
  position: absolute;
  top: 0;
  left: 2px;
  z-index: 1;
  font-family: FontAwesome;
  content: "\f105";
}
.portletNavigationTree .portletContent .navTreeLevel1 li a.navTreeFolderish {
  color: #014C93;
  background-image: none !important;
}
.portletNavigationTree .portletContent .navTreeLevel1 li a.navTreeFolderish.navTreeCurrentNode,
.portletNavigationTree .portletContent .navTreeLevel1 li a.navTreeFolderish.navTreeItemInPath {
  border-bottom: 3px solid #FFF;
}
.portletNavigationTree .portletContent .navTreeLevel1 li a.navTreeFolderish.navTreeCurrentNode span:before,
.portletNavigationTree .portletContent .navTreeLevel1 li a.navTreeFolderish.navTreeItemInPath span:before {
  transform: rotate(90deg);
  font-style: normal;
}
.portletNavigationTree .portletContent .navTreeLevel1 .navTreeLevel2 {
  border-bottom: 3px solid #FFF;
}
.portletNavigationTree .portletContent .navTreeLevel3 > li > a {
  padding-left: 50px;
}
#upgrade-products .configlets li,
#install-products .configlets li,
#activated-products .configlets li,
#broken-products .configlets li {
  padding: 12px;
  border-top: 1px dotted #e5e5e5;
}
#upgrade-products .configlets li:first-child,
#install-products .configlets li:first-child,
#activated-products .configlets li:first-child,
#broken-products .configlets li:first-child {
  border-top: 0;
}
#upgrade-products .configlets h3,
#install-products .configlets h3,
#activated-products .configlets h3,
#broken-products .configlets h3,
#upgrade-products .configlets p,
#install-products .configlets p,
#activated-products .configlets p,
#broken-products .configlets p {
  margin: 0;
}
#upgrade-products .configlets .portletContent:last-child,
#install-products .configlets .portletContent:last-child,
#activated-products .configlets .portletContent:last-child,
#broken-products .configlets .portletContent:last-child {
  margin-bottom: 0;
}
#upgrade-products .configlets .pull-right,
#install-products .configlets .pull-right,
#activated-products .configlets .pull-right,
#broken-products .configlets .pull-right {
  margin: 0 0 12px 12px;
}
.managedPortletActions {
  float: right;
  margin-top: -6px;
}
.managedPortletActions form {
  display: inline-block;
}
.managedPortlet .portletHeader {
  color: #555555;
}
.managedPortlet.portletCalendar .portletHeader {
  text-align: center;
  position: relative;
}
.managedPortlet.portletCalendar .portletHeader .calendarPrevious,
.managedPortlet.portletCalendar .portletHeader .calendarNext {
  width: 30px;
  height: 30px;
  padding: 0 1px 2px;
  border-radius: 50%;
  position: absolute;
  display: inline-block;
  left: 5px;
  font-size: 30px;
  margin-top: -3px;
  line-height: 28px;
  font-weight: 100;
}
.managedPortlet.portletCalendar .portletHeader .calendarPrevious:hover,
.managedPortlet.portletCalendar .portletHeader .calendarNext:hover {
  background: #fff;
  text-decoration: none;
}
.managedPortlet.portletCalendar .portletHeader .calendarNext {
  right: 5px;
  left: inherit;
}
.managedPortlet .portletContent {
  font-size: 16px;
}
.managedPortlet .portletContent > *,
.managedPortlet .portletContent > div:not(.portalMessage) {
  font-weight: 400;
  color: #000;
}
.managedPortlet .portletContent > ul {
  padding: 0;
  list-style: none;
  position: relative;
}
.managedPortlet .portletContent > ul > li a {
  display: block;
  padding: 10px 15px 26px 30px;
  position: relative;
  color: #000;
  z-index: 1;
  background: #f3f2f2;
}
.managedPortlet .portletContent > ul > li a:before {
  content: "•";
  position: absolute;
  font-size: 31px;
  margin-top: -9px;
  left: 15px;
  color: #a7daf2;
}
.managedPortlet .portletContent > ul ul {
  padding-left: 15px;
  list-style: none;
}
.managedPortlet .portletContent > ul .portletItemDetails {
  display: block;
  z-index: 0;
  padding: 0 15px 10px 30px;
  font-weight: 100;
  position: relative;
  margin-top: -26px;
  font-size: 12px;
  color: #777777;
}
.managedPortlet .portletContent > ul li:hover {
  background: #fcfcfd;
}
.managedPortlet .portletContent > ul li:hover a:before {
  color: #64bee8;
}
.managedPortlet .portletContent table {
  width: 100%;
  text-align: center;
  text-align: middle;
  border-collapse: collapse;
  border-spacing: 0;
}
.managedPortlet .portletContent table tr {
  line-height: 30px;
}
.managedPortlet .portletContent table thead {
  background: #fcfcfd;
  border-bottom: 1px solid #e5e5e5;
}
.managedPortlet .portletContent table thead th {
  color: #777777;
  font-weight: 100;
  height: 40px;
  text-align: center;
}
.managedPortlet .portletContent table td > * {
  border-radius: 50%;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.managedPortlet .portletContent table .cal_has_events {
  position: relative;
}
.managedPortlet .portletContent table .cal_has_events a:hover {
  background: #dbecfe;
  text-decoration: none;
  box-shadow: 0 0 0 5px #dbecfe;
}
.managedPortlet .portletContent table .cal_has_events a:after {
  content: "•";
  position: absolute;
  margin-left: 50%;
  left: -3px;
  font-size: 20px;
  color: #a7daf2;
  margin-top: 9px;
}
.managedPortlet .portletContent table .cal_has_events a:hover:after {
  color: #64bee8;
}
.managedPortlet .portletContent table .cal_next_month,
.managedPortlet .portletContent table .cal_prev_month {
  color: #cccccc;
}
.managedPortlet .portletContent table .cal_next_month.cal_has_events > a,
.managedPortlet .portletContent table .cal_prev_month.cal_has_events > a {
  color: #a7daf2;
}
.managedPortlet .portletContent table .cal_next_month.cal_has_events > a:after,
.managedPortlet .portletContent table .cal_prev_month.cal_has_events > a:after {
  color: #d3edf8;
}
.managedPortlet .portletContent table .cal_next_month.cal_has_events > a:hover,
.managedPortlet .portletContent table .cal_prev_month.cal_has_events > a:hover {
  color: #8d0a0d;
}
.managedPortlet .portletContent table .cal_next_month.cal_has_events > a:hover:after,
.managedPortlet .portletContent table .cal_prev_month.cal_has_events > a:hover:after {
  color: #64bee8;
}
.managedPortlet .portletContent table .today > * {
  background: #e5e5e5;
  font-weight: 500;
  box-shadow: 0 0 0 5px #e5e5e5;
}
.managedPortlet .portletContent table tbody tr:first-child td > * {
  margin-top: 10px;
}
.managedPortlet .portletContent table tbody tr:last-child td > * {
  margin-bottom: 10px;
}
.managedPortlet .formControls {
  border: 0;
  background: none;
  padding: 0;
  box-shadow: none;
}
.managedPortlet .portletFooter {
  border-top: 1px solid #e5e5e5;
  background: #fcfcfd;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 400;
  box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0, 0.05);
}
.managedPortlet.inheritedPortlet {
  margin: 5px 15px;
}
.managedPortlet.inheritedPortlet .portletHeader {
  padding: 3px 15px;
}
.managedPortlet .portletHeader {
  font-weight: 300;
}
.managedPortlet.blockedPortlet {
  opacity: 0.7;
}
div[id^="column-bgv-frontpage-bottom-portlet-"] {
  margin-bottom: 40px;
}
.portlet.portletSiteSetup .portletContent > ul > li a:before {
  content: "";
}
.portlet.portletSiteSetup .portletContent > ul li:hover {
  background: #edecec;
}
.portletNavigationTree.portletSiteSetup nav.portletContent > ul > li a {
  border: none;
  padding: 0px;
}
.portletNavigationTree.portletSiteSetup a {
  border: none;
  text-align: center;
  height: 100%;
  padding: 0;
}
.portletNavigationTree.portletSiteSetup a span {
  font-size: 50px;
  text-align: center;
  display: block;
  color: #4d4d4d;
}
.portletNavigationTree.portletSiteSetup ul {
  background: #edecec;
  padding-bottom: 20px;
}
.portletNavigationTree.portletSiteSetup li {
  vertical-align: top;
}
.portletNavigationTree.portletSiteSetup ul > li > a:hover:after {
  content: "";
}
.portletNavigationTree.portletSiteSetup .inner-configlet {
  margin-top: 10px;
  padding-bottom: 10px;
}
.portletNavigationTree.portletSiteSetup .inner-configlet:hover {
  background: rgba(255, 255, 255, 0.67);
  border-radius: 5px;
}
.portletNavigationTree.portletSiteSetup .inner-configlet:hover span {
  color: #333;
}
.template-overview-controlpanel .portlet.portletSiteSetup .portletContent > ul > li {
  height: 120px;
}
#portlet-prefs ul ul {
  padding-top: 10px;
}
#portlet-prefs ul ul li {
  padding-top: 10px;
}
#portlet-prefs ul ul li a {
  text-align: inherit;
  padding-left: 40px;
}
#portlet-prefs ul ul li a:before {
  content: "•";
  position: absolute;
  font-size: 31px;
  margin-top: -9px;
  left: 15px;
  color: #a7daf2;
}
.template-usergroup-groupprefs .field,
.template-usergroup-userprefs .field,
.template-usergroup-controlpanel .field,
.template-member-registration .field {
  margin-top: 2em;
}
.template-usergroup-groupprefs .formControls,
.template-usergroup-userprefs .formControls,
.template-usergroup-controlpanel .formControls,
.template-member-registration .formControls {
  border-top: 0;
  box-shadow: none;
  margin-bottom: 1em;
}
.template-usergroup-groupprefs table.listing,
.template-usergroup-userprefs table.listing,
.template-usergroup-controlpanel table.listing,
.template-member-registration table.listing {
  margin-bottom: 0.5em;
}
.template-usergroup-groupprefs input.quickSearch,
.template-usergroup-userprefs input.quickSearch,
.template-usergroup-controlpanel input.quickSearch,
.template-member-registration input.quickSearch {
  margin-bottom: 0.5em;
}
.template-usergroup-groupprefs .listingCheckbox,
.template-usergroup-userprefs .listingCheckbox,
.template-usergroup-controlpanel .listingCheckbox,
.template-member-registration .listingCheckbox {
  vertical-align: middle;
  text-align: center;
}
.template-usergroup-groupprefs form,
.template-usergroup-userprefs form {
  overflow: scroll;
}
.link-category {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #222;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 4px;
  background-color: #e5e5e5;
}
.link-category[href]:hover,
.link-category[href]:focus {
  background-color: #cccccc;
}
a.link-category:hover,
a.link-category:focus {
  color: #d40f14;
  text-decoration: none;
  cursor: pointer;
}
.link-category:empty {
  display: none;
}
#category {
  margin-bottom: 12px;
}
#category ul {
  list-style: none;
  padding: 0;
  display: inline;
}
#category li {
  display: inline-block;
}
body#visual-portal-wrapper.pat-plone .outer-wrapper [class*="contenttype-"]:before {
  font-family: "Fontello";
  font-size: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  left: inherit;
  display: inline-block;
  color: inherit;
  width: 20px;
  height: 20px;
  text-align: center;
  margin-right: 6px;
}
body#visual-portal-wrapper.pat-plone .outer-wrapper .contenttype-folder:before {
  content: '\e801';
}
body#visual-portal-wrapper.pat-plone .outer-wrapper .contenttype-document:before {
  content: '\e80e';
}
body#visual-portal-wrapper.pat-plone .outer-wrapper .contenttype-file:before {
  content: '\e811';
}
body#visual-portal-wrapper.pat-plone .outer-wrapper .contenttype-link:before {
  content: '\e806';
}
body#visual-portal-wrapper.pat-plone .outer-wrapper .contenttype-image:before {
  content: '\e810';
}
body#visual-portal-wrapper.pat-plone .outer-wrapper .contenttype-collection:before {
  content: '\e808';
}
body#visual-portal-wrapper.pat-plone .outer-wrapper .contenttype-event:before {
  content: '\e809';
}
body#visual-portal-wrapper.pat-plone .outer-wrapper .contenttype-news-item:before {
  content: '\e80f';
}
body#visual-portal-wrapper.pat-plone #edit-zone [class*="contenttype-"] {
  padding: 5px 15px 5px 50px;
}
body#visual-portal-wrapper.pat-plone #edit-zone [class*="contenttype-"]:after {
  font-family: "Fontello";
  font-size: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  left: 25px;
  display: inline-block;
  color: inherit;
  width: 20px;
  height: 20px;
  text-align: center;
  margin-right: 6px;
  position: absolute;
}
body#visual-portal-wrapper.pat-plone #edit-zone .contenttype-folder:after {
  content: '\e801';
}
body#visual-portal-wrapper.pat-plone #edit-zone .contenttype-document:after {
  content: '\e80e';
}
body#visual-portal-wrapper.pat-plone #edit-zone .contenttype-file:after {
  content: '\e811';
}
body#visual-portal-wrapper.pat-plone #edit-zone .contenttype-link:after {
  content: '\e806';
}
body#visual-portal-wrapper.pat-plone #edit-zone .contenttype-image:after {
  content: '\e810';
}
body#visual-portal-wrapper.pat-plone #edit-zone .contenttype-collection:after {
  content: '\e808';
}
body#visual-portal-wrapper.pat-plone #edit-zone .contenttype-event:after {
  content: '\e809';
}
body#visual-portal-wrapper.pat-plone #edit-zone .contenttype-news-item:after {
  content: '\e80f';
}
#textAdjust .decrease-text {
  font-size: 12px;
}
#textAdjust .normal-text {
  font-size: 14px;
}
#textAdjust .increase-text {
  font-size: 18px;
}
.pat-autotoc:not(.autotabs) .autotoc-nav {
  float: right;
  min-width: 150px;
  background-color: #f2f1f1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.17);
  padding: 6px 12px;
  margin: 0 0 12px 12px;
}
.pat-autotoc:not(.autotabs) .autotoc-nav a {
  display: block;
}
.pat-autotoc:not(.autotabs) .autotoc-nav .active,
.pat-autotoc:not(.autotabs) .autotoc-nav .active:hover {
  color: #696969;
  cursor: default;
  text-decoration: none;
}
.pat-autotoc:not(.autotabs) .autotoc-nav .autotoc-level-1 {
  margin-left: 0;
  font-size: 18px;
}
.pat-autotoc:not(.autotabs) .autotoc-nav .autotoc-level-2 {
  margin-left: 12px;
  font-size: 14px;
}
.pat-autotoc:not(.autotabs) .autotoc-nav .autotoc-level-3 {
  margin-left: 24px;
  font-size: 12px;
}
@media (max-width: 767px) {
  .pat-autotoc .autotoc-nav {
    float: none;
    margin: 0 0 20px 0;
  }
}
.pat-dropzone .dz-notice {
  margin-bottom: 6px;
}
.pat-dropzone .dz-default {
  border-radius: 6px;
  background-color: #f2f1f1;
  border: 3px dotted #cccccc;
  margin-bottom: 20px;
  padding: 12px;
  color: #696969;
}
.plone-modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.5);
}
.plone-modal .plone-modal-dialog {
  width: 100%;
  position: relative;
}
.plone-modal .plone-modal-dialog .plone-modal-header {
  min-height: 25px;
  padding: 12px;
}
.plone-modal .plone-modal-dialog .plone-modal-header h3 {
  font-size: 18px;
  margin: 0;
}
.plone-modal .plone-modal-dialog .plone-modal-header .plone-modal-close {
  margin-top: -12px;
  float: right;
  font-size: 36px;
  font-weight: 100;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .2;
}
.plone-modal .plone-modal-dialog .plone-modal-header .plone-modal-close:hover,
.plone-modal .plone-modal-dialog .plone-modal-header .plone-modal-close:focus {
  text-decoration: none;
  cursor: pointer;
  opacity: .5;
}
.plone-modal .plone-modal-dialog .plone-modal-body {
  padding: 12px;
}
.plone-modal .plone-modal-dialog .plone-modal-footer {
  border-top: 1px solid #cccccc;
  background: #fcfcfd;
  box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0, 0.05);
  padding: 12px;
  text-align: right;
}
.plone-modal .plone-modal-dialog .plone-modal-footer .pattern-modal-buttons input + input {
  margin-left: 12px;
}
.plone-modal .plone-modal-content {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 4px;
  outline: none;
  background-clip: padding-box;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  padding-left: 25px;
  padding-right: 25px;
  /*
  @media (min-width: @plone-screen-sm-min) {
    width: @plone-container-sm-full;
  }
  @media (min-width: @plone-screen-md-min) {
    width: @plone-container-md-full;
  }
*/
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1368px) {
  .plone-modal .plone-modal-content {
    width: 1368px;
  }
}
.plone-modal.fade {
  opacity: 0;
  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;
}
.plone-modal.fade.in {
  opacity: 1;
  -webkit-transition: opacity .25s ease;
  transition: opacity .25 ease;
}
.plone-modal.fade .plone-modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.25s ease-out;
  -moz-transition: -moz-transform 0.25s ease-out;
  -o-transition: -o-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
}
.plone-modal.fade.in .plone-modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.plone-modal.in {
  display: block !important;
}
.plone-modal-loading {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #428bca;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width .6s ease;
  transition: width .6s ease;
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
  border-radius: 0.5em;
  width: 40em;
  height: 40px;
}
.plone-modal-open {
  padding-right: 0;
}
.plone-modal-open > *:not(.plone-modal-wrapper,.select2-drop, .mce-floatpanel) {
  -webkit-filter: blur(1px);
  -moz-filter: blur(1px);
  -o-filter: blur(1px);
  -ms-filter: blur(1px);
  filter: blur(1px);
}
.pattern-pickadate-wrapper .pattern-pickadate-time-wrapper {
  float: left;
}
.pattern-pickadate-wrapper .pattern-pickadate-time-wrapper .picker__input {
  width: 180px;
}
.pattern-pickadate-wrapper .pattern-pickadate-date-wrapper .picker__holder {
  width: 300px;
}
.picker--time {
  min-width: 256px;
  max-width: 320px;
}
#content .picker--opened .picker__holder {
  opacity: 1;
}
.picker__holder {
  width: 180px;
  margin: -1px 0 0 0;
  border: 1px solid #ccc;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 300px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17);
}
.picker__wrap {
  margin: 0;
  /* overrides -1px used to get rid of unecessary scrollbar */
}
.picker__list-item:hover {
  background: #f0f0f0;
  color: #222;
}
.picker__list-item--highlighted:hover,
.picker--focused .picker__list-item--highlighted {
  background: #d40f14;
  color: #fff;
}
li.picker__list-item {
  padding: 6px 12px;
  cursor: pointer;
  color: #696969;
}
ul.picker__list {
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
}
.picker--time .picker__button--clear {
  width: 100%;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
}
.picker__table {
  width: 100%;
  text-align: center;
}
.picker__table th {
  text-align: center;
}
.picker__header {
  text-align: center;
  position: relative;
}
.picker__nav--next,
.picker__nav--prev {
  position: absolute;
  top: 0.5em;
}
.picker__select--month,
.picker__select--year {
  width: 35%;
  display: inline-block;
  margin: 0 6px;
  font-size: 1em;
}
.picker__day {
  font-weight: 400;
}
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  background: #f0f0f0;
}
.picker__day--highlighted:hover,
.picker__day--highlighted {
  background: #d40f14;
  color: #fff;
  font-weight: 600;
}
.picker__day--outfocus {
  color: #cccccc;
}
.pat-sortable > *:hover {
  cursor: move;
  cursor: -webkit-grab;
  background: #FFF5CD;
}
.pat-sortable .item-dragging,
.pat-sortable .item-dragging:hover {
  cursor: -webkit-grabbing !important;
  background: #f2f2f2;
}
.item-dragging.dragging {
  background: #fea;
  cursor: -webkit-grabbing !important;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.17);
}
.pat-tablesorter th:hover {
  color: #d40f14;
}
.pat-tablesorter .sortdirection {
  font-size: 75%;
  opacity: .5;
  position: relative;
  top: -1px;
  padding: 2px;
  min-width: 15px;
  display: inline-block;
}
.tooltips {
  opacity: 0;
  transition: opacity .2s ease .5s;
  position: absolute;
  background: #333333;
  background: rgba(0, 0, 0, 0.9);
  color: #fffa a;
  font-size: 12px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.17);
  max-width: 200px;
  margin-left: -100px;
  left: 200px;
  text-align: center;
  padding: 6px;
}
.tooltips.active {
  opacity: 1;
  transition: opacity .2s ease .5s;
}
.jqtree-tree {
  list-style: none outside;
  margin-bottom: 0;
  padding: 0;
  padding-left: 18px;
}
.jqtree-tree .jqtree-toggler {
  left: -18px;
  font-size: 75%;
  top: 30%;
  position: absolute;
}
.jqtree-tree .jqtree-element {
  padding: 6px;
}
.jqtree-tree .jqtree-element:hover {
  background: #f0f0f0;
}
.jqtree-tree .jqtree-selected > .jqtree-element {
  background: #cccccc;
}
@media (min-width: 769px) {
  #content-header .bgdirektLinkMobile {
    display: none;
  }
}
#portal-header {
  margin: 0 auto;
}
#portal-header #portal-languageselector {
  float: left;
  clear: both;
  display: inline-block;
  margin-right: 29px;
  padding-top: 5px;
}
#portal-header #portal-languageselector li {
  display: inline-block;
  margin-right: 10px;
}
#portal-header #portal-anontools {
  float: right;
}
#portal-header #portal-anontools ul {
  padding-right: 0;
}
#portal-header #portal-searchbox {
  padding-top: 20px;
  clear: left;
  width: 67%;
  position: absolute;
  z-index: 2;
  margin-left: 3px;
  margin-top: 60px;
  white-space: nowrap;
  /*
        [type="submit"] {
            display: none; //submit hidden on mobile
        }
        */
}
#portal-header #portal-searchbox [type="text"] {
  width: 100%;
  display: inline-block;
  background: #f3f2f2;
}
#portal-header #portal-searchbox label {
  font-size: 86.667%;
}
#portal-header #portal-searchbox form > div {
  font-size: 0;
}
#portal-header #portal-searchbox form > div > * {
  font-size: 14px;
}
@media (max-width: 768px) {
  #portal-header .bgdirektLink {
    display: none;
  }
}
@media (min-width: 750px) and (max-width: 1120px) {
  #portal-header #portal-searchbox {
    float: right;
    margin-right: 60px;
  }
}
@media (min-width: 1025px) {
  #portal-header #portal-searchbox {
    float: right;
  }
}
@media (min-width: 768px) {
  #portal-header #portal-languageselector {
    float: right;
    clear: none;
  }
  #portal-header #portal-anontools {
    float: right;
  }
  #portal-header #portal-searchbox {
    position: relative;
    margin-top: 5px;
    margin-bottom: -5px;
    padding-top: 0;
    width: 218px;
    right: 20px;
    white-space: nowrap;
  }
  #portal-header #portal-searchbox [type="text"] {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: calc(180px);
    display: inline-block;
  }
  #portal-header #portal-searchbox input[type="submit"] {
    font-family: FontAwesome;
  }
  #portal-header #portal-searchbox .search-icon {
    cursor: pointer;
    display: none;
    width: 34px;
    height: 34px;
    display: inline-block;
    margin-left: -4px;
    background: #004b93;
    color: white;
    vertical-align: top;
  }
  #portal-header #portal-searchbox label {
    font-size: 86.667%;
  }
  #portal-header #portal-searchbox form > div {
    font-size: 0;
  }
  #portal-header #portal-searchbox form > div > * {
    font-size: 14px;
  }
  #portal-header .bgdirektLink > a {
    float: right;
  }
}
@media (max-width: 768px) {
  #portal-header {
    margin-bottom: 10px;
  }
  #portal-header .search-fields {
    display: none;
  }
  #portal-header .searchbox-container {
    float: right;
    margin-top: 0.4em;
    margin-bottom: 0.4em;
    padding-right: 5px;
  }
  #portal-header .searchbox-container #portal-searchbox {
    padding-top: 0;
    clear: left;
    width: 100%;
    position: relative;
    margin-top: 0;
    display: none;
  }
  #portal-header .searchbox-container #portal-searchbox .searchField {
    width: 80%;
  }
  #portal-header .search-icon {
    float: right;
  }
}
#portal-header:before,
#portal-header:after {
  content: " ";
  display: table;
}
#portal-header:after {
  clear: both;
}
#portal-logo {
  position: relative;
  top: -62px;
}
.plone-nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.plone-nav > li {
  text-align: center;
  position: relative;
}
.plone-nav > li > a {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 1.8vw;
  color: black;
}
.plone-nav > li > a:hover,
.plone-nav > li > a:focus {
  text-decoration: none;
  color: #d40f14;
}
/*
@media (max-width: @plone-container-sm) {
    .plone-nav > li > a {
        font-size: 12px;
    }
}
@media (min-width: @plone-container-md) {
    .plone-nav > li > a {
        font-size: @plone-font-size-21;
    }
}
*/
@media (min-width: 1370px) {
  .plone-nav > li > a {
    font-size: 24px;
  }
}
.top-mega-menu {
  background-color: #f3f2f2;
}
.plone-navbar {
  position: relative;
  border: 1px solid transparent;
}
.plone-navbar:before,
.plone-navbar:after {
  content: " ";
  display: table;
}
.plone-navbar:after {
  clear: both;
}
.plone-navbar-header:before,
.plone-navbar-header:after {
  content: " ";
  display: table;
}
.plone-navbar-header:after {
  clear: both;
}
@media (min-width: 768px) {
  .plone-navbar-header {
    float: left;
  }
}
.plone-navbar-collapse {
  overflow-x: visible;
  padding-right: 25px;
  padding-left: 25px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
  display: none;
}
.plone-navbar-collapse.in {
  display: block;
}
@media (min-width: 769px) {
  .plone-navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .plone-navbar-collapse.plone-collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .plone-navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .plone-navbar-collapse,
  .navbar-static-top .plone-navbar-collapse,
  .navbar-fixed-bottom .plone-navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.plone-navbar-toggle {
  z-index: 1;
  position: relative;
  float: right;
  margin-top: 6px;
  margin-bottom: 3px;
  padding: 6px 10px;
  background-color: #004b93;
  background-image: none;
  border: 1px solid white;
  border-radius: 4px;
  /*
  .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: white;
    margin-top: 2px;
  }
  .icon-bar + .icon-bar {
    margin-top: 5px;
  }
  .icon-bar + .icon-bar + .icon-bar {
    margin-bottom: 3px;
  }
  //end burgerbar icon-bar
  */
}
.plone-navbar-toggle:focus {
  outline: 0;
}
.plone-navbar-toggle:hover {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}
.plone-navbar-toggle .icon-bar:after {
  position: relative;
  color: white;
}
.plone-navbar-toggle .icon-bar + .icon-bar:after {
  content: "";
}
@media (min-width: 769px) {
  .plone-navbar-toggle {
    display: none;
  }
}
.sitenav-navbar-toggle {
  z-index: 1;
  position: absolute;
  top: 0;
  cursor: pointer;
  display: table-cell;
  vertical-align: middle;
}
.sitenav-navbar-toggle a {
  vertical-align: super;
}
.sitenav-navbar-toggle a,
.sitenav-navbar-toggle .fa-ellipsis-h {
  color: #004b93;
}
.sitenav-navbar-toggle .fa-ellipsis-h {
  imargin-left: 10px;
  font-size: 26px;
  vertical-align: bottom;
}
@media (min-width: 769px) {
  .sitenav-navbar-toggle {
    display: none;
  }
}
.plone-navbar-nav {
  margin: -1px -25px;
}
.plone-navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
.plone-navbar-nav > .selected > a,
.plone-navbar-nav > .selected > a:hover,
.plone-navbar-nav > .selected > a:focus {
  color: #d40f14;
  background-color: transparent;
}
@media (min-width: 768px) {
  .plone-navbar-nav {
    float: left;
  }
  .plone-navbar-nav > li {
    float: left;
  }
  .plone-navbar-nav > li > a {
    padding-top: 29px;
    padding-bottom: 29px;
  }
  .plone-navbar-nav.navbar-right:last-child {
    margin-right: -25px;
  }
}
.principal {
  background: #004b93;
  background-image: url("++theme++bgv/dist/img/bg_header_1.png");
  margin-top: -20px;
  margin-bottom: 20px;
  padding: 50px 0;
  height: 400px;
  max-height: 501px;
}
.principal .container-fluid {
  margin: 0 auto;
  width: 960px;
}
.gigantic {
  margin-left: 15px;
}
.gigantic h1 {
  font-size: 36px;
  color: white;
}
.gigantic p {
  font-size: 24px;
  color: white;
}
a.gigantic-text {
  color: white;
}
a.gigantic-text:hover {
  text-decoration: none;
}
.gigantic h1:before {
  position: absolute;
  top: 0;
  left: -15px;
  z-index: 1;
  font-family: FontAwesome;
  content: '\f111';
  color: #5cacf9;
  font-size: 20px;
  line-height: 4em;
}
#content {
  margin-bottom: 48px;
}
.container,
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
#portal-footer-wrapper {
  padding: 30px 15px;
  background-color: #555;
  color: #cccccc;
  text-align: center;
  clear: both;
}
#portal-footer-wrapper p {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 28px;
}
#portal-footer-wrapper a {
  color: white;
}
#portal-footer-wrapper a:hover {
  color: white;
}
#portal-footer-wrapper .portletWrapper {
  display: inline-block;
}
#portal-footer-wrapper .portletWrapper:first-child {
  display: block;
  border-bottom: 1px solid #222;
  padding-bottom: 1em;
  margin-bottom: .5em;
}
#portal-footer-wrapper .portlet {
  background: transparent;
  border: 0;
  font-weight: 100;
  box-shadow: none;
  margin-bottom: 0;
}
#portal-footer-wrapper .portlet .portletContent {
  padding: 0;
  background: transparent;
  border: 0;
}
#portal-footer-wrapper .portlet .portletContent > * {
  padding: inherit;
}
#portal-footer-wrapper .portlet .portletContent li {
  background: transparent;
  display: inline-block;
  border: 0;
  white-space: nowrap;
  padding: 10px 30px;
}
#portal-footer-wrapper .portlet#portal-colophon .portletContent a {
  padding: 10px 30px;
}
#portal-footer-wrapper .portlet .portletItem:before,
#portal-footer-wrapper .portlet .portletItem a:before {
  content: "";
}
#portal-footer-wrapper .portlet .portletItem a {
  padding: 0;
  border: 0;
}
#portal-footer-wrapper .portlet .portletActions {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  margin-right: 15px;
}
@media (min-width: 768px) {
  .footer-newsletter {
    xline-height: 92px;
    list-style-type: none;
  }
  .footer-newsletter li {
    display: inline-block;
  }
  .footer-newsletter li > span i.fa-envelope {
    color: #0095db;
    font-size: 24px;
  }
  .footer-newsletter li > span a {
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0;
    color: white;
    font-size: 20px;
  }
  .footer-action nav {
    text-align: left;
  }
  .footer-action nav ul {
    list-style-type: none;
    padding-left: 0;
  }
  .footer-action nav ul > li {
    display: inline-block;
    xline-height: 92px;
  }
  .footer-action nav ul > li > a,
  .footer-action nav ul > li > span {
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0;
    color: white;
    font-size: 20px;
  }
  .footer-action nav ul > li a,
  .footer-action nav ul > li a:focus,
  .footer-action nav ul > li a:link {
    color: white;
  }
  .footer-action nav ul > li a:hover,
  .footer-action nav ul > li a:focus:hover,
  .footer-action nav ul > li a:link:hover {
    color: white;
  }
  .footer-action nav ul > li span::after,
  .footer-action nav ul > li a > span::after {
    content: '|';
    padding: 0 5px;
  }
}
.footer-action nav ul > li a > span:hover::after {
  text-decoration: none;
}
#portal-siteactions {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}
#portal-siteactions li {
  font-weight: bold;
  display: inline-block;
  margin-left: 30px;
}
#portal-siteactions li:first-child {
  margin-left: 0;
}
body.template-login_form #content-core,
body.template-logged_out #content-core {
  background: #fcfcfd;
  max-width: 300px;
  margin: 0 auto 6px;
  padding: 6px 12px;
}
body.template-login_form #content-core .portletHeader,
body.template-logged_out #content-core .portletHeader {
  color: #555555;
}
body.template-login_form #content-core.portletCalendar .portletHeader,
body.template-logged_out #content-core.portletCalendar .portletHeader {
  text-align: center;
  position: relative;
}
body.template-login_form #content-core.portletCalendar .portletHeader .calendarPrevious,
body.template-logged_out #content-core.portletCalendar .portletHeader .calendarPrevious,
body.template-login_form #content-core.portletCalendar .portletHeader .calendarNext,
body.template-logged_out #content-core.portletCalendar .portletHeader .calendarNext {
  width: 30px;
  height: 30px;
  padding: 0 1px 2px;
  border-radius: 50%;
  position: absolute;
  display: inline-block;
  left: 5px;
  font-size: 30px;
  margin-top: -3px;
  line-height: 28px;
  font-weight: 100;
}
body.template-login_form #content-core.portletCalendar .portletHeader .calendarPrevious:hover,
body.template-logged_out #content-core.portletCalendar .portletHeader .calendarPrevious:hover,
body.template-login_form #content-core.portletCalendar .portletHeader .calendarNext:hover,
body.template-logged_out #content-core.portletCalendar .portletHeader .calendarNext:hover {
  background: #fff;
  text-decoration: none;
}
body.template-login_form #content-core.portletCalendar .portletHeader .calendarNext,
body.template-logged_out #content-core.portletCalendar .portletHeader .calendarNext {
  right: 5px;
  left: inherit;
}
body.template-login_form #content-core .portletContent,
body.template-logged_out #content-core .portletContent {
  font-size: 16px;
}
body.template-login_form #content-core .portletContent > *,
body.template-logged_out #content-core .portletContent > *,
body.template-login_form #content-core .portletContent > div:not(.portalMessage),
body.template-logged_out #content-core .portletContent > div:not(.portalMessage) {
  font-weight: 400;
  color: #000;
}
body.template-login_form #content-core .portletContent > ul,
body.template-logged_out #content-core .portletContent > ul {
  padding: 0;
  list-style: none;
  position: relative;
}
body.template-login_form #content-core .portletContent > ul > li a,
body.template-logged_out #content-core .portletContent > ul > li a {
  display: block;
  padding: 10px 15px 26px 30px;
  position: relative;
  color: #000;
  z-index: 1;
  background: #f3f2f2;
}
body.template-login_form #content-core .portletContent > ul > li a:before,
body.template-logged_out #content-core .portletContent > ul > li a:before {
  content: "•";
  position: absolute;
  font-size: 31px;
  margin-top: -9px;
  left: 15px;
  color: #a7daf2;
}
body.template-login_form #content-core .portletContent > ul ul,
body.template-logged_out #content-core .portletContent > ul ul {
  padding-left: 15px;
  list-style: none;
}
body.template-login_form #content-core .portletContent > ul .portletItemDetails,
body.template-logged_out #content-core .portletContent > ul .portletItemDetails {
  display: block;
  z-index: 0;
  padding: 0 15px 10px 30px;
  font-weight: 100;
  position: relative;
  margin-top: -26px;
  font-size: 12px;
  color: #777777;
}
body.template-login_form #content-core .portletContent > ul li:hover,
body.template-logged_out #content-core .portletContent > ul li:hover {
  background: #fcfcfd;
}
body.template-login_form #content-core .portletContent > ul li:hover a:before,
body.template-logged_out #content-core .portletContent > ul li:hover a:before {
  color: #64bee8;
}
body.template-login_form #content-core .portletContent table,
body.template-logged_out #content-core .portletContent table {
  width: 100%;
  text-align: center;
  text-align: middle;
  border-collapse: collapse;
  border-spacing: 0;
}
body.template-login_form #content-core .portletContent table tr,
body.template-logged_out #content-core .portletContent table tr {
  line-height: 30px;
}
body.template-login_form #content-core .portletContent table thead,
body.template-logged_out #content-core .portletContent table thead {
  background: #fcfcfd;
  border-bottom: 1px solid #e5e5e5;
}
body.template-login_form #content-core .portletContent table thead th,
body.template-logged_out #content-core .portletContent table thead th {
  color: #777777;
  font-weight: 100;
  height: 40px;
  text-align: center;
}
body.template-login_form #content-core .portletContent table td > *,
body.template-logged_out #content-core .portletContent table td > * {
  border-radius: 50%;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
}
body.template-login_form #content-core .portletContent table .cal_has_events,
body.template-logged_out #content-core .portletContent table .cal_has_events {
  position: relative;
}
body.template-login_form #content-core .portletContent table .cal_has_events a:hover,
body.template-logged_out #content-core .portletContent table .cal_has_events a:hover {
  background: #dbecfe;
  text-decoration: none;
  box-shadow: 0 0 0 5px #dbecfe;
}
body.template-login_form #content-core .portletContent table .cal_has_events a:after,
body.template-logged_out #content-core .portletContent table .cal_has_events a:after {
  content: "•";
  position: absolute;
  margin-left: 50%;
  left: -3px;
  font-size: 20px;
  color: #a7daf2;
  margin-top: 9px;
}
body.template-login_form #content-core .portletContent table .cal_has_events a:hover:after,
body.template-logged_out #content-core .portletContent table .cal_has_events a:hover:after {
  color: #64bee8;
}
body.template-login_form #content-core .portletContent table .cal_next_month,
body.template-logged_out #content-core .portletContent table .cal_next_month,
body.template-login_form #content-core .portletContent table .cal_prev_month,
body.template-logged_out #content-core .portletContent table .cal_prev_month {
  color: #cccccc;
}
body.template-login_form #content-core .portletContent table .cal_next_month.cal_has_events > a,
body.template-logged_out #content-core .portletContent table .cal_next_month.cal_has_events > a,
body.template-login_form #content-core .portletContent table .cal_prev_month.cal_has_events > a,
body.template-logged_out #content-core .portletContent table .cal_prev_month.cal_has_events > a {
  color: #a7daf2;
}
body.template-login_form #content-core .portletContent table .cal_next_month.cal_has_events > a:after,
body.template-logged_out #content-core .portletContent table .cal_next_month.cal_has_events > a:after,
body.template-login_form #content-core .portletContent table .cal_prev_month.cal_has_events > a:after,
body.template-logged_out #content-core .portletContent table .cal_prev_month.cal_has_events > a:after {
  color: #d3edf8;
}
body.template-login_form #content-core .portletContent table .cal_next_month.cal_has_events > a:hover,
body.template-logged_out #content-core .portletContent table .cal_next_month.cal_has_events > a:hover,
body.template-login_form #content-core .portletContent table .cal_prev_month.cal_has_events > a:hover,
body.template-logged_out #content-core .portletContent table .cal_prev_month.cal_has_events > a:hover {
  color: #8d0a0d;
}
body.template-login_form #content-core .portletContent table .cal_next_month.cal_has_events > a:hover:after,
body.template-logged_out #content-core .portletContent table .cal_next_month.cal_has_events > a:hover:after,
body.template-login_form #content-core .portletContent table .cal_prev_month.cal_has_events > a:hover:after,
body.template-logged_out #content-core .portletContent table .cal_prev_month.cal_has_events > a:hover:after {
  color: #64bee8;
}
body.template-login_form #content-core .portletContent table .today > *,
body.template-logged_out #content-core .portletContent table .today > * {
  background: #e5e5e5;
  font-weight: 500;
  box-shadow: 0 0 0 5px #e5e5e5;
}
body.template-login_form #content-core .portletContent table tbody tr:first-child td > *,
body.template-logged_out #content-core .portletContent table tbody tr:first-child td > * {
  margin-top: 10px;
}
body.template-login_form #content-core .portletContent table tbody tr:last-child td > *,
body.template-logged_out #content-core .portletContent table tbody tr:last-child td > * {
  margin-bottom: 10px;
}
body.template-login_form #content-core .formControls,
body.template-logged_out #content-core .formControls {
  border: 0;
  background: none;
  padding: 0;
  box-shadow: none;
}
body.template-login_form #content-core .portletFooter,
body.template-logged_out #content-core .portletFooter {
  border-top: 1px solid #e5e5e5;
  background: #fcfcfd;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 400;
  box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0, 0.05);
}
#portal-anontools ul {
  text-align: right;
  list-style: none;
}
#portal-anontools li {
  margin: 12px 0 12px 12px;
}
#portal-sitemap {
  list-style: none;
  padding-left: 0;
  font-size: 18px;
}
#portal-sitemap > li {
  font-size: 18px;
  border-top: 1px solid #e5e5e5;
  padding: 6px 0;
}
#portal-sitemap > li a.state-published {
  color: #000;
}
#portal-sitemap ul {
  position: relative;
  font-size: 18px !important;
  padding-left: 20px;
  list-style-type: none;
}
#portal-sitemap ul li {
  position: relative;
}
#portal-sitemap ul li:before {
  content: ">";
  display: inline;
  font-size: 31px;
  color: #004b93;
  top: 5px;
  position: relative;
}
.vevent span.cal_month {
  font-size: 1.1em;
}
.event.summary {
  font-weight: 400;
  max-width: 300px;
  float: right;
  background: #fffa a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.17);
  padding: 12px 12px 12px 36px;
  margin-left: 5px;
}
.event.summary strong,
.event.summary li > span {
  display: block;
}
.event_listing article {
  border-top: 1px solid #e5e5e5;
  padding: 12px 0 12px;
}
.event_listing article h2 {
  margin: 0;
  padding: 12px 0 12px;
}
.event_listing article:first-child {
  border-top: 0;
  margin-top: -6px;
}
.cal_date {
  float: right;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.17);
  text-align: center;
  width: 100px;
  margin: 12px 0 12px 12px;
  border-radius: 4px;
  overflow: hidden;
}
.cal_month {
  background: #f13e43;
  font-weight: 400;
  display: block;
  color: #fff;
  padding: 6px 12px;
}
.cal_day {
  font-size: 36px;
  font-weight: 500;
  display: block;
}
.cal_wkday {
  font-size: 12px;
  font-weight: 100;
  display: block;
  padding: 0 12px 6px;
}
.event_listing .sub_nav {
  float: right;
}
.template-event_listing .caltrigger {
  display: none;
}
.autotabs .autotoc-nav .events-month-prev,
.autotabs .autotoc-nav .events-week-prev,
.autotabs .autotoc-nav .events-day-prev {
  position: relative;
  border-top-left-radius: 0;
  padding-left: 6px;
}
.autotabs .autotoc-nav .events-month-prev:before,
.autotabs .autotoc-nav .events-week-prev:before,
.autotabs .autotoc-nav .events-day-prev:before {
  content: "";
  position: absolute;
  padding: 0 5px;
  color: #e5e5e5;
  border-right: 5px solid;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  left: -6px;
  top: -1px;
  padding: 0 !important;
}
.autotabs .autotoc-nav .events-month-prev:after,
.autotabs .autotoc-nav .events-week-prev:after,
.autotabs .autotoc-nav .events-day-prev:after {
  content: "";
  position: absolute;
  padding: 0 5px;
  color: #fcfcfd;
  border-right: 5px solid;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  left: -5px;
  top: -1px;
  padding: 0 !important;
}
.autotabs .autotoc-nav .events-month-prev:hover:after,
.autotabs .autotoc-nav .events-week-prev:hover:after,
.autotabs .autotoc-nav .events-day-prev:hover:after {
  color: #fff;
}
.autotabs .autotoc-nav .events-month-next,
.autotabs .autotoc-nav .events-week-next,
.autotabs .autotoc-nav .events-day-next {
  position: relative;
  border-top-right-radius: 0;
  padding-right: 6px;
}
.autotabs .autotoc-nav .events-month-next:before,
.autotabs .autotoc-nav .events-week-next:before,
.autotabs .autotoc-nav .events-day-next:before {
  content: "";
  position: absolute;
  padding: 0 5px;
  color: #e5e5e5;
  border-left: 5px solid;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  right: -6px;
  top: -1px;
  padding: 0 !important;
}
.autotabs .autotoc-nav .events-month-next:after,
.autotabs .autotoc-nav .events-week-next:after,
.autotabs .autotoc-nav .events-day-next:after {
  content: "";
  position: absolute;
  padding: 0 5px;
  color: #fcfcfd;
  border-left: 5px solid;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  right: -5px;
  top: -1px;
  padding: 0 !important;
}
.autotabs .autotoc-nav .events-month-next:hover:after,
.autotabs .autotoc-nav .events-week-next:hover:after,
.autotabs .autotoc-nav .events-day-next:hover:after {
  color: #fff;
}
.image-product {
  margin: 0;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17);
  overflow: hidden;
  display: inline-block;
}
.image-product figcaption {
  font-size: 12px;
  background: #fcfcfd;
  margin: 6px 12px;
}
.portraitPhoto {
  margin: 0;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17);
  overflow: hidden;
  display: inline-block;
  float: right !important;
  border-radius: 50px;
}
.portraitPhoto figcaption {
  font-size: 12px;
  background: #fcfcfd;
  margin: 6px 12px;
}
.captioned > .image-caption {
  text-align: left;
}
.newsImageContainer {
  float: right;
  margin: 0 0 6px 6px;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17);
  overflow: hidden;
}
.newsImageContainer a {
  display: table;
}
.newsImageContainer a img {
  display: block;
}
.newsImageContainer figcaption {
  display: table-caption;
  caption-side: bottom;
  font-size: 12px;
  background: #fcfcfd;
}
#commenting:before,
#commenting:after {
  content: " ";
  display: table;
}
#commenting:after {
  clear: both;
}
#commenting legend,
.discussion legend {
  padding: 0.5em 0.5em 0.5em 0;
  font-weight: normal;
}
.discussion:before,
.discussion:after {
  content: " ";
  display: table;
}
.discussion:after {
  clear: both;
}
.discussion .comment {
  margin-bottom: 12px;
  padding-left: 40px;
}
.discussion .commentImage {
  float: left !important;
  border-radius: 50px;
  overflow: hidden;
  position: absolute;
  margin-left: -40px;
  margin-top: 3px;
}
.discussion .documentByLine {
  font-weight: normal;
}
.discussion .commentDate {
  float: right !important;
  display: inline;
  font-size: 12px;
  color: #76797C;
}
.discussion .commentBody {
  margin: 1em 0;
  padding: 1em;
  overflow: auto;
  border: 1px solid #ccc;
}
.discussion .commentBody p {
  float: left;
  margin-bottom: 0;
}
.discussion .commentactionsform {
  display: inline;
  margin-left: 6px;
}
.discussion .commentActions {
  float: right;
  text-align: right;
}
.discussion .reply {
  border-bottom: 1px solid #e5e5e5;
}
.cancelreplytocomment {
  /* Hide the cancel button in the comment form, show it only in the reply form
   * in order to close it.
   */
  display: none;
}
.replyTreeLevel0 {
  margin-left: 0;
}
.replyTreeLevel1 {
  margin-left: 24px;
}
.replyTreeLevel2 {
  margin-left: 48px;
}
.replyTreeLevel3 {
  margin-left: 72px;
}
.replyTreeLevel4 {
  margin-left: 96px;
}
.replyTreeLevel5 {
  margin-left: 120px;
}
.replyTreeLevel6 {
  margin-left: 144px;
}
.replyTreeLevel7 {
  margin-left: 168px;
}
.replyTreeLevel8 {
  margin-left: 192px;
}
.replyTreeLevel9 {
  margin-left: 216px;
}
.replyTreeLevel10 {
  margin-left: 240px;
}
#viewlet-below-content .loginbutton {
  margin: 12px 0;
}
#viewlet-below-content .reply .loginbutton {
  display: none;
}
#viewlet-below-content .reply ~ .reply .loginbutton {
  display: inline-block;
}
#dobulkaction {
  margin: 0.3em 0;
}
.template-discussion-controlpanel .unclickable {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.searchPage {
  position: relative;
  margin-bottom: 25px;
}
.searchPage .actionMenu.activated dd {
  display: block;
}
.searchPage .actionMenu {
  float: right;
}
.searchPage .actionMenu dt {
  top: 0;
  right: 0;
  position: absolute;
}
.searchPage .actionMenu dd {
  display: none;
  position: absolute;
  right: 0;
  top: 35px;
  width: 300px;
  background-color: #fcfcfd;
  border: 1px solid #e5e5e5;
  padding: 15px;
  z-index: 10;
}
#search-results-bar #results-count {
  float: right;
  padding-top: 15px;
  padding-right: 15px;
}
#searchform .input-group {
  max-width: 600px;
}
#searchform .input-group input.searchPage.btn {
  width: 120px;
}
#search-filter input {
  margin-right: 0.5rem;
}
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a.selected,
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.nav > li.disabled > a {
  color: #777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  margin-top: 20px;
  border: 1px solid transparent;
  margin-right: -17px;
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
#navbar-search-collapsible .input-group {
  margin-top: 30px;
  margin-bottom: 10px;
}
/*
.navbar-collapse.in {
    overflow-y: auto;
}
*/
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-search-toggle {
  position: absolute;
  float: left;
  left: 140px;
  top: -12px;
  padding: 2px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 0;
}
.navbar-search-toggle span.glyphicon-search {
  font-size: 18px;
  color: #004b93;
}
@media (min-width: 769px) {
  .navbar-search-toggle {
    display: none !important;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
@media (max-width: 768px) {
  .navbar {
    margin-bottom: 0;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0;
}
.navbar-nav #die-bg-verkehr > a {
  color: #004b93;
  font-weight: bold;
}
@media (max-width: 768px) {
  .navbar-nav {
    display: block;
  }
  .navbar-nav li {
    text-align: left;
  }
}
.navbar-nav > li > a {
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 769px) {
  .navbar-nav {
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: inherit;
  }
}
.navbar-form {
  padding: 10px 15px;
  margin: 8px -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 769px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default .navbar-nav > li > a {
  color: #000;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #d40f14;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
nav.plone-navbar {
  min-height: auto;
}
.plone-navbar-toggle {
  margin-top: 20px;
  margin-bottom: 20px;
}
.navbar-nav > li:hover > a {
  background: url("/++theme++bgv/dist/img/bg_mainnav_level1.png") no-repeat center bottom;
}
@media only screen and (max-width: 50em) {
  .navbar-nav > li:hover > a {
    background: none;
  }
}
.top-mega-menu li.mega-dropdown,
.top-mega-menu ul.dropdown-section,
.top-mega-menu ul.dropdown-section > li {
  padding-bottom: 0 !important;
}
.plone-nav > li > a.selected {
  color: #d40f14;
  text-decoration: none;
}
.plone-nav > li > a.selected::before {
  color: #d40f14;
  font-family: FontAwesome;
  5yypadding-left: 0;
  padding-right: 6px;
  font-style: normal;
  content: '\f105';
}
#portal-globalnav-wrapper .navbar-header {
  text-align: center;
}
#portal-globalnav-wrapper .plone-navbar-toggle {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  float: none;
  font-size: 1.5em;
  color: #014c93;
}
#portal-globalnav-wrapper .fa {
  margin-left: 8px;
  font-size: 1.6em;
  position: relative;
  top: 6px;
}
#content-header ul.dropdown-menu > li a {
  color: black;
}
#content-header ul.dropdown-menu > li a::after {
  content: '';
}
#content-header ul.dropdown-menu > li a::before {
  font-family: FontAwesome;
  5yypadding-left: 0;
  padding-right: 6px;
  font-style: normal;
  content: '\f105';
  color: black;
}
.navbar-collapse-sitemap ul > li a:after {
  padding: 0 10px 0 5px;
  color: #000;
  content: "\007C";
  font-weight: lighter;
}
.navbar-collapse-sitemap #document-action-kontakt a:after {
  content: "";
}
#content-header .navbar-collapse-sitemap ul > li ul {
  padding: 20px 16px;
  margin-top: 14px !important;
  border: 1px solid #f0f1f1;
}
#content-header .navbar-collapse-sitemap ul > li ul::before {
  background-attachment: scroll;
  background-clip: border-box;
  background-color: rgba(0, 0, 0, 0);
  background-image: url("++theme++bgv/dist/img/bg_topnav_layer.png");
  background-origin: padding-box;
  background-position: 15px bottom;
  background-repeat: no-repeat;
  background-size: contain;
  content: " ";
  display: block;
  height: 24px;
  left: 0;
  position: absolute;
  top: -24px;
  width: 100%;
  z-index: 1;
}
#content-header .navbar-collapse-sitemap ul > li ul > li:hover {
  color: #d40f14;
}
#content-header .navbar-collapse-sitemap ul > li ul > li a {
  text-decoration: none;
  font-size: 18px;
  white-space: nowrap;
}
#content-header .navbar-collapse-sitemap ul > li ul > li a:hover {
  color: #d40f14;
}
#content-header .navbar-collapse-sitemap ul > li ul > li a:hover::after {
  color: #d40f14;
}
#content-header .navbar-collapse-sitemap ul > li ul > li a::after {
  content: '';
}
@media (max-width: 768px) {
  .navbar-collapse-sitemap ul > li a:after {
    content: none;
  }
}
.navbar-collapse-sitemap .nav > li > a {
  padding-left: 0;
  padding-right: 0;
  color: #000;
  font-size: 15px;
}
.navbar-collapse-sitemap .nav > li > a:hover,
.navbar-collapse-sitemap .nav > li > a:focus {
  color: #d40f14;
  background-color: transparent;
}
@media (max-width: 800px) {
  .header-category {
    height: auto;
    max-height: 600px;
  }
  .header-category .teaser-container {
    top: 0;
    transform: unset;
    width: 100%;
    padding-bottom: 1em;
  }
}
@media (min-width: 769px) and (max-width: 1420px) {
  .carousel {
    overflow: hidden;
  }
  .header-category,
  .header-content {
    height: auto;
  }
  .header-category .teaser-container,
  .header-content .teaser-container {
    top: 0;
    transform: unset;
  }
}
.carousel-fade {
  height: 30.996vw;
  max-height: 572px;
  /* added lucas */
}
@media (max-width: 1024px) {
  .carousel-fade {
    height: 30.6228vw;
  }
}
.carousel-fade .carousel-control.left {
  width: 64px;
  background: transparent url("../dist/img/bg_header_left.png") no-repeat scroll left center;
}
.carousel-fade .carousel-control.left:hover {
  background-image: url("../dist/img/bg_header_left_hover.png");
}
.carousel-fade .carousel-control.left span {
  display: none;
}
.carousel-fade .carousel-control.right {
  width: 64px;
  background: transparent url("../dist/img/bg_header_right.png") no-repeat scroll right center;
}
.carousel-fade .carousel-control.right:hover {
  cursor: pointer;
  background-image: url("../dist/img/bg_header_right_hover.png");
}
.carousel-fade .carousel-control.right span {
  display: none;
}
.carousel-fade .carousel-caption {
  top: 16px;
  height: 26.6vw;
}
.carousel-fade .carousel-caption .current-slide {
  height: 19.6vw;
}
@media (max-width: 800px) {
  .carousel-fade .carousel-caption .current-slide {
    height: calc(26vw);
  }
}
.carousel-fade .carousel-caption h3:before {
  position: absolute;
  left: 0;
  z-index: 1;
  font-family: FontAwesome;
  content: '\f111';
  color: #5cacf9;
  font-size: 20px;
  margin-bottom: 0;
  font-style: normal;
}
.carousel-fade .carousel-caption .slide-read-more {
  color: #fff;
}
.carousel-fade .carousel-caption h3 {
  font-weight: 500;
  font-style: normal;
  font-size: 1.7vw;
}
.carousel-fade .carousel-caption p {
  font-size: 1.2vw;
}
.carousel-fade .teaser-slides {
  height: 8.6vw;
  clear: both;
}
@media (max-width: 800px) {
  .carousel-fade .teaser-slides {
    display: none;
  }
}
.carousel-fade .teaser-slides h4 {
  font-weight: 700;
  font-size: 16px;
  margin-top: 1px;
}
@media (max-width: 1492px) {
  .carousel-fade .teaser-slides h4 {
    font-size: 1.2vw;
  }
}
.carousel-fade .teaser-slides h4:before {
  position: absolute;
  top: 24px;
  left: 8px;
  z-index: 1;
  font-family: FontAwesome;
  content: '\f111';
  color: #fff;
  font-size: 0.7em;
  margin-bottom: 0;
  font-style: normal;
}
.carousel-fade .teaser-slides > div {
  top: 48%;
}
.carousel-fade .carousel-inner {
  max-height: 572px;
}
.carousel-fade .carousel-inner .item {
  transition-property: opacity;
  transition-duration: 1s;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right,
.carousel-fade .carousel-inner .item {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right,
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev {
  left: 0;
  transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
  z-index: 122;
}
.carousel-fade .hero_mobile {
  display: none;
}
.carousel-fade .hero_desktop {
  display: inline;
}
@media (max-width: 800px) {
  .carousel-fade {
    height: auto;
    max-height: 600px;
  }
  .carousel-fade .hero_mobile {
    display: inline;
  }
  .carousel-fade .hero_desktop {
    display: none;
  }
  .carousel-fade .carousel-caption {
    position: relative;
    top: 0;
    left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .carousel-fade .carousel-caption h3 {
    font-size: 28px;
  }
  .carousel-fade .carousel-caption p {
    font-size: 14px;
  }
  .carousel-fade .carousel-inner {
    max-height: 600px;
  }
}
@media (width: 768px) {
  .carousel-fade .carousel-caption h3 {
    font-size: 20px;
    margin-top: 2px;
    margin-bottom: 5px;
  }
  .carousel-fade .carousel-caption p {
    font-size: 12px;
  }
  .carousel-fade .carousel-caption a.slide-read-more {
    font-size: 14px;
  }
}
.carousel-inner,
.carousel-inner .item,
body,
html {
  height: 100%;
}
/*
.item:nth-child(1) {
    background: #74C390;
}

.item:nth-child(2) {
    background: #51BCE8;
}

.item:nth-child(3) {
    background: #E46653;
}
*/
@media (max-width: 992px) {
  .carousel-fade .teaser-slides .col-xs-6 {
    padding: 0 10px 0 0;
  }
  .carousel-fade .teaser-slides .teaser-slide-subject {
    font-size: 1.0vw;
  }
  .carousel-fade .teaser-slides h4 {
    font-size: 1.0vw;
  }
  .carousel-fade .teaser-slides h4:before {
    content: '';
  }
}
@media (max-width: 800px) {
  .carousel-fade .carousel-control.right {
    width: 38px;
    background: transparent url("../dist/img/bg_header_right-72.png") no-repeat scroll right center !important;
  }
  .carousel-fade .carousel-control.left {
    width: 38px;
    background: transparent url("../dist/img/bg_header_left-72.png") no-repeat scroll left center !important;
  }
}
/* Show/Hide default portlet managers links */
body #edit-zone #portlet-manager-plone\.footerportlets,
body #edit-zone #portlet-manager-plone\.leftcolumn,
body #edit-zone #portlet-manager-plone\.rightcolumn {
  display: none;
}
body.userrole-manager #edit-zone #portlet-manager-plone\.footerportlets,
body.userrole-site-administrator #edit-zone #portlet-manager-plone\.footerportlets,
body.userrole-manager #edit-zone #portlet-manager-plone\.leftcolumn,
body.userrole-site-administrator #edit-zone #portlet-manager-plone\.leftcolumn,
body.userrole-manager #edit-zone #portlet-manager-plone\.rightcolumn,
body.userrole-site-administrator #edit-zone #portlet-manager-plone\.rightcolumn {
  display: block;
}
/* Show/Hide frontpage portlet managers links */
body:not(.portaltype-frontpage) #edit-zone #portlet-manager-bgv\.frontpage\.bottom,
body:not(.portaltype-frontpage) #edit-zone #portlet-manager-bgv\.frontpage\.top,
body:not(.portaltype-frontpage) #edit-zone #portlet-manager-bgv\.frontpage\.sidebar {
  display: none;
}
/* Show/Hide cardsview portlet managers links */
body #edit-zone #portlet-manager-nva\.bsfolderviews\.card\.bottomleft,
body #edit-zone #portlet-manager-nva\.bsfolderviews\.card\.bottomright {
  display: none;
}
body.template-cardsview #edit-zone #portlet-manager-nva\.bsfolderviews\.card\.bottomleft,
body.template-purecardsview #edit-zone #portlet-manager-nva\.bsfolderviews\.card\.bottomleft,
body.template-cardsview #edit-zone #portlet-manager-nva\.bsfolderviews\.card\.bottomright,
body.template-purecardsview #edit-zone #portlet-manager-nva\.bsfolderviews\.card\.bottomright {
  display: block;
}
/* See http://bootsnipp.com/snippets/featured/mega-menu-slide-down-on-hover-with-carousel */


/* BEWARE: this is a simple CSS, not less */

.top-mega-menu .mega-dropdown {
    position: static !important;
}
.top-mega-menu .mega-dropdown-menu {
    padding: 20px 0px;
    width: 100%;
    box-shadow: none;
    -webkit-box-shadow: none;
}
.top-mega-menu .mega-dropdown-menu > li > ul {
    padding: 0;
    margin: 0;
}
.top-mega-menu .mega-dropdown-menu > li > ul > li {
    list-style: none;
}
.top-mega-menu .mega-dropdown-menu > li > ul > li > a {
    font-size: 20px;
    display: block;
    color: #222;
    padding: 3px 5px;
}
.top-mega-menu .mega-dropdown-menu > li ul > li > a:hover, .top-mega-menu .mega-dropdown-menu > li ul > li > a:focus {
    text-decoration: none;
    color: #d40f14;
}
.top-mega-menu .mega-dropdown-menu .dropdown-header {
    font-size: 18px;
    color: #000;
    padding: 5px;
    line-height: inherit;
}
ul.mega-dropdown-menu-lv2 {
    list-style: none;
}
ul.mega-dropdown-menu-lv2 li {
    padding-left: 0;
    text-indent: -12px;
    margin-left: 12px;
}
ul.mega-dropdown-menu-lv2 > li > a {
    font-size: 18px !important;
    color: black;
}
ul.mega-dropdown-menu-lv1 > li > a::after {
    font-family: FontAwesome;
    padding-left: 6px;
    font-style: normal;
    content: '\f105';
    color: black;
}
ul.mega-dropdown-menu-lv2 > li > a::before {
    font-family: FontAwesome;
    padding-left: 0px;
    padding-right: 6px;
    font-style: normal;
    content: '\f105';
    color: black;
}
ul.mega-dropdown-menu-lv2 > li > a:hover::before, ul.mega-dropdown-menu-lv1 > li > a:hover::after {
    color: #d40f14;
}
.top-mega-menu .carousel-control {
    width: 30px;
    height: 30px;
    top: -35px;
}
.top-mega-menu .left.carousel-control {
    right: 30px;
    left: inherit;
}
.top-mega-menu .carousel-control .glyphicon-chevron-left, .top-mega-menu .carousel-control .glyphicon-chevron-right {
    font-size: 12px;
    background-color: #fff;
    line-height: 30px;
    text-shadow: none;
    color: #333;
    border: 1px solid #ddd;
}

.top-mega-menu {
  /*
    @media (max-width: @plone-screen-sm-min) {
        .mega-dropdown-menu {
            overflow: hidden;

            .mega-dropdown-menu-lv1,
            .mega-dropdown-menu-lv2 {
                position: absolute;
                height: 1px;
                left: 100%;
                transition: left 0.5s;
            }

        }

        .open {
            .mega-dropdown-menu {
                .mega-dropdown-menu-lv1 {
                    left: 0;
                    height: 100%;
                }
            }
        }

    }
*/
}
.top-mega-menu li.mega-dropdown,
.top-mega-menu ul.dropdown-section,
.top-mega-menu ul.dropdown-section > li {
  padding: 0.2em 0.3em;
}
.top-mega-menu .mega-dropdown-menu {
  box-shadow: 0 5px 10px #888888;
}
.top-mega-menu .mega-dropdown-menu .dropdown-header {
  font-size: inherit;
}
@media (max-width: 768px) {
  .top-mega-menu .container {
    padding: 0 !important;
  }
  .top-mega-menu .row {
    margin: 0 !important;
  }
  .top-mega-menu .collapse.in {
    padding: 0;
  }
  .top-mega-menu .collapse.in li a {
    font-size: 1.5em;
    padding-top: 1em !important;
    padding-bottom: 1em;
    border-bottom: 2px solid #fff;
    padding-left: 1em;
    display: block;
    line-height: 1em;
  }
  .top-mega-menu .expand li.dropdown {
    width: 1px;
    position: relative !important;
  }
  .top-mega-menu .expand li.dropdown.open {
    width: auto;
    position: static !important;
  }
  .top-mega-menu .expand li.open ul.dropdown-menu {
    left: 100%;
    position: absolute;
    top: 0;
    width: 100%;
  }
  .top-mega-menu .expand li.open ul.dropdown-menu > li a {
    padding-left: 0;
    line-height: 0.2em;
    font-size: 18px;
  }
  .top-mega-menu .expand li.back {
    background-color: #555555;
  }
  .top-mega-menu .expand li.back a {
    color: #fff !important;
    padding-left: 3em;
    border: none !important;
  }
  .top-mega-menu .expand li.open li.hidden {
    display: block !important;
  }
  .top-mega-menu li.back h5 a::before {
    content: "<";
    font-family: FontAwesome;
    font-size: 24px;
    left: 20px;
    line-height: 1.5;
    margin-bottom: 0;
    position: absolute;
    top: 7px;
    z-index: 1;
  }
  .top-mega-menu ul.mega-dropdown-menu-lv2 > li > a::before {
    content: '';
  }
  .top-mega-menu .expand li.open ul.mega-dropdown-menu-lv1 li {
    padding-left: 0 !important;
  }
  .top-mega-menu .expand li.open ul.mega-dropdown-menu-lv2 {
    left: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    display: none;
  }
  .top-mega-menu .expand .col-sm-3 {
    position: static;
  }
}
.col-menu {
  width: 20%;
  float: left;
}
@media (min-width: 769px) {
  .mobilemenu {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .desktopmenu {
    display: none !important;
  }
}
#mega-dropdown-menu-lv1-a:after,
#mega-dropdown-menu-lv1-a {
  color: #014C93;
}
#mega-dropdown-menu-lv1-a:hover,
#mega-dropdown-menu-lv1-a:hover:after,
#mega-dropdown-menu-lv1-a:focus,
#mega-dropdown-menu-lv1-a:focus:after {
  color: #d40f14;
}
.img-lightbox img {
  cursor: pointer;
}
.img-lightbox .enlargeImg {
  position: relative;
  right: 24px;
  bottom: 4px;
  vertical-align: bottom;
  color: #d40f14;
  cursor: pointer;
}
@media (max-width: 480px) {
  .img-lightbox .enlargeImg {
    display: none;
  }
}
span.category-link a {
  color: black;
  font-size: 21px;
  font-weight: normal;
  font-style: normal;
  line-height: 30px;
}
span.category-link a::after {
  font-family: 'FontAwesome';
  content: "\f105";
  font-size: 21px;
  padding-left: 6px;
}
span.category-link.red a:hover,
span.category-link.red a::after {
  color: #d40f14;
  text-decoration: none;
}
span.category-link.blue a:hover,
span.category-link.blue a::after {
  color: #014C93;
  text-decoration: none;
}
span.externallink a,
span.linkinternal-black a,
span.linkinternal a {
  font-weight: bold;
  font-size: 16px;
  color: #000;
  text-decoration: none;
}
span.externallink a:hover,
span.linkinternal-black a:hover,
span.linkinternal a:hover {
  color: #d40f14;
}
a.slide-read-more {
  font-size: 18px;
  font-family: 'Fira Sans';
  font-weight: bold;
}
a.slide-read-more::after {
  font-family: 'Glyphicons Halflings';
  content: "\e080";
  color: white;
  font-size: 10px;
}
span.linkinternal-white::after {
  font-family: 'Glyphicons Halflings';
  content: "\e080";
  color: #FFFFFF;
  font-size: 10px;
}
span.linkinternal::after {
  font-family: 'Glyphicons Halflings';
  content: "\e080";
  color: #d40f14;
  font-size: 10px;
}
span.externallink-red::after {
  font-family: 'FontAwesome';
  content: "\f08e";
  font-style: normal;
  padding-left: 4px;
}
span.externallink::after {
  font-family: 'FontAwesome';
  content: "\f08e";
  font-style: normal;
  padding-left: 8px;
}
span.externallink-red a,
span.externallink-red::after,
span.linkinternal-black:hover:after,
span.externallink:hover:after {
  color: #d40f14;
}
span.externallink-red:hover:after {
  color: #000;
}
span.download-link:hover:before:hover,
span.download-link a:hover:hover,
span.externallink-red a:hover {
  color: #000;
  text-decoration: none;
}
.event-descr span.linkinternal-black:hover:after {
  color: #004b93;
}
span.linkinternal-black::after {
  font-family: 'FontAwesome';
  content: "\f105";
  color: #222;
  font-size: 16px;
  padding-left: 4px;
}
a.relatedLink::before {
  font-family: 'Glyphicons Halflings';
  font-size: 17px;
  content: "\e080";
  color: #d40f14;
  padding-right: 10px;
}
span.mehr-link-teaser-blue a,
span.anker a {
  color: #004b93;
}
span.mehr-link-teaser-blue a:hover,
span.anker a:hover {
  color: #0095db;
  text-decoration: none;
}
span.mehr-link-teaser-red a {
  color: #d40f14;
}
span.mehr-link-teaser-red a:hover {
  color: #000;
  text-decoration: none;
}
span.mehr-link-teaser-red:hover:before {
  color: #000;
  text-decoration: none;
}
span.mehr-link-teaser-red::before {
  font-family: 'FontAwesome';
  color: #d40f14;
  font-size: 14px;
  content: "\f105";
  padding-right: 8px;
}
span.mehr-link-teaser-blue::before {
  font-family: 'FontAwesome';
  color: #004b93;
  font-size: 14px;
  content: "\f105";
  padding-right: 8px;
}
span.anker::after {
  font-family: FontAwesome;
  content: '\f103';
  padding-left: 10px;
  color: #0095db;
}
span.anker::before {
  font-family: FontAwesome;
  content: '\f13d';
  padding-right: 10px;
  font-size: 17px;
  margin-bottom: 0em;
  position: relative;
  top: -2px;
  color: #0095db;
}
span.download-link a,
span.contenttype-file a {
  color: #d40f14;
}
span.download-link a:hover,
span.contenttype-file a:hover {
  text-decoration: none;
}
span.download-link a::before,
span.contenttype-file a::before {
  font-family: FontAwesome;
  content: '\f019';
  padding-right: 10px;
  font-size: 17px;
  margin-bottom: 0em;
  position: relative;
  color: #d40f14;
}
span.portlet-link-black a {
  color: black;
  font-weight: 500;
}
span.portlet-link-black a:after {
  padding-left: 6px;
  font-family: FontAwesome;
  content: '\f105';
  color: #004b93;
}
span.portlet-link-blue a {
  color: #004b93;
  font-weight: normal;
  font-style: italic;
}
span.portlet-link-blue a:after {
  font-family: FontAwesome;
  padding-left: 6px;
  font-style: normal;
  content: '\f105';
  color: #004b93;
}
a.backlink {
  background: #555;
  color: white !important;
}
a.backlink:before {
  font-family: FontAwesome;
  content: '\f104';
  padding-right: 10px;
  font-size: 24px;
  margin-left: -15px;
}
a.backlink:hover {
  background: #555 !important;
  color: white;
}
.header-category {
  margin-top: -20px;
  height: 25.6579vw;
  max-height: 351px;
  background-color: #004b93;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-category .inside {
  width: 100%;
  max-width: 1368px;
  margin: 0 auto;
  position: relative;
  height: inherit;
  max-height: 351px;
}
.header-category .teaser-container {
  position: relative;
  transform: translateY(-50%);
  color: #FFF;
  padding-left: 1.75439vw;
  width: 50%;
  top: 50%;
}
.header-category .teaser-container h1 {
  font-size: 2.63158vw;
  line-height: 1.11111;
  margin-bottom: 10px0;
}
.header-category .teaser-container p {
  font-size: 1.60819vw;
  line-height: 1.36364;
  margin-bottom: 0;
}
@media only screen and (min-width: 1800px) {
  .header-category .teaser-container h1 {
    font-size: 1.7vw;
  }
  .header-category .teaser-container p {
    font-size: 1.2vw;
  }
}
@media only screen and (max-width: 800px) {
  .header-category {
    margin-top: -1px;
    height: auto;
    max-height: 10000px;
  }
  .header-category .teaser-container {
    padding-right: 3vw;
    padding-bottom: 6.25vw;
    padding-top: 6.25vw;
    width: 100%;
    height: auto;
    position: static;
    transform: none;
    top: 0;
    background-color: #004b93;
  }
  .header-category .teaser-container h1 {
    font-size: 4.5vw;
  }
  .header-category .teaser-container p {
    font-size: 2.625vw;
  }
  .header-category > .inside {
    height: auto;
    max-height: 10000px;
  }
}
.header-content {
  margin-top: -20px;
  height: 13.8889vw;
  max-height: 190px;
  background-color: #004b93;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-content .inside {
  width: 100%;
  max-width: 1368px;
  margin: 0px auto;
  position: relative;
  height: inherit;
  max-height: 190px;
}
.header-content .teaser-container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: #FFF;
  padding-left: 1.75439vw;
  width: 50%;
}
@media only screen and (max-width: 800px) {
  .header-content {
    height: auto;
    max-height: 10000px;
  }
  .header-content .teaser-container {
    padding-right: 3vw;
    padding-bottom: 6.25vw;
    padding-top: 6.25vw;
    width: 100%;
    height: auto;
    position: static;
    transform: none;
    top: 0;
    background-color: #004b93;
  }
  .header-content .teaser-container h1 {
    font-size: 4.5vw;
  }
  .header-content > .inside {
    height: auto;
    max-height: 10000px;
  }
}
@media only screen and (min-width: 800px) {
  .hide-desktop {
    display: none !important;
  }
}
a#personaltools-login,
.searchSection,
.portaltype-frontpage .plone-breadcrumb {
  display: none;
}
.image-caption,
img.captioned {
  max-width: 100%;
  font-size: 17px;
  margin-bottom: 0;
  font-style: italic;
  color: #004b93;
  padding-top: 5px;
}
h1.documentFirstHeading {
  color: #004b93;
  font-size: 42px;
}
.folderDescription p,
.documentDescription {
  color: #222;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 400;
}
.documentDescription {
  font-style: italic !important;
}
#content blockquote p,
blockquote {
  font-size: 30px;
  font-style: italic;
  line-height: 1.17241;
  margin: 0 0 0 15%;
  font-weight: 300;
  display: inline-block;
  color: #004b93 !important;
}
blockquote .fa {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 0;
}
.font-italic {
  font-style: italic;
}
#content ol > li {
  font-size: 21px;
  font-style: italic;
  padding-bottom: 8px;
}
#parent-fieldname-text,
#content p,
#content ol,
#content ul,
a.relatedLink,
.quote-text,
span.anker,
span.contenttype-file,
.bottom-container p {
  font-size: 21px;
  font-weight: 400;
  font-style: normal;
  line-height: 30px;
}
.portaltype-frontpage .front-page-section-top p,
.portaltype-frontpage .front-page-section-top ol,
.portaltype-frontpage .front-page-section-top ul,
.portaltype-frontpage .top-container p,
.portaltype-frontpage .bottom-container p {
  line-height: 24px;
}
#content p.callout {
  font-style: italic;
  font-size: 28px;
  background: #f3f2f2;
  font-weight: normal;
}
.quote-claim,
.quote-text,
.quote-link {
  background: #f3f2f2;
  display: block;
  padding: 15px;
}
h3,
h3.quote.claim,
#content ul > li,
#relatedItemBox header {
  font-style: italic;
  padding-bottom: 8px;
}
#parent-fieldname-text ul {
  list-style: none;
}
#parent-fieldname-text ul > li:before {
  position: relative;
  top: -2px;
  left: -15px;
  z-index: 1;
  font-family: FontAwesome;
  content: '\f111';
  color: #014C93;
  font-size: 10px;
  font-style: normal;
  margin-left: -10px;
  line-height: 0;
}
h3.quote-claim {
  margin-bottom: 0;
  margin-top: 20px;
}
.quote-link a {
  padding-left: 10px;
  color: #014C93;
}
.quote-link:before {
  z-index: 1;
  font-family: 'Glyphicons Halflings';
  content: "\e080";
  line-height: inherit;
  font-size: 18px;
  color: #004b93;
}
p.font-blue {
  color: #004b93 !important;
}
.zitatschrift {
  font-size: 16px;
}
.portletDownloadPortlet #relatedItemBox header {
  font-size: 24px;
}
#relatedItemBox ul {
  padding-left: 0 !important;
  list-style: none;
}
#relatedItemBox header {
  font-size: 28px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 3px dotted #222;
}
a.relatedLink {
  color: #d40f14;
}
a.relatedLink:hover {
  color: #222;
  text-decoration: none;
}
.image-left {
  margin-top: 0.2em;
}
.quote-link:last-child {
  margin-bottom: 15px;
}
.quote-text {
  padding-bottom: 20px;
}
#portaltab-index_html {
  display: none;
}
nav.plone-navbar {
  min-height: auto;
}
.plone-navbar-toggle {
  margin-top: 20px;
  margin-bottom: 20px;
}
.navbar-nav > li:hover > a {
  background: url("/++theme++bgv/dist/img/bg_mainnav_level1.png") no-repeat center bottom;
}
@media only screen and (max-width: 50em) {
  .navbar-nav > li:hover > a {
    background: none;
  }
}
.open > .dropdown-menu {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  display: block;
}
.dropdown-menu {
  opacity: 0.3;
  -webkit-transform-origin: top;
  transform-origin: top;
  /*  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-transform: scale(1, 0);
  transition: all 0.6s linear;
  -webkit-transition: all 0.6s linear; */
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 100%;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #fff;
}
.caret-up {
  width: 0;
  height: 0;
  border-left: 4px solid rgba(0, 0, 0, 0);
  border-right: 4px solid rgba(0, 0, 0, 0);
  border-bottom: 4px solid;
  display: inline-block;
  margin-left: 2px;
  vertical-align: middle;
}
.header-cta {
  list-style: none;
}
.bgdirektLink {
  padding-top: 6px;
  padding-right: 7px;
}
.bgdirekt {
  float: right;
  z-index: 1;
}
.bgdirekt img {
  width: 198px;
  max-width: 198px;
  height: auto;
}
.plzSearch {
  border: none;
  padding: 7px 16px;
}
.LSBox [type="submit"] {
  background: #004b93;
  color: white;
  border: none;
  padding: 7px 16px;
}
.LSBox [type="submit"]:hover {
  background: #d40f14;
}
.header-cta input[type="text"] {
  background: #f3f2f2;
  border: 1px solid #f3f2f2;
}
li#document-action-leichtesprache,
li#document-action-gaeberdensprache {
  margin-left: 24px;
}
li#document-action-leichtesprache > a:before,
li#document-action-gaeberdensprache > a:before {
  content: ' ';
  top: 0;
  position: absolute;
  left: -20px;
  z-index: 1;
  display: block;
  width: 1.2em;
  height: 1.2em;
}
li#document-action-leichtesprache > a:after {
  padding: 0 5px;
  color: #000;
  content: "\007C";
}
@media (max-width: 768px) {
  li#document-action-leichtesprache > a:after {
    content: none;
  }
}
li#document-action-gaeberdensprache > a:after {
  content: ' ';
  padding: 0;
}
li#document-action-gaeberdensprache > a:before {
  background: url("/++theme++bgv/dist/img/bg_icon_gs.png") no-repeat top left;
  background-size: contain;
}
li#document-action-leichtesprache > a:before {
  background: url("/++theme++bgv/dist/img/bg_icon_ls.png") no-repeat top left;
  background-size: contain;
}
li#document-action-print > a {
  background: url("/++theme++bgv/dist/img/bg_icon_print.png") no-repeat right center;
  background-size: contain;
  padding-right: 35px;
}
li#document-action-webcode > a {
  background: url("/++theme++bgv/dist/img/bg_icon_recommend.png") no-repeat right center;
  background-size: contain;
  padding-right: 35px;
}
li#document-action-totop > a {
  background: url("/++theme++bgv/dist/img/bg_icon_top.png") no-repeat right center;
  background-size: contain;
  padding-right: 35px;
}
.documentActions {
  border-top: 1px solid #000;
  padding-top: 20px;
}
.documentActions ul {
  float: right;
}
.documentActions > ul::after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.documentActions > ul > li {
  display: inline-block;
  float: left;
  margin-right: 20px;
}
.documentActions > ul > li > a {
  display: inline-block;
  color: #000;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 0;
  max-height: 32px;
}
.documentActions > ul > li > a:hover {
  color: #d40f14;
  text-decoration: none;
}
.top-mega-menu li.mega-dropdown,
.top-mega-menu ul.dropdown-section > li {
  padding-bottom: 0 !important;
}
.top-mega-menu ul.dropdown-section {
  margin-bottom: 30px;
}
.mega-menu {
  padding: 10px 0 ! important;
  width: 540px;
  border-radius: 0;
  margin-top: 0;
}
.mega-menu li {
  display: inline-block;
  float: left;
  padding: 3px 0;
}
.mega-menu li.mega-menu-column {
  margin-right: 20px;
  width: 150px;
}
.mega-menu .nav-header {
  padding: 0 !important;
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #ddd;
}
.mega-menu img {
  padding-bottom: 10px;
}
/*
.header-content {
	height: 13.88889vw;
	max-height: 190px;
	background-color:@bgv-blue-base;
}
.header-content > .container {
	width: 100%;
	max-width: 1368px;
	margin: 0 auto;
	height: inherit;
	max-height: 190px;
}
.header-content .teaser-container {
	position: relative;
	// top: 40%;
	transform: translateY(40%);
        margin-top: 4%;
	color: white;
	width: 48%;
}

@media only screen and (max-width: 50em) {
	.header-content .teaser-container {
		}
	}
@media only screen and (min-width: 85.5625em) { .header-content .teaser-container { padding-left: 0px; } }
.header-content .teaser-container h1 { font-size: 36px; line-height: 1.11111; margin-bottom: 0em; color: white; padding-left: 1.75439vw; }
@media only screen and (max-width: 40em) { .header-content .teaser-container h1 { font-size: 6.57895vw; } }
@media only screen and (min-width: 40.0625em) and (max-width: 50em) { .header-content .teaser-container h1 { font-size: 4.5vw; } }
@media only screen and (min-width: 50.0625em) and (max-width: 64em) { .header-content .teaser-container h1 { font-size: 2.63158vw; } }
@media only screen and (min-width: 64.0625em) and (max-width: 85.5em) { .header-content .teaser-container h1 { font-size: 2.63158vw; } }
@media only screen and (min-width: 85.5625em) { .header-content .teaser-container h1 { font-size: 36px; } }
@media only screen and (max-width: 50em) { .header-content .teaser-container h1 { padding-left: 3vw; } }
@media only screen and (min-width: 85.5625em) { .header-content .teaser-container h1 { padding-left: 24px; } }

@media only screen and (max-width: 50em) { .header-content { height: auto; max-height: 10000px; }
  .header-content > .inside { height: auto; max-height: 10000px; }
  .header-content .teaser-container { width: 100%; height: auto; position: static; transform: none; top: 0; background-color: #004b93; padding-top: 3.65497vw; padding-bottom: 3.65497vw; padding-right: 1.75439vw; } }
@media only screen and (max-width: 50em) and (max-width: 50em) { .header-content .teaser-container { padding-top: 6.25vw; } }
@media only screen and (max-width: 50em) and (min-width: 85.5625em) { .header-content .teaser-container { padding-top: 50px; } }
@media only screen and (max-width: 50em) and (max-width: 50em) { .header-content .teaser-container { padding-bottom: 6.25vw; } }
@media only screen and (max-width: 50em) and (min-width: 85.5625em) { .header-content .teaser-container { padding-bottom: 50px; } }
@media only screen and (max-width: 50em) and (max-width: 50em) { .header-content .teaser-container { padding-right: 3vw; } }
@media only screen and (max-width: 50em) and (min-width: 85.5625em) { .header-content .teaser-container { padding-right: 24px; } }
*/
/*
.header-category {
	height: 25.65789vw;
	max-height: 351px;
	background-color:@bgv-blue-base;
//	background: url("/++theme++bgv/dist/img/header_category.jpg") no-repeat top center;
	background-size: cover;
	border-top:1px solid transparent;
}
.header-category > .container {
	width: 100%;
	max-width: 1368px;
	margin: 0 auto;
	height: inherit;
	max-height: 351px;
}
.header-category .teaser-container { position: relative; top: 40%; transform: translateY(40%); color: white; padding-left: 1.75439vw; width: 50%; }
@media only screen and (max-width: 50em) { .header-category .teaser-container { padding-left: 3vw; } }
@media only screen and (min-width: 85.5625em) { .header-category .teaser-container { padding-left: 24px; } }
.header-category .teaser-container h1 { font-size: 2.63158vw; line-height: 1.11111; margin-bottom: 0em; }
@media only screen and (min-width: 85.5625em) { .header-category .teaser-container h1 { font-size: 36px; } }
.header-category .teaser-container p { font-size: 1.60819vw; line-height: 1.36364; margin-bottom: 0em; }
@media only screen and (min-width: 85.5625em) { .header-category .teaser-container p { font-size: 22px; } }

@media only screen and (max-width: 50em) { .header-category { height: auto; max-height: 10000px; }
  .header-category > .inside { height: auto; max-height: 10000px; }
  .header-category .teaser-container { width: 100%; height: auto; position: static; transform: none; top: 0; background-color: #004b93; padding-top: 3.65497vw; padding-bottom: 3.65497vw; padding-right: 1.75439vw; }
  .header-category .teaser-container h1 { font-size: 36px; line-height: 1.11111; margin-bottom: 0.41667em; }
  .header-category .teaser-container p { font-size: 21px; line-height: 1.33333; margin-bottom: 0em; } }
@media only screen and (max-width: 50em) and (max-width: 50em) { .header-category .teaser-container { padding-top: 6.25vw; } }
@media only screen and (max-width: 50em) and (min-width: 85.5625em) { .header-category .teaser-container { padding-top: 50px; } }
@media only screen and (max-width: 50em) and (max-width: 50em) { .header-category .teaser-container { padding-bottom: 6.25vw; } }
@media only screen and (max-width: 50em) and (min-width: 85.5625em) { .header-category .teaser-container { padding-bottom: 50px; } }
@media only screen and (max-width: 50em) and (max-width: 50em) { .header-category .teaser-container { padding-right: 3vw; } }
@media only screen and (max-width: 50em) and (min-width: 85.5625em) { .header-category .teaser-container { padding-right: 24px; } }
@media only screen and (max-width: 50em) and (max-width: 40em) { .header-category .teaser-container h1 { font-size: 6.57895vw; } }
@media only screen and (max-width: 50em) and (min-width: 40.0625em) and (max-width: 50em) { .header-category .teaser-container h1 { font-size: 4.5vw; } }
@media only screen and (max-width: 50em) and (min-width: 50.0625em) and (max-width: 64em) { .header-category .teaser-container h1 { font-size: 2.63158vw; } }
@media only screen and (max-width: 50em) and (min-width: 64.0625em) and (max-width: 85.5em) { .header-category .teaser-container h1 { font-size: 2.63158vw; } }
@media only screen and (max-width: 50em) and (min-width: 85.5625em) { .header-category .teaser-container h1 { font-size: 36px; } }
@media only screen and (max-width: 50em) and (max-width: 40em) { .header-category .teaser-container p { font-size: 3.83772vw; } }
@media only screen and (max-width: 50em) and (min-width: 40.0625em) and (max-width: 50em) { .header-category .teaser-container p { font-size: 2.625vw; } }
@media only screen and (max-width: 50em) and (min-width: 50.0625em) and (max-width: 64em) { .header-category .teaser-container p { font-size: 1.53509vw; } }
@media only screen and (max-width: 50em) and (min-width: 64.0625em) and (max-width: 85.5em) { .header-category .teaser-container p { font-size: 1.53509vw; } }
@media only screen and (max-width: 50em) and (min-width: 85.5625em) { .header-category .teaser-container p { font-size: 21px; } }
*/
@media only screen and (min-width: 1130px) {
  .redcircle {
    background: url("/++theme++bgv/dist/img/redcircle.svg") no-repeat 0 0;
    background-size: contain;
    height: 280px;
    width: 280px;
    float: left;
    display: block;
    text-align: center;
    padding-top: 20%;
    color: white;
  }
  .redcircle h3 {
    font-size: 1.6vw;
    font-weight: 400;
  }
  .redcircle p,
  .redcircle a {
    color: white;
    font-style: normal;
  }
  .redcircle p {
    line-height: 1.1vw !important;
    padding-left: 10%;
    width: 90%;
  }
  .redcircle a {
    font-weight: bold;
  }
  .redcircle a:hover {
    text-decoration: underline;
  }
}
@media only screen and (min-width: 85.5625em) {
  .redcircle {
    height: 280px;
    width: 280px;
  }
  .redcircle h3 {
    font-size: 1.2vw;
  }
  .redcircle p {
    font-size: 0.8vw;
  }
}
@media only screen and (max-width: 640px) {
  h1.documentFirstHeading {
    margin-top: 50px;
    margin-left: -4px;
  }
}
@media (min-width: 992px) and (max-width: 1130px) {
  .redcircle {
    background: url("/++theme++bgv/dist/img/redcircle.svg") no-repeat 0 0;
    background-size: contain;
    float: left;
    display: block;
    text-align: center;
    height: 17.4vw;
    width: 17.4vw;
    padding-top: 25px;
    margin-bottom: 5px;
  }
  .redcircle h3 {
    font-size: 1.3vw;
  }
  .redcircle p {
    color: #FFFFFF;
    width: 180px;
    font-size: 12px;
    line-height: 1.5vw !important;
  }
  .redcircle a {
    color: white;
    font-style: normal;
    font-weight: bold;
  }
  .redcircle a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 992px) {
  .redcircle {
    float: none;
    display: block;
    height: 20vw;
    width: 20vw;
    text-align: left;
    padding-top: 0;
    color: black;
  }
  .redcircle h3 {
    font-size: 1.2;
  }
  .redcircle p,
  .redcircle a {
    color: black;
    font-style: normal;
    font-size: 18px;
  }
  .redcircle h3 {
    font-weight: normal;
    color: #d40f14;
  }
}
@media (max-width: 769px) {
  #column-bgv-frontpage-top-portlet-2,
  #column-bgv-frontpage-top-portlet-3,
  #column-bgv-frontpage-top-portlet-4 {
    padding-left: 15px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .redcircle h3 {
    font-size: 2.2vw !important;
  }
  #column-bgv-frontpage-top-portlet-2,
  #column-bgv-frontpage-top-portlet-3,
  #column-bgv-frontpage-top-portlet-4 {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  h3,
  .front-page-section-top h2,
  .front-page-section-top .portletHeader {
    font-size: 28px;
  }
}
.top-container {
  margin-top: 3.5em;
}
h2.cards-label {
  position: relative;
  top: -60px;
  font-size: 18px;
  line-height: 1;
  color: #555555;
  font-style: italic;
}
h2.cards-label > span {
  position: absolute;
  top: -10px;
  margin-left: 40px;
}
div.cards-halfcircle {
  height: 60px;
  width: 120px;
  border-radius: 120px 120px 0 0;
  -moz-border-radius: 120px 120px 0 0;
  -webkit-border-radius: 120px 120px 0 0;
  background: white;
  margin-left: 20px;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
h2.row-headline > span > span {
  position: relative;
  display: inline-block;
  top: 15px;
  left: 58px;
  z-index: 0;
  background-color: #f3f2f2;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  padding: 36px 12px 0;
  font-size: 18px;
  line-height: 1;
  margin-bottom: -5em;
  color: #555555;
  font-style: italic;
}
h2.row-headline-bottom {
  height: 10px;
}
h2.row-headline-bottom > span > span {
  position: relative;
  display: inline-block;
  top: -75px;
  left: 58px;
  z-index: 0;
  background-color: #f3f2f2;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  padding: 36px 12px 0;
  font-size: 18px;
  line-height: 1;
  color: #555555;
  font-style: italic;
}
.wide-above,
.wide-below {
  background: #f3f2f2;
}
h2.row-headline.grey > span > span {
  background-color: white;
}
.media-main h3 {
  font-style: normal;
  font-size: 28px;
  margin-top: 0;
}
@media (max-width: 992px) {
  .media-main h3 {
    margin-top: 0.5rem;
  }
}
.media-block {
  margin-bottom: 40px;
}
.media-block:last-child {
  margin-bottom: 0;
}
.media-block:after {
  content: "";
  display: table;
  clear: both;
}
.media-block img.responsive {
  max-width: 100%;
  display: block;
  height: auto;
}
.media-block p {
  line-height: 24px !important;
}
.portlet-sidebar p {
  font-size: 14px !important;
  font-style: italic !important;
  line-height: 20px !important;
  margin-bottom: 10px;
}
.portlet-sidebar p > span a {
  font-style: normal !important;
  font-size: 16px !important;
}
.media-descr {
  font-size: 19px;
}
.media-date {
  color: #555555;
  font-style: italic;
  font-size: 19px;
}
.event-descr span.linkinternal-black a {
  font-weight: 400 !important;
  font-size: 22px;
  line-height: 1.13636;
}
.event-descr span.linkinternal-black a:hover,
.event-descr span.linkinternal-black a:hover:after {
  color: #004b93;
}
.event-descr span.linkinternal-black::after {
  font-size: 20px !important;
}
#media-aside {
  border-left: 1px dotted #000000;
  padding-top: 18px;
}
@media (max-width: 991px) {
  #media-aside {
    border-left: none;
  }
}
.image-inline {
  display: block;
  max-width: 100%;
  height: auto;
}
.event-box .media-icon {
  text-align: center;
  padding-bottom: 10px;
}
.more-events {
  margin-right: 20px;
}
.more-events a {
  margin-top: 15px;
}
#front-page-portlets-bottom {
  margin-top: 40px;
}
.carousel-inner {
  background: transparent url(../dist/img/bg_homepage_header.png) repeat-x scroll left top / contain;
}
.carousel-caption {
  text-shadow: none;
}
.carousel-caption h3 {
  margin-left: 0;
  font-size: 2.6vw;
}
.carousel-caption p {
  font-size: 1.2vw;
  margin-left: 0;
}
@media (min-width: 1492px) {
  .carousel-caption h3 {
    font-size: 36px;
  }
  .carousel-caption p {
    font-size: 21px;
  }
}
.carousel-inner > .item > img {
  width: 100% !important;
}
.current-slide {
  height: 28.5vh;
  max-height: 369px;
}
.teaser-slides {
  height: 10vw;
  max-height: 132px;
}
.teaser-slides > div {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}
.teaser-slides a {
  color: white;
  font-style: italic;
}
/*
@media (max-width:@plone-screen-sm-max) {
.carousel-inner {background:@bgv-blue-base;background-image:none;}
.carousel-caption {
h3 {font-size:@plone-font-size-base;margin-left:0}
p {display:none;}
}
}
*/
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.table {
  color: #555555;
}
.table tbody {
  padding-bottom: 3px;
  border-bottom: 4px solid #555555;
}
span.thead {
  background: #004b93;
  color: white !important;
}
.table-striped > tbody > tr:nth-of-type(even) {
  background-color: #f3f2f2 !important;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: white !important;
}
.table tr th {
  background: #004b93 !important;
  color: white;
}
.table tr td {
  color: black;
}
.table caption {
  font-style: italic;
  font-size: 28px;
  font-weight: normal;
  color: #222;
}
.tab-content {
  background: #f3f2f2;
  padding: 30px;
}
.nav-tabs {
  margin-bottom: 0 !important;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 4px !important;
  margin-bottom: 0;
  background-color: #e3e3e3;
  color: #222;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  background-color: #004b93;
  cursor: default;
  color: white;
}
.panel-title,
.panel-body,
.panel-title > a {
  font-size: 21px;
  line-height: 30px;
}
.panel-title > a {
  background: #f3f2f2 url("/++theme++bgv/dist/img/bg_leftnav_level1_active.png") no-repeat right center;
  display: block;
  margin-bottom: 0 !important;
  padding: 8px 60px 8px 8px;
  color: #014C93;
  text-decoration: none;
}
.panel-title > a.collapsed {
  background: #f3f2f2 url("/++theme++bgv/dist/img/bg_leftnav_level1_hover.png") no-repeat right center;
}
.folder_contents > div > div {
  font-size: 16px;
}
.cards-wrapper {
  padding: 40px 15px;
}
@media (max-width: 768px) {
  .container.cards-wrapper .row {
    margin-left: 0;
    margin-right: 0;
  }
}
.cards-img img {
  padding-top: 3px;
  padding-bottom: 10px;
}
.card-red {
  border-top: 5px solid #d40f14;
}
.card-blue {
  border-top: 5px solid #004b93;
}
.bottom-container {
  margin-top: 20px;
}
.bottom-container .cards-item {
  min-height: 46px;
}
.bottom-container .bottom-cards {
  margin-bottom: 40px;
}
.bottom-container .bottom-cards .col-sm-6 {
  padding-bottom: 40px;
}
@media (max-width: 750px) {
  .bottom-cards .folder_contents .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}
body.template-listing_view article.entry span.summary a {
  font-size: 28px;
}
body.portaltype-collection article #content-core table {
  font-size: 21px;
}
body.portaltype-collection article article.entry span.summary a {
  font-size: 28px;
}
body.portaltype-collection article article.tileItem {
  border-bottom: 1px dotted #000;
  padding-bottom: 10px;
}
body.portaltype-collection article article.tileItem h2.tileHeadline {
  font-size: 28px;
}
body.portaltype-collection article article.tileItem span.description {
  font-size: 21px;
}
body.portaltype-collection article article.tileItem div.tileFooter a {
  font-size: 21px;
  color: transparent;
}
body.portaltype-collection article article.tileItem div.tileFooter a:after {
  content: "> Mehr Infos";
  margin-left: -62px;
  color: #d40f14;
}
body.template-search input[type="text"] {
  background: #f3f2f2 none repeat scroll 0 0;
}
body.template-search input {
  border: 1px solid #ccc;
  color: #000;
  font-size: 14px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  height: 34px;
  line-height: 1.42857;
  padding: 6px 12px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}
body.template-search input[type="submit"] {
  background: #004b93 none repeat scroll 0 0;
  padding: 7px 16px;
  color: #fff;
}
body.template-search input[type="submit"]:hover {
  background: #d40f14 none repeat scroll 0 0;
}
body.template-search #search-filter-toggle {
  background: #555 none repeat scroll 0 0;
  color: #fff;
  font-size: 14px;
  color: #555;
  text-shadow: none;
}
body.template-search #search-filter-toggle:after {
  content: "Ergebnisse filtern";
  color: #fff;
  margin-left: -107px;
}
body.template-search .actionMenu dt {
  position: absolute;
  left: 0;
  top: 110px;
}
body.template-search .actionMenu dd {
  position: absolute;
  left: 0;
  top: 145px;
}
body.template-search div.input-group {
  margin-bottom: 34px;
}
body.template-search nav#searchResultsSort a {
  color: #000;
  font-size: 18px;
  cursor: pointer;
}
body.template-search nav#searchResultsSort span {
  color: #000;
  font-size: 18px;
}
body.template-search a#title-link {
  font-size: 28px;
}
body.template-search p.discreet {
  color: black;
}
body.template-search div.listingBar {
  font-size: 18px;
}
body.template-search ol.searchResults li {
  border-bottom: 1px dotted #ccc;
}
body.template-search ol.searchResults li cite {
  font-size: 18px;
}
body.template-sitemap div.documentDescription {
  display: none;
}
body.template-sitemap ul.navTreeLevel0 li a {
  font-size: 28px;
}
body.template-sitemap ul.navTreeLevel1 li a,
body.template-sitemap ul.navTreeLevel2 li a {
  font-size: 24px;
  color: #004b93 !important;
}
body.template-sitemap ul.navTreeLevel2 {
  margin-top: 5px;
}
body.template-sitemap ul.navTreeLevel3 li a {
  font-size: 20px;
  color: #000 !important;
}
body.template-sitemap #portal-sitemap > li {
  border-top: 1px dotted #000;
}
#document-action-webcode {
  color: #000;
  display: inline-block;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 0;
  max-height: 32px;
}
body.portaltype-frontpage li#document-action-print {
  display: none;
}
div.image-caption {
  display: none;
}
body.template-seminarregionview article#content {
  font-size: 21px;
}
body.template-seminarregionview table.seminar_1 {
  margin-top: 15px;
  margin-bottom: 40px;
}
body.template-seminarregionview .quote-text {
  margin: 25px 0;
}
body.template-seminarregionview h1.documentFirstHeading {
  margin-bottom: -25px;
}
body.template-seminarregionview div.documentDescription {
  margin-top: 20px;
}
body.template-seminarregionview a.sem_switch {
  color: #004b93;
}
body.template-seminarregionview a.sem_switch:hover {
  color: #0095db;
}
.container_moderatoren {
  padding-top: 20px;
  grid-template-columns: 50%;
  grid-template-areas: "content sidebar";
}
.mod_auswahl {
  padding-top: 20px;
}
@media screen and (min-width: 520px) {
  .container_moderatoren {
    display: grid;
    padding-top: 20px;
    grid-template-columns: 50%;
    grid-template-areas: "content sidebar";
  }
}
body.template-seminarview article#content {
  font-size: 21px;
}
body.template-seminarview ul {
  list-style: outside none none;
}
body.template-seminarview #gda-logo {
  float: right;
}
body.template-seminarmail table {
  font-size: 21px;
}
body.template-seminaranmeldung #seminarformviewlet {
  font-size: 21px;
}
body.template-seminaranmeldung .zeam-form fieldset {
  background-color: #fff;
}
body.template-seminaranmeldung .zeam-form textarea,
body.template-seminaranmeldung .zeam-form input[type="text"] {
  background-color: #eee;
}
body.template-seminaranmeldung span.error {
  padding-left: 30px;
  font-weight: 400;
}
body.template-seminaranmeldung span.error:before {
  background-color: #ac493f;
  content: "×";
  font-size: 14px;
  font-weight: 400;
  margin-left: -30px;
  margin-right: 5px;
  display: inline-block;
  border-radius: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  top: -1px;
  position: relative;
}
img[usemap],
map area {
  outline: none;
}
a.btn-primary:hover {
  background-color: #004b93;
  color: white;
}
.myalbum {
  margin-top: 20px;
}
.myalbum-box {
  height: 410px;
  margin-top: 10px;
}
.myalbum-box a {
  display: table-cell;
  height: 400px;
  background-color: #f3f2f2;
  width: 390px;
  padding: 15px;
  text-decoration: none;
}
.myalbum-box a .myalbum-title {
  font-size: 24px;
  color: #d40f14;
  padding-top: 10px;
  padding-left: 15px;
  text-indent: -15px;
}
.myalbum-box a .myalbum-title:before {
  font-family: FontAwesome;
  content: '\f105';
  padding-right: 5px;
}
.myalbum-box a .myalbum-description {
  font-size: 16px;
  color: #000000;
  padding-top: 10px;
}
.myalbum-box a img {
  width: 400px;
}
.brakoheader {
  margin-top: 90px;
  text-indent: -25px;
  margin-left: 25px;
}
#archetypes-fieldname-activity_field,
#archetypes-fieldname-activity_place {
  display: none;
}
.pattern-relateditems-buttons {
  position: relative;
  float: right;
}
xa[data-linktype="external"]::after {
  xpadding-left: 10px;
  xfont-family: 'FontAwesome';
  xcontent: "\f08e";
}
.portletPLZSuche > .portletHeader {
  font-weight: normal;
}
@media print {
  a[href]:after {
    content: none !important;
  }
  html {
    transform: scale(0.8);
  }
  .portletContent,
  .navbar,
  .plone-nav,
  .documentActions,
  .mainnavigation-wrapper,
  .bgdirektLink,
  .header-category,
  .teaser-slide-subject {
    visibility: hidden;
    height: 0px;
    margin: 0px;
    padding: 0px;
  }
  .top-container {
    padding-top: 40px;
    margin-top: 0px;
  }
  .portletKontaktPortlet {
    padding: 0px;
  }
  .row:after {
    clear: none !important;
  }
  .row > div {
    float: none;
  }
  .plone-toolbar-left-expanded {
    padding-left: 0px;
  }
  .image-left {
    float: none !important;
  }
  #main-container > div {
    left: 0;
  }
  #parent-fieldname-text {
    margin-bottom: 0px;
  }
  #main-container > row {
    visibility: hidden;
  }
  #content {
    margin-bottom: 0px !important;
  }
  #portal-logo > img {
    margin-top: 0px;
  }
  #portal-header {
    height: 0px;
  }
  #search-input,
  #portal-globalnav-collapse,
  #portal-globalnav-wrapper,
  #mainnavigation-wrapper,
  #portal-footer-wrapper,
  #edit-zone {
    visibility: hidden;
    height: 0px;
    margin: 0px;
    padding: 0px;
  }
}
body.template-event_view #content ul > li {
  font-style: normal;
}
body.template-event_view div.event ul.details {
  float: left;
  box-shadow: none;
  list-style-type: none;
  padding: 0;
  margin-left: 0;
  color: #004b93;
  font-style: normal;
  margin-right: 55px;
}
body.template-event_view div.event ul.details li.event-calendar strong,
body.template-event_view div.event ul.details li.event-calendar img {
  display: none;
}
body.template-event_view div.event ul.details li.event-calendar a {
  color: #004b93;
}
body.template-event_view div.event ul.details li.event-calendar span:before {
  content: "\f133";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  font-size: 19px;
  margin-right: 5px;
}
body.template-event_view div.event ul.details li.event-date span.timezone {
  display: none;
}
body.template-event_view div.event ul.details abbr {
  cursor: text;
  border: none;
  text-decoration: none;
}
body.template-event_view div.event ul.details li.event-url a:after {
  font-family: 'FontAwesome';
  content: "\f08e";
  font-style: normal;
  padding-left: 8px;
}
body.template-event_view div.event ul.details li.event-url a {
  color: #004b93;
}
body.template-event_listing abbr {
  cursor: text;
  border: none;
  text-decoration: none;
}
body.template-event_listing a.event_ical img {
  display: none;
}
body.template-event_listing a.event_ical span:before {
  content: "\f133";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  font-size: 19px;
  margin-right: 5px;
}
body.template-event_listing div.cal_date {
  margin: 0;
  box-shadow: none;
  border: none;
}
body.template-event_listing div.cal_date img {
  height: 65px !important;
  margin-bottom: 18px !important;
}
body.template-event_listing div.location {
  display: inline;
}
body.template-event_listing div.documentByLine {
  font-size: 19px;
  color: #555;
  font-style: italic;
}
body.template-event_listing a.event_ical {
  font-size: 19px;
  color: #555;
  float: right;
}
body.template-event_listing a.event_url {
  font-size: 21px;
}
body.template-event_listing a.event_url:after {
  font-family: 'FontAwesome';
  content: "\f08e";
  font-style: normal;
  padding-left: 8px;
}
body.template-event_listing ul.mode_selector {
  display: none;
}
body.template-event_listing article.vevent {
  border-bottom: 1px dotted #555;
  padding-top: 25px;
  padding-bottom: 20px;
}
body.template-event_listing article.vevent h2,
body.template-event_listing article.vevent div,
body.template-event_listing article.vevent p,
body.template-event_listing article.vevent a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
body.template-event_listing article.vevent p.description {
  padding-top: 10px;
}
body.template-event_listing article.vevent div.cal_info {
  margin-left: 7.5em;
}
body.template-event_listing article.vevent:last-of-type {
  border: none;
}
body.template-newsitem_view div.leadImage {
  float: left;
}
body.template-newsitem_view .newsImageContainer {
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  margin-right: 25px;
  margin-top: 5px;
  width: 400px;
}
body.template-newsitem_view .newsImageContainer figcaption {
  white-space: normal;
  width: 400px;
  color: #004b93;
  font-style: italic;
  font-size: 17px;
}
span.externallink a {
  color: #d40f14;
  font-size: 21px;
  font-weight: normal;
}
span.externallink a:hover {
  text-decoration: underline;
}
span.externallink::after {
  color: #d40f14 !important;
}
span.quote-box {
  font-style: italic;
  font-size: 28px;
  color: #004b93;
  background: url(++theme++bgv/dist/img/quote.png) no-repeat;
  padding: 36px 0 0 70px;
}
.portletTextplusPortlet {
  font-size: 16px;
}
a.accordion-title {
  background: #f3f2f2 url(/++theme++bgv/dist/img/bg_leftnav_level1_hover.png) no-repeat right center;
  padding: 20px;
  color: #014C93;
  margin-top: 3px;
  font-size: 21px;
  display: block;
}
a.accordion-title.expanded {
  background: #f3f2f2 url(/++theme++bgv/dist/img/bg_leftnav_level1_active.png) no-repeat right center;
}
div.accordion-text {
  display: none;
  border: 1px solid #f3f2f2;
  padding: 20px;
  font-size: 21px;
  margin-top: -10px;
}
body#tinymce div.accordion-text {
  display: block;
}
li.tabview-title {
  float: left;
  display: block;
  background-color: #e3e3e3;
  color: #222;
  padding: 15px;
  margin-right: 4px;
}
li.tabview-title {
  margin-bottom: 4px;
}
li.tabview-title:first-of-type {
  xmargin-left: -40px;
}
li.tabview-title:hover {
  background-color: #f3f2f2;
}
li.tabview-title.active {
  background-color: #004b93;
  color: white;
}
li.tabview-title:before {
  content: none !important;
}
div.tabview-text.active {
  display: block;
}
div.tabview-text {
  clear: both;
  background-color: #f3f2f2;
  display: none;
}
.tab-pane ul {
  list-style: none;
}
.tab-pane ul > li:before {
  position: relative;
  top: -2px;
  left: -15px;
  z-index: 1;
  font-family: FontAwesome;
  content: '\f111';
  color: #014C93;
  font-size: 10px;
  font-style: normal;
  margin-left: -10px;
  line-height: 0;
}
div.captioned {
  font-size: 17px;
  font-style: italic;
  color: #004b93;
  line-height: 25px;
}
body.template-webcontactform input#form-action-absenden:hover {
  background: #004b93;
  color: white;
}
div[id^="archetypes-fieldname-schlagworte"] {
  margin-bottom: 0px;
}
div[id^="formfield-form-widgets-IVerschlagwortung-schlagworte"] {
  margin-bottom: 0px;
}
body.template-unterrubrik [id^="column-content-portlets-portlet"] div section section p img {
  width: 100%;
}
body.template-unterrubrik h3,
body.template-unterrubrik h3.quote.claim,
body.template-unterrubrik #content ul > li,
body.template-unterrubrik #relatedItemBox header {
  font-style: normal;
}
body.template-unterrubrik .dyn-content ul li a {
  font-size: 21px;
}
body.template-unterrubrik #verschlag_u_h {
  margin-bottom: 30px;
}
body.template-unterrubrik .portletHeader {
  font: italic;
  font-size: 18px;
  color: #555;
}
body.template-unterrubrik .verschlag-content-portlets {
  margin-bottom: 30px;
}
body.template-unterrubrik .dyn-content {
  background-color: white;
  padding-top: 15px;
  text-align: center;
}
body.template-unterrubrik .dyn-content ul li a {
  background-color: white;
}
body.template-unterrubrik .dyn-title {
  font-style: italic;
  font-size: 28px;
  text-align: center;
}
body.template-unterrubrik .dyn-data-unterrub {
  margin-top: 15px;
  margin-bottom: 30px;
}
body.template-unterrubrik .dyn-content ul {
  padding: 0px;
  margin: 0px;
}
body.template-unterrubrik .dyn-content ul > li {
  padding: 0px !important;
  margin: 0px;
}
body.template-unterrubrik .dyn-content ul li a:before {
  content: "\f105";
  font-family: 'FontAwesome';
  color: #000;
  padding-right: 8px;
}
body.template-unterrubrik .dyn-content ul {
  list-style-type: none;
}
body.template-unterrubrik .dyn-content ul li a:hover:before {
  color: #004b93;
}
body.template-unterrubrik .dyn-content ul li a:hover {
  color: #004b93;
}
body.template-unterrubrik .dyn .dyn-content li a {
  color: #000;
}
body.template-unterrubrik .verschlag-card-title {
  font-size: 21px;
  color: #000;
}
body.template-unterrubrik .verschlag-card-title:after {
  font-size: 21px;
  padding-left: 8px;
  content: "\f105";
  font-family: 'FontAwesome';
  color: #000;
}
body.template-unterrubrik .verschlag-card-title:hover {
  color: #004b93;
}
body.template-unterrubrik .balken_black {
  font-size: 5px;
  background: #222;
  padding-right: 100%;
}
body.template-unterrubrik .card-desc {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 35px;
}
body.template-unterrubrik #medien:before {
  content: url("/++theme++bgv/dist/img/Icon-medien.png") '\A';
  white-space: pre;
  max-height: 83px;
  max-width: 83px;
}
body.template-unterrubrik #seminare:before {
  content: url("/++theme++bgv/dist/img/Icon-seminare.png") '\A';
  white-space: pre;
  max-height: 83px;
  max-width: 83px;
}
body.template-unterrubrik #regelwerk:before {
  content: url("/++theme++bgv/dist/img/Icon-regelwerk.png") '\A';
  white-space: pre;
  max-height: 83px;
  max-width: 83px;
}
body.template-unterrubrik .mehr-link-teaser-red {
  font-size: 24px;
}
body.template-unterrubrik .mehr-link-teaser-red:hover {
  font-size: 24px;
  color: #000;
}
body.template-unterrubrik .mehr-link-teaser-red:before {
  font-size: 24px;
}
body.template-unterrubrik .mehr-link-teaser-red:hover:before {
  font-size: 24px;
  color: #000;
}
body.template-unterrubrik #content p {
  font-size: 16px;
}
body.template-unterrubrik .mobile-row,
body.template-unterrubrik #content-portlets {
  padding-left: 24px;
  padding-right: 24px;
}
body.template-unterrubrik .verschlag-content-portlets .portlet .portletContent p:last-child {
  line-height: 22px !important;
}
body.template-unterrubrik #verschlag_u_h p {
  font-size: 21px;
}
body.template-unterrubrik #column-content-portlets-portlet-1 {
  padding-top: 15px;
  padding-bottom: 20px;
}
body.template-unterrubrik #column-content-portlets-portlet-2 {
  padding-top: 15px;
  padding-bottom: 20px;
}
body.template-unterrubrik #column-content-portlets-portlet-3 {
  padding-top: 15px;
  padding-bottom: 20px;
}
body.template-unterrubrik .contact-name {
  margin: 0px;
}
body.template-unterrubrik .contact-phone {
  margin: 0px;
}
body.template-unterrubrik .contact-mail {
  margin: 0px;
}
body.template-unterrubrik .card-img .card-img-link a img {
  width: 100%;
}
body.template-unterrubrik .contact-phone abbr i {
  padding-right: 10px;
}
body.template-unterrubrik .contact-mail abbr i {
  padding-right: 10px;
}
body.template-unterrubrik #dyn_regelwerk .dyn-title:first-child {
  padding-top: 10px;
}
body.template-unterrubrik #verschlag_u_h #parent-fieldname-text a {
  font-size: 21px;
}
@media (min-width: 992px) {
  body.template-unterrubrik #column-content-portlets-portlet-3 {
    padding-right: 0px;
  }
  body.template-unterrubrik #column-content-portlets-portlet-1 {
    padding-left: 0px;
  }
  body.template-unterrubrik #column-content-portlets-portlet-1 div section section p .image-inline {
    padding-right: 9px;
  }
  body.template-unterrubrik #column-content-portlets-portlet-3 div section section p .image-inline {
    padding-left: 9px;
  }
  body.template-unterrubrik #column-content-portlets-portlet-2 {
    padding-left: 17px;
    padding-right: 17px;
  }
}
@media (min-width: 480px) {
  body.template-unterrubrik .mobile-row,
  body.template-unterrubrik #content-portlets {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 768px) {
  body.template-unterrubrik .mobile-row,
  body.template-unterrubrik #content-portlets {
    padding-left: 24px;
    padding-right: 25px;
  }
}
@media (min-width: 992px) {
  body.template-unterrubrik #regelwerk {
    margin-right: 8px;
    margin-left: -27px;
  }
  body.template-unterrubrik #medien {
    margin-left: -9px;
    margin-right: -9px;
  }
  body.template-unterrubrik #seminare {
    margin-left: 8px;
    margin-right: -25px;
  }
  body.template-unterrubrik #column-content-portlets-portlet-3 div section header,
  body.template-unterrubrik #column-content-portlets-portlet-3 div section section h4,
  body.template-unterrubrik #column-content-portlets-portlet-3 div section section p:last-child {
    padding-left: 9px;
  }
  body.template-unterrubrik #regelwerk ~ .dyn-content {
    margin-left: -26px;
    margin-right: 9px;
  }
  body.template-unterrubrik #seminare ~ .dyn-content {
    margin-right: -25px;
    margin-left: 9px;
  }
  body.template-unterrubrik #medien ~ .dyn-content {
    margin-right: -9px;
    margin-left: -9px;
  }
}
@media (max-width: 992px) {
  body.template-unterrubrik .verschlag-content-portlets {
    margin-left: 0px !important;
    margin-right: 0px !important;
    display: block !important;
  }
  body.template-unterrubrik #content-portlets {
    padding-left: 0px;
    padding-right: 0px;
  }
}
body.template-inhaltsseite #dyn_regelwerk,
body.template-vertiefungsseite #dyn_regelwerk {
  border-bottom: 1px dotted #000;
  padding-bottom: 25px;
}
body.template-inhaltsseite #dyn_regelwerk .dyn-title:first-child,
body.template-vertiefungsseite #dyn_regelwerk .dyn-title:first-child {
  padding-top: 10px;
}
body.template-inhaltsseite #dyn_regelwerk .dyn-content ul li,
body.template-vertiefungsseite #dyn_regelwerk .dyn-content ul li,
body.template-inhaltsseite #dyn_medien .dyn-content ul li,
body.template-vertiefungsseite #dyn_medien .dyn-content ul li,
body.template-inhaltsseite #dyn_seminare .dyn-content ul li,
body.template-vertiefungsseite #dyn_seminare .dyn-content ul li {
  text-indent: -15px;
}
body.template-inhaltsseite #dyn_medien,
body.template-vertiefungsseite #dyn_medien {
  border-bottom: 1px dotted #000;
  padding-bottom: 25px;
}
body.template-inhaltsseite .dyn-content ul,
body.template-vertiefungsseite .dyn-content ul {
  padding-left: 93px;
}
body.template-inhaltsseite .dyn-content ul li a,
body.template-vertiefungsseite .dyn-content ul li a {
  font-size: 21px;
}
body.template-inhaltsseite .twocolumns,
body.template-vertiefungsseite .twocolumns {
  padding-top: 20px;
  padding-bottom: 20px;
}
body.template-inhaltsseite .twocolumns:last-child,
body.template-vertiefungsseite .twocolumns:last-child {
  padding-bottom: 20px;
}
body.template-inhaltsseite .twocolumns-1,
body.template-vertiefungsseite .twocolumns-1 {
  width: max-content;
}
body.template-inhaltsseite .dyn-content,
body.template-vertiefungsseite .dyn-content {
  background-color: white;
}
body.template-inhaltsseite .dyn-content ul li a,
body.template-vertiefungsseite .dyn-content ul li a {
  background-color: white;
  list-style-type: none;
  color: #222;
  font-style: normal;
}
body.template-inhaltsseite .dyn-content ul li a:before,
body.template-vertiefungsseite .dyn-content ul li a:before {
  content: "\f105";
  font-family: 'FontAwesome';
  color: #222;
  padding-right: 8px;
}
body.template-inhaltsseite .dyn-content ul,
body.template-vertiefungsseite .dyn-content ul {
  background-color: white;
  list-style-type: none;
  line-height: 0px;
  margin-top: 0;
  margin-bottom: 0;
}
body.template-inhaltsseite .dyn-content ul li,
body.template-vertiefungsseite .dyn-content ul li {
  padding-bottom: 0px !important;
}
body.template-inhaltsseite .dyn-title,
body.template-vertiefungsseite .dyn-title {
  font-size: 28px;
  font-style: italic;
  padding-bottom: 10px;
  padding-top: 20px;
}
body.template-inhaltsseite #content-portlets,
body.template-vertiefungsseite #content-portlets {
  background-color: white;
}
body.template-inhaltsseite .blauer-pfeil-hoch,
body.template-vertiefungsseite .blauer-pfeil-hoch {
  background: url("/++theme++bgv/dist/img/blauer-Pfeil-hoch.png");
  margin: 0px auto;
  display: block;
  background-repeat: no-repeat;
  height: 32px;
  width: 32px;
}
body.template-inhaltsseite .blauer-pfeil-runter,
body.template-vertiefungsseite .blauer-pfeil-runter {
  background: url("/++theme++bgv/dist/img/blauer-Pfeil-runter.png");
  margin: 0px auto;
  display: block;
  background-repeat: no-repeat;
  height: 32px;
  width: 32px;
}
body.template-inhaltsseite .img-dotted,
body.template-vertiefungsseite .img-dotted {
  margin: 0px auto;
  display: block;
  margin-top: 20px;
}
body.template-inhaltsseite .portlet .image-inline,
body.template-vertiefungsseite .portlet .image-inline {
  width: 400px;
  margin-right: 5px;
  margin-left: 0px;
}
body.template-inhaltsseite .mehr-infos-a:before,
body.template-vertiefungsseite .mehr-infos-a:before {
  content: "\f105";
  font-family: 'FontAwesome';
  color: #d40f14;
  padding-right: 8px;
  font-size: 21px;
}
body.template-inhaltsseite #content-portlets,
body.template-vertiefungsseite #content-portlets {
  margin-top: 0px;
}
body.template-inhaltsseite .icon-dyn,
body.template-vertiefungsseite .icon-dyn {
  width: 65px;
  height: 65px;
  margin-right: 10px;
}
body.template-inhaltsseite #content-portlets h2,
body.template-vertiefungsseite #content-portlets h2 {
  margin-top: 0px;
  font-style: italic;
}
body.template-inhaltsseite li.regelwerk_toggle_group:before,
body.template-vertiefungsseite li.regelwerk_toggle_group:before {
  content: none !important;
}
body.template-inhaltsseite li.medien_toggle_group:before,
body.template-vertiefungsseite li.medien_toggle_group:before {
  content: none !important;
}
body.template-inhaltsseite li.seminare_toggle_group:before,
body.template-vertiefungsseite li.seminare_toggle_group:before {
  content: none !important;
}
@media only screen and (max-width: 985px) {
  body.template-inhaltsseite .image-inline,
  body.template-vertiefungsseite .image-inline {
    padding-bottom: 20px;
  }
}
body.template-inhaltsseite .medien-link-div,
body.template-vertiefungsseite .medien-link-div {
  max-width: 80%;
  padding-top: 35px;
}
body.template-inhaltsseite .medien-link,
body.template-vertiefungsseite .medien-link {
  padding: 25px 30px 25px 30px;
  background: #555555;
  color: #fff;
  position: absolute;
  right: 0;
}
body.template-inhaltsseite .medien-link:after,
body.template-vertiefungsseite .medien-link:after {
  content: "\f105";
  font-family: 'FontAwesome';
  color: #fff;
  padding-left: 8px;
}
body.template-inhaltsseite .medien-link:hover,
body.template-vertiefungsseite .medien-link:hover {
  background: #004b93;
}
body.template-inhaltsseite .twocolumns .row .col-md-5,
body.template-vertiefungsseite .twocolumns .row .col-md-5 {
  padding-right: 0px;
}
body.template-inhaltsseite .twocolumns div,
body.template-vertiefungsseite .twocolumns div {
  font-size: 21px !important;
}
body.template-inhaltsseite .ms-grid,
body.template-vertiefungsseite .ms-grid {
  display: -ms-grid;
  -ms-grid-columns: 1fr 0px 0px 0px;
}
body.template-inhaltsseite .viewlet-verschlagwortung .teaserviewlet-img .image-inline,
body.template-vertiefungsseite .viewlet-verschlagwortung .teaserviewlet-img .image-inline {
  padding-left: 0px;
  padding-right: 0px;
}
body.template-inhaltsseite #viewlet-below-content-body,
body.template-vertiefungsseite #viewlet-below-content-body {
  margin-top: 30px;
}
@media (max-width: 768px) {
  body.template-inhaltsseite #main-container div .row,
  body.template-vertiefungsseite #main-container div .row {
    margin-left: 0px;
    margin-right: 0px;
  }
  body.template-inhaltsseite #main-container .col-md-8,
  body.template-vertiefungsseite #main-container .col-md-8 {
    padding-left: 0px;
    padding-right: 0px;
  }
  body.template-inhaltsseite .twocolumns .row .col-md-4,
  body.template-vertiefungsseite .twocolumns .row .col-md-4 {
    padding-left: 0px !important;
  }
}
@media (min-width: 1368px) {
  body.template-inhaltsseite .twocolumns-1 .image-inline,
  body.template-vertiefungsseite .twocolumns-1 .image-inline {
    max-width: 350px;
  }
}
@media (max-width: 1368px) {
  body.template-inhaltsseite .twocolumns-2,
  body.template-vertiefungsseite .twocolumns-2 {
    width: 100%;
    padding-top: 10px;
  }
  body.template-inhaltsseite .twocolumns-1,
  body.template-vertiefungsseite .twocolumns-1 {
    width: 100%;
  }
  body.template-inhaltsseite .twocolumns-1 img,
  body.template-vertiefungsseite .twocolumns-1 img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  body.template-inhaltsseite .twocolumns-2,
  body.template-vertiefungsseite .twocolumns-2,
  body.template-inhaltsseite .twocolumns-1,
  body.template-vertiefungsseite .twocolumns-1 {
    padding-left: 0px;
  }
  body.template-inhaltsseite .viewlet-verschlagwortung .objectlists,
  body.template-vertiefungsseite .viewlet-verschlagwortung .objectlists {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (max-width: 992px) {
  body.template-inhaltsseite .verschlag-content-portlets,
  body.template-vertiefungsseite .verschlag-content-portlets {
    margin-left: 0px !important;
    margin-right: 0px !important;
    display: block !important;
  }
  body.template-inhaltsseite .twocolumns-1 .image-inline,
  body.template-vertiefungsseite .twocolumns-1 .image-inline {
    padding-bottom: 0px;
  }
}
.viewlet-verschlagwortung .teaserviewlet-img {
  padding-bottom: 30px;
}
.viewlet-verschlagwortung .teaserviewlet-artikel-link {
  font-size: 21px;
}
.viewlet-verschlagwortung .teaserviewlet-artikel-link:before {
  content: "\f105";
  font-family: 'FontAwesome';
  color: #d40f14;
  padding-right: 8px;
  font-size: 21px;
}
.viewlet-verschlagwortung .teaserviewlet-artikel-link:hover:before {
  color: #222222;
}
.viewlet-verschlagwortung .teaserviewlet-artikel-link:hover {
  color: #222222;
}
.viewlet-verschlagwortung .kontaktviewlet-header {
  color: #d40f14;
}
.viewlet-verschlagwortung .col-md-4 teaserviewlet-img > div {
  margin-top: -8px;
}
.viewlet-verschlagwortung .teaserviewlet-header {
  font-size: 28px;
  font-style: italic;
  margin-top: 20px;
}
.viewlet-verschlagwortung .teaserviewlet-artikel-p {
  font-size: 16px !important;
  line-height: 22px !important;
}
.viewlet-verschlagwortung .teaserviewlet-artikel-p:before {
  font-size: 16px !important;
}
.viewlet-verschlagwortung .teaserviewlet-img .image-inline {
  padding-bottom: 10px;
}
.viewlet-verschlagwortung .teaserviewlet-img {
  padding-bottom: 0px;
}
.viewlet-verschlagwortung .teaserviewlet-header {
  font-style: italic !important;
}
.viewlet-verschlagwortung .viewlet-verschlagwortung {
  padding-top: 50px;
}
.viewlet-verschlagwortung .teaserviewlet-header {
  padding-top: 40px;
}
.viewlet-verschlagwortung .kontaktviewlet-header {
  padding-top: 40px;
}
.viewlet-verschlagwortung li.regelwerk_toggle_group:before {
  content: none !important;
}
.viewlet-verschlagwortung li.medien_toggle_group:before {
  content: none !important;
}
.viewlet-verschlagwortung li.seminare_toggle_group:before {
  content: none !important;
}
@media (max-width: 992px) {
  .viewlet-verschlagwortung .teaserviewlet-img img {
    width: 100%;
  }
  .viewlet-verschlagwortung #relatedItemBox .row {
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .viewlet-verschlagwortung .teaserviewlet-img {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.viewlet-verschlagwortung .teaserviewlet-header {
  margin-top: 0px;
}
@media (min-width: 992px) {
  .viewlet-verschlagwortung #relatedItemBox .row .col-md-8 {
    padding-left: 0px;
  }
  .viewlet-verschlagwortung .image-inline {
    padding-bottom: 20px !important;
  }
}
@media (max-width: 768px) {
  .viewlet-verschlagwortung .teaserviewlet-img .image-inline {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 1368px) and (min-width: 768px) {
  .viewlet-verschlagwortung .teaserviewlet-img {
    margin-right: 0px !important;
  }
}
.lsb-image-title {
  font-family: 'Fira Sans', Helvetica, Arial, sans-serif !important;
}
.lightspeed-box img.lsb-image.lsb-image-loaded {
  margin: 0px;
}
.lsb-close {
  width: 30px !important;
  height: 30px !important;
  top: 22px !important;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1NTU7b3BhY2l0eTowLjg7fS5jbHMtMntmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5FbGVtZW50IDE8L3RpdGxlPjxnIGlkPSJFYmVuZV8yIiBkYXRhLW5hbWU9IkViZW5lIDIiPjxnIGlkPSJFYmVuZV8xLTIiIGRhdGEtbmFtZT0iRWJlbmUgMSI+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iMzAiIGhlaWdodD0iMzAiLz48L2c+PGcgaWQ9IkViZW5lXzItMiIgZGF0YS1uYW1lPSJFYmVuZSAyIj48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xOC4zOCwxNWw1LjA3LTUuMDdhMS41OSwxLjU5LDAsMCwwLDAtMi4yNUwyMi4zMiw2LjU1YTEuNTksMS41OSwwLDAsMC0yLjI1LDBMMTUsMTEuNjIsOS45Myw2LjU1YTEuNTksMS41OSwwLDAsMC0yLjI1LDBMNi41NSw3LjY4YTEuNTksMS41OSwwLDAsMCwwLDIuMjVMMTEuNjIsMTUsNi41NSwyMC4wN2ExLjU5LDEuNTksMCwwLDAsMCwyLjI1bDEuMTMsMS4xM2ExLjU5LDEuNTksMCwwLDAsMi4yNSwwTDE1LDE4LjM4bDUuMDcsNS4wN2ExLjU5LDEuNTksMCwwLDAsMi4yNSwwbDEuMTMtMS4xM2ExLjU5LDEuNTksMCwwLDAsMC0yLjI1WiIvPjwvZz48L2c+PC9zdmc+);
}
.lsb-close:hover {
  width: 30px !important;
  height: 30px !important;
  top: 22px !important;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23004994;opacity:0.8;%7D.cls-2%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EElement 2%3C/title%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Crect class='cls-1' width='30' height='30'/%3E%3C/g%3E%3Cg id='Ebene_2-2' data-name='Ebene 2'%3E%3Cpath class='cls-2' d='M18.38,15l5.07-5.07a1.59,1.59,0,0,0,0-2.25L22.32,6.55a1.59,1.59,0,0,0-2.25,0L15,11.62,9.93,6.55a1.59,1.59,0,0,0-2.25,0L6.55,7.68a1.59,1.59,0,0,0,0,2.25L11.62,15,6.55,20.07a1.59,1.59,0,0,0,0,2.25l1.13,1.13a1.59,1.59,0,0,0,2.25,0L15,18.38l5.07,5.07a1.59,1.59,0,0,0,2.25,0l1.13-1.13a1.59,1.59,0,0,0,0-2.25Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lsb-download:hover {
  width: 38px !important;
  height: 38px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 38'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23004994;opacity:0.8;%7D.cls-2%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EElement 3%3C/title%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Crect class='cls-1' width='38' height='38'/%3E%3Cpath class='cls-2' d='M17.28,8h3.44a1,1,0,0,1,1,1v7.22h3.77a.86.86,0,0,1,.6,1.47l-6.53,6.54a.83.83,0,0,1-1.17,0l-6.55-6.54a.86.86,0,0,1,.61-1.47h3.77V9A1,1,0,0,1,17.28,8ZM30,24.16V29a1,1,0,0,1-1,1H9a1,1,0,0,1-1-1V24.16a1,1,0,0,1,1-1h6.31l2.1,2.1a2.21,2.21,0,0,0,3.12,0l2.11-2.1H29A1,1,0,0,1,30,24.16Zm-5.33,3.78a.86.86,0,1,0-.86.86A.86.86,0,0,0,24.67,27.94Zm2.75,0a.86.86,0,1,0-.86.86A.86.86,0,0,0,27.42,27.94Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lsb-download {
  width: 38px !important;
  height: 38px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 38'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23555;opacity:0.8;%7D.cls-2%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EElement 4%3C/title%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Crect class='cls-1' width='38' height='38'/%3E%3Cpath class='cls-2' d='M17.28,8h3.44a1,1,0,0,1,1,1v7.22h3.77a.86.86,0,0,1,.6,1.47l-6.53,6.54a.83.83,0,0,1-1.17,0l-6.55-6.54a.86.86,0,0,1,.61-1.47h3.77V9A1,1,0,0,1,17.28,8ZM30,24.16V29a1,1,0,0,1-1,1H9a1,1,0,0,1-1-1V24.16a1,1,0,0,1,1-1h6.31l2.1,2.1a2.21,2.21,0,0,0,3.12,0l2.11-2.1H29A1,1,0,0,1,30,24.16Zm-5.33,3.78a.86.86,0,1,0-.86.86A.86.86,0,0,0,24.67,27.94Zm2.75,0a.86.86,0,1,0-.86.86A.86.86,0,0,0,27.42,27.94Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lsb-control-panel {
  background: none !important;
}
.lsb-next {
  width: 38px !important;
  height: 38px !important;
  top: 50% !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 53.13 53.13'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23555;opacity:0.8;%7D.cls-2%7Bfill:none;stroke:%23fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:5px;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EElement 5%3C/title%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Ccircle class='cls-1' cx='26.56' cy='26.56' r='26.56'/%3E%3Cpolyline class='cls-2' points='19.5 11.33 33.62 26.19 19.5 41.79'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lsb-next:hover {
  width: 38px !important;
  height: 38px !important;
  top: 50% !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 53.13 53.13'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%230095db;opacity:0.8;%7D.cls-2%7Bfill:none;stroke:%23fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:5px;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EElement 6%3C/title%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Ccircle class='cls-1' cx='26.56' cy='26.56' r='26.56'/%3E%3Cpolyline class='cls-2' points='19.5 11.33 33.62 26.19 19.5 41.79'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lsb-prev {
  width: 38px !important;
  height: 38px !important;
  top: 50% !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 53.13 53.13'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23555;opacity:0.8;%7D.cls-2%7Bfill:none;stroke:%23fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:5px;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EElement 4%3C/title%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Ccircle class='cls-1' cx='26.56' cy='26.56' r='26.56'/%3E%3Cpolyline class='cls-2' points='33.62 11.33 19.5 26.19 33.62 41.79'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lsb-prev:hover {
  width: 38px !important;
  height: 38px !important;
  top: 50% !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 53.13 53.13'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%230095db;opacity:0.8;%7D.cls-2%7Bfill:none;stroke:%23fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:5px;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EElement 3%3C/title%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Ccircle class='cls-1' cx='26.56' cy='26.56' r='26.56'/%3E%3Cpolyline class='cls-2' points='33.62 11.33 19.5 26.19 33.62 41.79'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lsb-control-panel {
  opacity: 1 !important;
}
.lsb-panel-button {
  margin: 0px !important;
}
@media only screen and (max-width: 1980px) {
  .lsb-header {
    top: 87% !important;
  }
}
@media only screen and (max-width: 1280px) {
  .lsb-header {
    top: 85% !important;
  }
}
@media only screen and (max-width: 540px) {
  .lsb-header {
    top: 75% !important;
  }
}
@media only screen and (max-width: 380px) {
  .lsb-header {
    top: 62% !important;
  }
}
.plus-lsb:before {
  content: "\f055";
}
.plus-lsb {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 14px;
  font-size: inherit;
  position: relative;
  right: 24px;
  bottom: 4px;
  vertical-align: bottom;
  color: #d40f14;
  cursor: pointer;
}
h6 {
  font-size: 34px;
  font-style: italic;
  margin-top: 0px;
}
#tinymce .twocolumns-1 .col-md-6 {
  border: 1px dotted #ccc !important;
}
#tinymce .twocolumns-2 .col-md-6 {
  border: 1px dotted #ccc !important;
}
#tinymce .twocolumns .col-md-6 {
  border: 1px dotted #ccc !important;
}
#akkordeon-heading {
  color: #333;
  background-color: #f3f2f2;
  border-color: #f3f2f2;
  padding: 10px 15px;
  margin-top: 3px;
}
h4#akkordeon-title {
  margin: 0px;
}
#akkordeon-title > a {
  display: block;
  font-size: 21px;
  line-height: 30px;
  margin: 0 !important;
  padding: 8px 60px 8px 8px;
  color: #014C93;
  text-decoration: none;
  cursor: pointer;
}
#akkordeon-title > a.akkordeon-collapsed {
  background: #f3f2f2 url("/++theme++bgv/dist/img/bg_leftnav_level1_hover.png") no-repeat right center;
}
#akkordeon-title > a.akkordeon-expanded {
  background: #f3f2f2 url("/++theme++bgv/dist/img/bg_leftnav_level1_active.png") no-repeat right center;
}
div#akkordeon-body {
  display: none;
  padding: 15px;
  border: 1px solid #f3f2f2;
}
body#tinymce div#akkordeon-body {
  display: block !important;
}
.portlet:not(.portletNavigationTree) {
  margin-bottom: 25px;
}
div.event ul.event li.event-category {
  display: none;
}
a.slide-read-more::after {
  padding-left: 5px;
}
.video-responsive {
  overflow: hidden;
  padding-bottom: 53.25%;
  position: relative;
  height: 0;
  margin-bottom: 18px;
}
.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  xmax-width: 640px;
  position: absolute;
}
.cc_banner-wrapper {
  display: none;
}
@media (max-width: 769px) {
  #content-header .navbar {
    min-height: 30px;
  }
  #content-header .navbar .navbar-nav {
    display: flex;
    justify-content: space-between;
  }
  #portal-logo {
    top: 0;
  }
  li#document-action-leichtesprache > a:before,
  li#document-action-gaeberdensprache > a:before {
    background: none;
    left: 0;
  }
  .navbar-collapse-sitemap {
    padding: 20px 0;
  }
  .navbar-collapse-sitemap .col-xs-8 {
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-search-header button:active,
  .navbar-search-header button:hover {
    color: #0095db;
    background-color: transparent;
    border-color: #0095db;
  }
  .navbar-form {
    margin: 20px 0;
  }
  .front-page-section-top {
    margin-bottom: 0;
  }
  .media-block .col-md-8 {
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
  }
  .event-box .col-md-12 {
    margin-left: 0;
    margin-right: 0;
  }
  .event-descr {
    margin-bottom: 10px;
  }
  .documentActions ul {
    float: none;
    display: inline;
  }
  .documentActions ul > li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  #portal-footer-wrapper {
    text-align: left;
  }
  .footer-action .col-xs-12 {
    padding-left: 15px;
  }
  .navbar-footer,
  .footer-newsletter {
    list-style-type: none;
    padding-left: 0;
  }
  h2.row-headline-bottom {
    height: 20px;
  }
  .header-category,
  .header-content {
    margin-top: 0;
  }
  .front-page-section-top > div:nth-child(1) {
    padding-left: 15px;
  }
  #portal-column-one .portletNavigationTree {
    display: none;
  }
  li#karriere,
  li#die-bg-verkehr,
  li#presse,
  li#redaktion,
  li#test,
  li#document-action-review_list {
    display: none;
  }
  div.bgdirektLinkMobile img {
    max-height: 16px;
  }
}
@media only screen and (max-width: 40em) {
  h2.row-headline {
    background: #555555;
    margin-top: 0;
    margin-bottom: 0;
  }
  h2.row-headline.grey > span > span {
    background-color: transparent;
    color: white;
    left: 20px;
    top: -14px;
    font-size: 4.38596vw;
  }
  .top-container {
    margin-top: 0;
  }
  .col-md-3,
  .col-md-4,
  .col-md-12 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .bgdirektLink a {
    float: right;
    position: relative;
    top: -127px;
    right: -38px;
  }
}
.redcircle h3 {
  color: #fff;
}
@media only screen and (max-width: 992px) {
  .redcircle {
    color: #000000;
    height: 100%;
    width: 100%;
    margin-bottom: 10px;
  }
  .redcircle h3 {
    color: #d40f14;
    font-size: 28px;
    padding-top: 15px;
    padding-bottom: 0;
  }
  .redcircle p {
    line-height: 24px !important;
    font-size: 16px;
    margin: 0 0 10px;
    padding-left: 0;
    width: 100%;
  }
  .redcircle span.linkinternal-white::after {
    font-family: 'Glyphicons Halflings';
    content: "\e080";
    color: #d40f14;
    font-size: 10px;
  }
  .redcircle span.linkinternal-white a {
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
  }
  .redcircle span.linkinternal-white a:hover {
    color: #d40f14;
  }
}
#content-portlets {
  display: inline-block;
  background-color: #f3f2f2;
  margin-left: -25px;
  margin-right: -25px;
}
#content-portlets .portletHeader,
#content-portlets .portletHeader a {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 18px;
  color: #555555;
  font-style: italic;
}
#content-portlets .portlet {
  padding: 0;
}
.dyn .dyn-content {
  background-color: #9acee6;
  font-size: 14px;
}
.dyn .dyn-content li a {
  background-color: #9acee6;
  font-size: 14px;
}
/*# sourceMappingURL=++theme++bgv/less/bgv-compiled.css.map */