@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Noto+Serif:ital,wght@0,700;1,400;1,700&display=swap"); /* Based on https://templates.mailchimp.com/development/css/reset-styles/ by Mailchimp */
body, .body {
  margin: 0;
  Margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: Arial, sans-serif;
  line-height: 24px;
  font-weight: normal;
  font-size: 16px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  border: 0 none;
  height: auto;
  line-height: 100%;
  outline: none;
  text-decoration: none;
}

a img {
  border: 0 none;
}

table:not([class^=s-]) {
  font-family: Arial, sans-serif;
  mso-table-lspace: 0pt;
  mso-table-rspace: 0pt;
}

table:not([class^=s-]) {
  border-spacing: 0px;
  border-collapse: collapse;
}
table:not([class^=s-]) td {
  border-spacing: 0px;
  border-collapse: collapse;
}

table[align=center] {
  margin: 0 auto;
}

th,
td,
p {
  text-align: left;
  line-height: 24px;
  font-size: 16px;
  margin: 0;
}

.img-fluid {
  height: auto;
  width: 100%;
  max-width: 100%;
}

.table {
  width: 100%;
  max-width: 100%;
  background-color: #ffffff;
}
.table > thead > tr > th {
  text-align: left;
}
.table > thead > tr > th, .table > tbody > tr > td {
  padding: 12px;
  vertical-align: top;
  border-top: 1px solid #e9ecef;
}
.table > thead > th {
  vertical-align: bottom;
  border-bottom: 2px solid #e9ecef;
}

.table-unstyled {
  width: 100%;
  max-width: 100%;
  background-color: transparent;
}
.table-unstyled td, .table-unstyled th {
  border-top: 0;
  border-bottom: 0;
  text-align: left;
}

.table-sm > thead > tr > th, .table-sm > tbody > tr > td {
  padding: 4.8px;
}

.table-bordered {
  border: 1px solid #e9ecef;
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > td {
  border: 1px solid #e9ecef;
}
.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f2f2f2;
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #aacef9;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #f3f4f5;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #afecbd;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #aacef9;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #fff4d3;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #a7e9f4;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: white;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #96a0aa;
}

.thead-inverse > thead > tr > th {
  color: #ffffff;
  background-color: #212529;
}

.thead-default > thead > tr > th {
  color: #495057;
  background-color: #e9ecef;
}

.table-inverse {
  color: #ffffff;
  background-color: #212529;
}
.table-inverse > thead > tr > th, .table-inverse > tbody > tr > td {
  border-color: #32383e;
}
.table-inverse.table-bordered {
  border: 0;
}
.table-inverse.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #2c3034;
}

/**
	Mixin zum Erstellen eines "zentrierten" Layouts. Es wird alles zentriert: 
	- Das TitlePane
	- das MasterLayout

	Responsiveness: 
	- Wenn der Bildschrim groesser ist, wird auf einer kleineren Flaeche gerendert,
	damit es zentriert bleibt. 
	- Bei kleinen Bildschrirmen, wird die ganze Flaeche verwendet.
*/
/**
Mixin fuer Bootstrap ListView mit CSS Class columns
@see _kernel.module.window.lv Line 52
*/
.abbreviate.abbreviate-active.abbreviate-5 {
  display: block; /* Fallback for non-webkit */
  font-size: 1rem;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
}
@supports (-moz-appearance: auto) {
  .abbreviate.abbreviate-active.abbreviate-5 {
    height: 7.5rem; /* Fallback for non-webkit */
  }
}
@supports (display: -webkit-box) {
  .abbreviate.abbreviate-active.abbreviate-5 {
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
}
.abbreviate.abbreviate-active.abbreviate-10 {
  display: block; /* Fallback for non-webkit */
  font-size: 1rem;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
}
@supports (-moz-appearance: auto) {
  .abbreviate.abbreviate-active.abbreviate-10 {
    height: 15rem; /* Fallback for non-webkit */
  }
}
@supports (display: -webkit-box) {
  .abbreviate.abbreviate-active.abbreviate-10 {
    display: -webkit-box;
    line-clamp: 10;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
  }
}

/* What it does: Remove spaces around the email design added by some email clients. */
/* Beware: It can remove the padding / margin and add a background color to the compose a reply window. */
html,
body {
  margin: 0 auto !important;
  padding: 0 !important;
  height: 100% !important;
  width: 100% !important;
}

/* What it does: Stops email clients resizing small text. */
* {
  -ms-text-size-adjust: 100%;
}

/* What it does: Stops Outlook from adding extra spacing to tables. */
table,
td {
  mso-table-lspace: 0pt !important;
  mso-table-rspace: 0pt !important;
}

/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */
table {
  border-spacing: 0 !important;
  border-collapse: collapse !important;
  table-layout: fixed !important;
  margin: 0 auto !important;
}

/* What it does: Uses a better rendering method when resizing images in IE. */
img {
  -ms-interpolation-mode: bicubic;
}

/* What it does: A work-around for iOS meddling in triggered links. */
*[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
}

/* What it does: A work-around for Gmail meddling in triggered links. */
.x-gmail-data-detectors,
.x-gmail-data-detectors *,
.aBn {
  border-bottom: 0 !important;
  cursor: default !important;
}

/* What it does: Prevents Gmail from displaying an download button on large, non-linked images. */
.a6S {
  display: none !important;
  opacity: 0.01 !important;
}

/* If the above doesn't work, add a .g-img class to any image in question. */
img.g-img + div {
  display: none !important;
}

/* What it does: Prevents underlining the button text in Windows 10 */
.button-link {
  text-decoration: none !important;
}

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #212121;
}

h1, h2 {
  font-family: Arial, sans-serif;
  color: #212121;
  margin-bottom: 40px;
}

h2 {
  margin-bottom: 30px;
}

a {
  text-decoration: none;
  color: #0F64C8;
}
a:hover {
  color: #0F64C8;
}

.Compilation h1, .Compilation h2, .Compilation h3, .Compilation h4, .Compilation h5, .Compilation h6 {
  font-family: Arial, sans-serif;
  margin-top: 32px;
}
.Compilation div.cp_p {
  margin-bottom: 16px;
}

ul.linklist {
  list-style-type: none;
  padding: 0;
}

.TimeMachineNavigator {
  position: relative;
  overflow: hidden;
  border: 3px solid red;
  padding: 5px;
  top: 0;
  left: 0;
  background-color: silver;
  z-index: 99999;
}
.TimeMachineNavigator-actions {
  position: absolute;
  margin: 0;
  top: 5px;
  right: 5px;
}
.TimeMachineNavigator-List {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.TimeMachineNavigator-List li {
  display: inline;
}
.TimeMachineNavigator-List li:not(:last-child):after {
  content: "|";
}
.TimeMachineNavigator-current {
  font-weight: bold;
}

table.tbl_activityreport {
  margin: 0 auto;
}
table.tbl_activityreport h1, table.tbl_activityreport h2 {
  margin-bottom: 16px;
}
table.tbl_activityreport table.tbl_footer {
  background-color: #0F64C8;
  width: 100%;
  color: white;
}
table.tbl_activityreport table.tbl_footer a, table.tbl_activityreport table.tbl_footer a:hover {
  color: white;
}
table.tbl_activityreport table.tbl_footer td.social, table.tbl_activityreport table.tbl_footer td.footer-links, table.tbl_activityreport table.tbl_footer tr.disclaimer td {
  padding-top: 20px;
  padding-bottom: 20px;
}
table.tbl_activityreport table.tbl_bmwi .boilerplate p {
  font-size: 14px;
  line-height: 20px;
}
table.tbl_activityreport table.tbl_bmwi td {
  padding-top: 20px;
}
table.tbl_activityreport table.tbl_bmwi td.spacer {
  width: 300px;
}
table.tbl_activityreport table.tbl_bmwi td.mittelstand-digital, table.tbl_activityreport table.tbl_bmwi td.mittelstand-digital img {
  width: 150px;
}
table.tbl_activityreport table.tbl_bmwi td.bmwi, table.tbl_activityreport table.tbl_bmwi td.bmwi img {
  width: 150px;
}

.activityreport .further-links a {
  color: #212121;
}
.activityreport a.appointment, .activityreport a:hover.appointment {
  color: #212121;
}
.activityreport .Compilation .cp_line {
  height: 0;
  border-bottom: 5px solid #0F64C8;
}
.activityreport .Compilation a.wwobject-anchor {
  display: block;
  height: 0;
}
.activityreport tr.CellPictureNewsListElement_rowImage td {
  background-color: white;
}
.activityreport .ListView table td.CellPictureNewsListElement_image {
  width: 100%;
}
.activityreport td.CellPictureNewsListElement_image {
  vertical-align: bottom !important;
  font-size: 0px;
  width: 600px;
  height: 338px;
  display: block;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.activityreport td.CellPictureNewsListElement_image div.Picture {
  background-color: white;
}
.activityreport td.CellPictureNewsListElement_image div.Picture a {
  display: block;
}
.activityreport td.CellPictureNewsListElement_image div.Picture a span.icon {
  height: 0;
  display: none;
}
.activityreport td.CellPictureNewsListElement_image div.Picture a img {
  display: block;
  width: 600px !important;
  max-width: 600px !important;
  height: 338px;
  max-height: 339px;
  margin: 0;
  padding: 0;
}
.activityreport td.CellPictureNewsListElement_content {
  vertical-align: top;
  padding-top: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dadada;
}
.activityreport td.CellPictureNewsListElement_content .PictureNewsListElement {
  display: block;
}
.activityreport td.CellPictureNewsListElement_content .PictureNewsListElement .newsDate {
  color: #666666;
  /*border-top: 8px solid white;
  border-bottom: 8px solid white;
  border-left: 1px solid white;
  display: block;*/
}
.activityreport td.CellPictureNewsListElement_content .PictureNewsListElement .cell-rubric {
  font-weight: 700;
  color: #666666;
  padding: 4px 0;
}
.activityreport td.CellPictureNewsListElement_content .PictureNewsListElement .cell-rubric a {
  font-weight: 700;
  color: #666666;
}
.activityreport td.CellPictureNewsListElement_content .PictureNewsListElement .cell-title {
  font-weight: bold;
  padding-bottom: 16px;
}
.activityreport td.CellPictureNewsListElement_content .PictureNewsListElement .cell-title span.newsDate {
  font-weight: normal;
}
.activityreport td.CellPictureNewsListElement_content .PictureNewsListElement .cell-title a.Title {
  color: #212121;
  font-size: 22px;
  line-height: 28px;
}
.activityreport td.CellPictureNewsListElement_content .PictureNewsListElement a.MoreButton {
  display: block;
  color: #666666;
}
.activityreport td.CellPictureNewsListElement_spacer-bottom {
  height: 24px;
}
.activityreport table.wrapper-line {
  width: 100%;
}
.activityreport table.wrapper-line td.bg-color-blue {
  width: 100.5px;
  padding: 0;
}
.activityreport table.wrapper-line td .bg-color-blue {
  background-color: #0F64C8;
  height: 8px;
  text-indent: -9999px;
  width: 100.5px;
  margin-left: 3px;
}
.activityreport table.wrapper-line td.bg-color-black {
  width: 100.5px;
  padding: 0;
}
.activityreport table.wrapper-line td .bg-color-black {
  background-color: #212121;
  height: 8px;
  text-indent: -9999px;
  width: 100.5px;
  margin-left: 3px;
}
.activityreport table.wrapper-line td.bg-color-white {
  width: 100.5px;
  padding: 0;
}
.activityreport table.wrapper-line td .bg-color-white {
  background-color: rgb(255, 255, 255);
  height: 8px;
  text-indent: -9999px;
  width: 100.5px;
  margin-left: 3px;
}
.activityreport table.wrapper-line td.bg-color-gray {
  width: 100.5px;
  padding: 0;
}
.activityreport table.wrapper-line td .bg-color-gray {
  background-color: #757575;
  height: 8px;
  text-indent: -9999px;
  width: 100.5px;
  margin-left: 3px;
}
.activityreport table.wrapper-line td.bg-color-light-gray {
  width: 100.5px;
  padding: 0;
}
.activityreport table.wrapper-line td .bg-color-light-gray {
  background-color: #C5CAE9;
  height: 8px;
  text-indent: -9999px;
  width: 100.5px;
  margin-left: 3px;
}
.activityreport table.wrapper-line td.bg-color-orange {
  width: 100.5px;
  padding: 0;
}
.activityreport table.wrapper-line td .bg-color-orange {
  background-color: #0F64C8;
  height: 8px;
  text-indent: -9999px;
  width: 100.5px;
  margin-left: 3px;
}
.activityreport table.wrapper-line td div.color-line {
  height: 8px;
  text-indent: -9999px;
  width: 97.5px;
}
.activityreport .grp-appointment-list-layout tr.grptitle td {
  padding: 24px 0 16px;
}
.activityreport .grp-appointment-list-layout tr.grptitle td a {
  font-size: 24px;
  color: #212121;
}
.activityreport .grp-appointment-list-layout tr.even-timeRowToday td, .activityreport .grp-appointment-list-layout tr.odd-timeRowToday td {
  font-weight: 700;
}
.activityreport .grp-appointment-list-layout tr.grp-appointment-place td {
  color: #666666;
  padding: 4px 0;
}
.activityreport .grp-appointment-list-layout tr.even-titleRowToday td, .activityreport .grp-appointment-list-layout tr.odd-titleRowToday td {
  padding-bottom: 16px;
  font-size: 18px;
}
.activityreport .grp-appointment-list-layout tr.even-titleRowToday td a, .activityreport .grp-appointment-list-layout tr.odd-titleRowToday td a {
  color: #212121;
}

/*# sourceMappingURL=newsletter.css.map */
