/* 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: "Open sans", 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: "Open sans", 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: #fba8b1;
}

.table-green,
.table-green > th,
.table-green > td {
  background-color: #80d6ab;
}

.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: "Open sans", sans-serif;
  font-size: 16px;
  color: #575756;
}

h1, h2 {
  font-family: "Georgia", serif;
  color: #575756;
  margin-bottom: 40px;
}

h2 {
  margin-bottom: 30px;
}

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

.Compilation h1, .Compilation h2, .Compilation h3, .Compilation h4, .Compilation h5, .Compilation h6 {
  font-family: "Georgia", 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 table.tbl_footer {
  background-color: #CD0A1E;
  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 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: 155px;
  vertical-align: top;
  margin-top: 57px;
}
table.tbl_activityreport table.tbl_bmwi td.bmwi, table.tbl_activityreport table.tbl_bmwi td.bmwi img {
  width: 200px;
}

.activityreport a.appointment, .activityreport a:hover.appointment {
  color: #2BA1D3;
}
.activityreport .Compilation .cp_p a {
  text-transform: uppercase;
}
.activityreport .Compilation .cp_line {
  height: 0;
  border-bottom: 5px solid #2BA1D3;
}
.activityreport .Compilation a.wwobject-anchor {
  display: block;
  height: 0;
}
.activityreport tr.CellPictureNewsListElement_rowImage td {
  background-color: rgba(240, 242, 240, 0.42);
}
.activityreport .ListView table td.CellPictureNewsListElement_image {
  width: 100%;
}
.activityreport td.CellPictureNewsListElement_image {
  vertical-align: bottom !important;
  font-size: 0px;
  height: 338px !important;
  width: 1px;
  display: block;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.activityreport td.CellPictureNewsListElement_image a {
  display: block;
}
.activityreport td.CellPictureNewsListElement_image img {
  display: block;
  width: 600px;
  height: 338px;
  max-height: 338px;
  margin: 0;
  padding: 0;
}
.activityreport td.CellPictureNewsListElement_content {
  padding: 10px;
  vertical-align: top;
  border: 1px solid #c0c0c0;
  background-color: #f9faf9;
}
.activityreport td.CellPictureNewsListElement_content .PictureNewsListElement .Title, .activityreport td.CellPictureNewsListElement_content .PictureNewsListElement .Title span.caption {
  font-weight: bold;
  margin-bottom: 4px;
}
.activityreport td.CellPictureNewsListElement_content .PictureNewsListElement .Title span.newsDate, .activityreport td.CellPictureNewsListElement_content .PictureNewsListElement .Title span.caption span.newsDate {
  font-weight: normal;
}
.activityreport td.CellPictureNewsListElement_content .PictureNewsListElement .textpane {
  display: block; /* Fallback for non-webkit */
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
}
@supports (-moz-appearance: auto) {
  .activityreport td.CellPictureNewsListElement_content .PictureNewsListElement .textpane {
    height: 120px; /* Fallback for non-webkit */
  }
}
@supports (display: -webkit-box) {
  .activityreport td.CellPictureNewsListElement_content .PictureNewsListElement .textpane {
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
}
.activityreport td.CellPictureNewsListElement_content .PictureNewsListElement a.MoreButton {
  display: block;
  color: #575756;
  text-transform: uppercase;
}
.activityreport td.CellPictureNewsListElement_spacer-bottom {
  height: 16px;
}

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