/*
Version: 3.4.4 Timestamp: Thu Oct 24 13:23:11 PDT 2013
*/
.select2-container {
  margin: 0;
  position: relative;
  display: inline-block;
  /* inline-block for ie7 */
  zoom: 1;
  *display: inline;
  vertical-align: middle;
}
.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.

    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box;
  /* webkit */
  -moz-box-sizing: border-box;
  /* firefox */
  box-sizing: border-box;
  /* css3 */
}
.select2-container .select2-choice {
  display: block;
  height: 26px;
  padding: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #aaa;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  border-radius: 4px;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
  background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(top, #fff 0%, #eee 50%);
}
.select2-container.select2-drop-above .select2-choice {
  border-bottom-color: #aaa;
  border-radius: 0 0 4px 4px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
  background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(top, #eee 0%, #fff 90%);
}
.select2-container.select2-allowclear .select2-choice .select2-chosen {
  margin-right: 42px;
}
.select2-container .select2-choice > .select2-chosen {
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.select2-container .select2-choice abbr {
  display: none;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 8px;
  font-size: 1px;
  text-decoration: none;
  border: 0;
  background: url('select2.png') right top no-repeat;
  cursor: pointer;
  outline: 0;
}
.select2-container.select2-allowclear .select2-choice abbr {
  display: inline-block;
}
.select2-container .select2-choice abbr:hover {
  background-position: right -11px;
  cursor: pointer;
}
.select2-drop-mask {
  border: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 9998;
  /* styles required for IE to work */
  background-color: #fff;
  filter: alpha(opacity=0);
}
.select2-drop {
  width: 100%;
  margin-top: -1px;
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.select2-drop-auto-width {
  border-top: 1px solid #aaa;
  width: auto;
}
.select2-drop-auto-width .select2-search {
  padding-top: 4px;
}
.select2-drop.select2-drop-above {
  margin-top: 1px;
  border-top: 1px solid #aaa;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}
.select2-drop-active {
  border: 1px solid #5897fb;
  border-top: none;
}
.select2-drop.select2-drop-above.select2-drop-active {
  border-top: 1px solid #5897fb;
}
.select2-container .select2-choice .select2-arrow {
  display: inline-block;
  width: 18px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid #aaa;
  border-radius: 0 4px 4px 0;
  background-clip: padding-box;
  background: #ccc;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
  background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);
  background-image: linear-gradient(top, #ccc 0%, #eee 60%);
}
.select2-container .select2-choice .select2-arrow b {
  display: block;
  width: 100%;
  height: 100%;
  background: url('select2.png') no-repeat 0 1px;
}
.select2-search {
  display: inline-block;
  width: 100%;
  min-height: 26px;
  margin: 0;
  padding-left: 4px;
  padding-right: 4px;
  position: relative;
  z-index: 10000;
  white-space: nowrap;
}
.select2-search input {
  width: 100%;
  height: auto !important;
  min-height: 26px;
  padding: 4px 20px 4px 5px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  font-size: 1em;
  border: 1px solid #aaa;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #fff url('select2.png') no-repeat 100% -22px;
  background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('select2.png') no-repeat 100% -22px, linear-gradient(top, #fff 85%, #eee 99%);
}
.select2-drop.select2-drop-above .select2-search input {
  margin-top: 4px;
}
.select2-search input.select2-active {
  background: #fff url('select2-spinner.gif') no-repeat 100%;
  background: url('select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url('select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('select2-spinner.gif') no-repeat 100%, linear-gradient(top, #fff 85%, #eee 99%);
}
.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  border: 1px solid #5897fb;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.select2-dropdown-open .select2-choice {
  border-bottom-color: transparent;
  -webkit-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #eee;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
  background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
  background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(top, #fff 0%, #eee 50%);
}
.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
  border: 1px solid #5897fb;
  border-top-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
  background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
  background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(bottom, #fff 0%, #eee 50%);
}
.select2-dropdown-open .select2-choice .select2-arrow {
  background: transparent;
  border-left: none;
  filter: none;
}
.select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -18px 1px;
}
/* results */
.select2-results {
  max-height: 200px;
  padding: 0 0 0 4px;
  margin: 4px 4px 4px 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.select2-results ul.select2-result-sub {
  margin: 0;
  padding-left: 0;
}
.select2-results ul.select2-result-sub > li .select2-result-label {
  padding-left: 20px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 40px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 60px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 80px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 100px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 110px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 120px;
}
.select2-results li {
  list-style: none;
  display: list-item;
  background-image: none;
}
.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: bold;
}
.select2-results .select2-result-label {
  padding: 3px 7px 4px;
  margin: 0;
  cursor: pointer;
  min-height: 1em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.select2-results .select2-highlighted {
  background: #3875d7;
  color: #fff;
}
.select2-results li em {
  background: #feffde;
  font-style: normal;
}
.select2-results .select2-highlighted em {
  background: transparent;
}
.select2-results .select2-highlighted ul {
  background: #fff;
  color: #000;
}
.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
  background: #f4f4f4;
  display: list-item;
}
/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
  color: #666;
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}
.select2-results .select2-selected {
  display: none;
}
.select2-more-results.select2-active {
  background: #f4f4f4 url('select2-spinner.gif') no-repeat 100%;
}
.select2-more-results {
  background: #f4f4f4;
  display: list-item;
}
/* disabled styles */
.select2-container.select2-container-disabled .select2-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}
.select2-container.select2-container-disabled .select2-choice .select2-arrow {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0;
}
.select2-container.select2-container-disabled .select2-choice abbr {
  display: none;
}
/* multiselect */
.select2-container-multi .select2-choices {
  height: auto !important;
  height: 1%;
  margin: 0;
  padding: 0;
  position: relative;
  border: 1px solid #aaa;
  cursor: text;
  overflow: hidden;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
  background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
  background-image: linear-gradient(top, #eee 1%, #fff 15%);
}
.select2-locked {
  padding: 3px 5px 3px 5px !important;
}
.select2-container-multi .select2-choices {
  min-height: 26px;
}
.select2-container-multi.select2-container-active .select2-choices {
  border: 1px solid #5897fb;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.select2-container-multi .select2-choices li {
  float: left;
  list-style: none;
}
.select2-container-multi .select2-choices .select2-search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.select2-container-multi .select2-choices .select2-search-field input {
  padding: 5px;
  margin: 1px 0;
  font-family: sans-serif;
  font-size: 100%;
  color: #666;
  outline: 0;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent !important;
}
.select2-container-multi .select2-choices .select2-search-field input.select2-active {
  background: #fff url('select2-spinner.gif') no-repeat 100% !important;
}
.select2-default {
  color: #999 !important;
}
.select2-container-multi .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 18px;
  margin: 3px 0 3px 5px;
  position: relative;
  line-height: 13px;
  color: #333;
  cursor: default;
  border: 1px solid #aaaaaa;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #e4e4e4;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
  cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
  background: #d4d4d4;
}
.select2-search-choice-close {
  display: block;
  width: 12px;
  height: 13px;
  position: absolute;
  right: 3px;
  top: 4px;
  font-size: 1px;
  outline: none;
  background: url('select2.png') right top no-repeat;
}
.select2-container-multi .select2-search-choice-close {
  left: 3px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  background-position: right -11px;
}
/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 5px;
  border: 1px solid #ddd;
  background-image: none;
  background-color: #f4f4f4;
}
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  display: none;
  background: none;
}
/* end multiselect */
.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
  text-decoration: underline;
}
.select2-offscreen,
.select2-offscreen:focus {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}
.select2-display-none {
  display: none;
}
.select2-measure-scrollbar {
  position: absolute;
  top: -10000px;
  left: -10000px;
  width: 100px;
  height: 100px;
  overflow: scroll;
}
/* Retina-ize icons */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .select2-search input,
  .select2-search-choice-close,
  .select2-container .select2-choice abbr,
  .select2-container .select2-choice .select2-arrow b {
    background-image: url('select2x2.png') !important;
    background-repeat: no-repeat !important;
    background-size: 60px 40px !important;
  }
  .select2-search input {
    background-position: 100% -21px !important;
  }
}
/*# sourceMappingURL=style.css.map */
@font-face {
  font-family: "icon";
  src: url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
  src: url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.eot?#iefix") format("embedded-opentype"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.woff") format("woff"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.ttf") format("truetype"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.svg?#icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*
@font-face {
    font-family:"icon";
    src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
    font-weight:normal;
    font-style:normal;
}
*/
/*
@font-face {
	font-family:"icon";
	src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
	src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot?#iefix") format("embedded-opentype"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.woff") format("woff"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.ttf") format("truetype"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.svg?#icon") format("svg");
	font-weight:normal;
	font-style:normal;
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icon";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-OLD_print:before,
.icon-arrow_down:before,
.icon-arrow_down_small:before,
.icon-arrow_left:before,
.icon-arrow_right:before,
.icon-arrow_up:before,
.icon-arrow_up_small:before,
.icon-close:before,
.icon-connect:before,
.icon-document:before,
.icon-extern:before,
.icon-facebook:before,
.icon-flashmessage_error:before,
.icon-flashmessage_info:before,
.icon-flashmessage_ok:before,
.icon-google:before,
.icon-ical:before,
.icon-lesezeit:before,
.icon-link:before,
.icon-linkedin:before,
.icon-links:before,
.icon-logout:before,
.icon-lupe:before,
.icon-mail:before,
.icon-navi:before,
.icon-print:before,
.icon-rss:before,
.icon-spinner:before,
.icon-tick:before,
.icon-twitter:before,
.icon-vcard:before,
.icon-view:before,
.icon-xing:before,
.icon-youtube:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.icon-OLD_print:before {
  content: "\f101";
}
.icon-arrow_down:before {
  content: "\f102";
}
.icon-arrow_down_small:before {
  content: "\f103";
}
.icon-arrow_left:before {
  content: "\f104";
}
.icon-arrow_right:before {
  content: "\f105";
}
.icon-arrow_up:before {
  content: "\f106";
}
.icon-arrow_up_small:before {
  content: "\f107";
}
.icon-close:before {
  content: "\f108";
}
.icon-connect:before {
  content: "\f109";
}
.icon-document:before {
  content: "\f10a";
}
.icon-extern:before {
  content: "\f10b";
}
.icon-facebook:before {
  content: "\f10c";
}
.icon-flashmessage_error:before {
  content: "\f10d";
}
.icon-flashmessage_info:before {
  content: "\f10e";
}
.icon-flashmessage_ok:before {
  content: "\f10f";
}
.icon-google:before {
  content: "\f110";
}
.icon-ical:before {
  content: "\f111";
}
.icon-lesezeit:before {
  content: "\f112";
}
.icon-link:before {
  content: "\f113";
}
.icon-linkedin:before {
  content: "\f114";
}
.icon-links:before {
  content: "\f115";
}
.icon-logout:before {
  content: "\f116";
}
.icon-lupe:before {
  content: "\f117";
}
.icon-mail:before {
  content: "\f118";
}
.icon-navi:before {
  content: "\f119";
}
.icon-print:before {
  content: "\f11a";
}
.icon-rss:before {
  content: "\f11b";
}
.icon-spinner:before {
  content: "\f11c";
}
.icon-tick:before {
  content: "\f11d";
}
.icon-twitter:before {
  content: "\f11e";
}
.icon-vcard:before {
  content: "\f11f";
}
.icon-view:before {
  content: "\f120";
}
.icon-xing:before {
  content: "\f121";
}
.icon-youtube:before {
  content: "\f122";
}
/*
font-family: 'Source Serif Pro';
400 -> light
700 -> semibold

font-family: 'Roboto';
700 -> bold
600 -> medium
500 -> light
400 -> thin
*/
.select2-container {
  width: 100%;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.select2-container input.select2-focus:hover {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid red;
}
.select2-container .select2-choice,
.select2-container-multi .select2-choices {
  font: 500 17px/22px "HelveticaNeue";
  background: #fff;
  border: 1px solid #CDCDCD;
  text-align: left;
  color: #242424;
  height: 22px;
  padding: 10px;
  margin: 0;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  box-shadow: none !important;
}
.select2-container-multi .select2-choices {
  padding: 4px 4px;
  min-height: 20px;
  height: auto;
}
.select2-container .select2-choice .select2-arrow {
  background: none;
  border: 0;
  border-radius: 0;
  width: 30px;
}
.select2-container .select2-choice .select2-arrow b {
  background-image: none;
}
.select2-container .select2-choice .select2-arrow b:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.select2-container .select2-choice .select2-arrow b:before {
  content: "\f102";
}
.select2-container .select2-choice .select2-arrow b:before {
  font-size: 6px;
  position: absolute;
  left: 0;
  top: 10px;
}
.select2-container .select2-choice:hover .select2-arrow b {
  background-image: none;
}
.select2-container .select2-choice:hover,
.select2-container-multi .select2-choices:hover {
  /* OLD
	background: @bg-color-3 !important;
	*/
  color: #f7a600;
  background: white;
  border: 1px solid #f7a600 !important;
}
/*
.select2-container .select2-choice:hover .select2-arrow b {
	background: url("@{path}/icon_arrow_down_black.svg") center center no-repeat;
	background-size: 12px 5px;
}
*/
/*

.select2-container-multi .select2-choices .select2-search-choice {
	background: #d7e8bd;
	font: 400 14px/20px @body-font;
	box-shadow: none;
	border: none;
	margin: 3px;
	}

*/
.select2-container.select2-allowclear .select2-choice .select2-chosen {
  margin-right: 60px;
}
.select2-container .select2-choice abbr.select2-search-choice-close {
  width: 17px !important;
  height: 17px !important;
  right: 36px !important;
  top: 10px !important;
  color: #d3d2d3;
}
.select2-container .select2-choice abbr.select2-search-choice-close:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.select2-container .select2-choice abbr.select2-search-choice-close:before {
  content: "\f108";
}
.select2-container .select2-choice abbr.select2-search-choice-close:before {
  font-size: 10px;
}
.select2-container .select2-choice abbr.select2-search-choice-close:hover {
  color: #8f9aa3;
}
.select2-container.select2-drop-above {
  z-index: 10000;
}
.select2-dropdown-open .select2-choice {
  border-bottom: 0;
  -webkit-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
}
.select2-dropdown-open .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices,
.select2-container-multi.select2-container-active .select2-choices {
  background: white;
  border: 1px solid #242424 !important;
}
.select2-dropdown-open.select2-drop-above .select2-choices,
.select2-dropdown-open.select2-drop-above .select2-choice {
  border-radius: 0 0 2px 2px;
  border-top: 1px solid #D3D2D3 !important;
}
.select2-drop {
  box-shadow: none !important;
  color: #242424;
  background: white;
  -webkit-border-radius: 0 0 2px 2px;
  border-radius: 0 0 2px 2px;
  border: 1px solid #242424 !important;
  border-top: 0 !important;
  margin-top: -1px;
}
.select2-drop.select2-drop-above.select2-drop-active {
  border: 1px solid #242424 !important;
  border-bottom: 0 !important;
  padding-top: 0;
  -webkit-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
  margin: 0;
}
.select2-results {
  margin: 0;
  padding: 0;
  max-height: 240px;
}
.select2-results li {
  margin: 0;
}
.select2-results .select2-result-label {
  padding: 6px 10px;
  font: 500 17px/22px "HelveticaNeue";
  color: #242424;
  border-bottom: 1px solid #efefef;
}
.select2-results li:last-child .select2-result-label {
  border: 0;
}
.select2-results .select2-highlighted {
  background: transparent;
}
.select2-results .select2-highlighted .select2-result-label {
  color: #8f9aa3 !important;
}
.select2-search {
  padding: 0;
  position: relative;
  display: block;
}
.select2-search:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.select2-search:before {
  content: "\f117";
}
.select2-search:before {
  position: absolute;
  right: 14px;
  top: 4px;
  font-size: 15px;
  z-index: 111;
}
.select2-search input {
  font: 500 17px/22px "HelveticaNeue";
  box-shadow: none !important;
  padding: 6px 10px;
  border: 1px solid #D3D2D3;
  border-left: 0;
  border-right: 0;
  margin: 0 !important;
  background: #efefef;
}
.select2-drop.select2-drop-above .select2-search input {
  border-top: 0;
}
.select2-no-results {
  font: 500 17px/22px "HelveticaNeue";
  padding: 6px 10px;
  color: white;
  background: #8f9aa3 !important;
}
.select2-container-multi .select2-choices {
  padding: 4px 32px 4px 4px;
  min-height: 22px;
  height: auto;
}
.select2-container-multi .select2-choices:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.select2-container-multi .select2-choices:before {
  content: "\f102";
}
.select2-container-multi .select2-choices:before {
  color: #999;
  font-size: 6px;
  position: absolute;
  right: 13px;
  top: 10px;
}
.select2-container-multi .select2-choices .select2-search-choice {
  background: #ddd;
  font: 500 15px/22px "HelveticaNeue";
  box-shadow: none;
  border: none;
  margin: 3px 3px;
  padding: 2px 10px 2px 22px;
}
.select2-container-multi .select2-choices .select2-search-field input {
  font: 500 17px/22px "HelveticaNeue";
  padding: 4px;
}
.select2-container-multi .select2-choices .select2-search-field input:hover,
.select2-container-multi .select2-choices .select2-search-field input:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.select2-container-multi .select2-search-choice-close {
  border-radius: 10px;
  width: 13px;
  height: 13px;
  background: #fff;
  top: 7px;
  left: 4px;
  line-height: 13px;
  color: #999;
}
.select2-container-multi .select2-search-choice-close:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.select2-container-multi .select2-search-choice-close:before {
  content: "\f108";
}
.select2-container-multi .select2-search-choice-close:before {
  font-size: 6px;
  line-height: 13px;
  position: absolute;
  left: 4px;
  top: 0;
}
.select2-container-multi .select2-search-choice-close:hover {
  color: #8f9aa3;
}
/*# sourceMappingURL=style.css.map */
@font-face {
  font-family: "icon";
  src: url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
  src: url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.eot?#iefix") format("embedded-opentype"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.woff") format("woff"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.ttf") format("truetype"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.svg?#icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*
@font-face {
    font-family:"icon";
    src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
    font-weight:normal;
    font-style:normal;
}
*/
/*
@font-face {
	font-family:"icon";
	src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
	src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot?#iefix") format("embedded-opentype"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.woff") format("woff"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.ttf") format("truetype"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.svg?#icon") format("svg");
	font-weight:normal;
	font-style:normal;
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icon";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-OLD_print:before,
.icon-arrow_down:before,
.icon-arrow_down_small:before,
.icon-arrow_left:before,
.icon-arrow_right:before,
.icon-arrow_up:before,
.icon-arrow_up_small:before,
.icon-close:before,
.icon-connect:before,
.icon-document:before,
.icon-extern:before,
.icon-facebook:before,
.icon-flashmessage_error:before,
.icon-flashmessage_info:before,
.icon-flashmessage_ok:before,
.icon-google:before,
.icon-ical:before,
.icon-lesezeit:before,
.icon-link:before,
.icon-linkedin:before,
.icon-links:before,
.icon-logout:before,
.icon-lupe:before,
.icon-mail:before,
.icon-navi:before,
.icon-print:before,
.icon-rss:before,
.icon-spinner:before,
.icon-tick:before,
.icon-twitter:before,
.icon-vcard:before,
.icon-view:before,
.icon-xing:before,
.icon-youtube:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.icon-OLD_print:before {
  content: "\f101";
}
.icon-arrow_down:before {
  content: "\f102";
}
.icon-arrow_down_small:before {
  content: "\f103";
}
.icon-arrow_left:before {
  content: "\f104";
}
.icon-arrow_right:before {
  content: "\f105";
}
.icon-arrow_up:before {
  content: "\f106";
}
.icon-arrow_up_small:before {
  content: "\f107";
}
.icon-close:before {
  content: "\f108";
}
.icon-connect:before {
  content: "\f109";
}
.icon-document:before {
  content: "\f10a";
}
.icon-extern:before {
  content: "\f10b";
}
.icon-facebook:before {
  content: "\f10c";
}
.icon-flashmessage_error:before {
  content: "\f10d";
}
.icon-flashmessage_info:before {
  content: "\f10e";
}
.icon-flashmessage_ok:before {
  content: "\f10f";
}
.icon-google:before {
  content: "\f110";
}
.icon-ical:before {
  content: "\f111";
}
.icon-lesezeit:before {
  content: "\f112";
}
.icon-link:before {
  content: "\f113";
}
.icon-linkedin:before {
  content: "\f114";
}
.icon-links:before {
  content: "\f115";
}
.icon-logout:before {
  content: "\f116";
}
.icon-lupe:before {
  content: "\f117";
}
.icon-mail:before {
  content: "\f118";
}
.icon-navi:before {
  content: "\f119";
}
.icon-print:before {
  content: "\f11a";
}
.icon-rss:before {
  content: "\f11b";
}
.icon-spinner:before {
  content: "\f11c";
}
.icon-tick:before {
  content: "\f11d";
}
.icon-twitter:before {
  content: "\f11e";
}
.icon-vcard:before {
  content: "\f11f";
}
.icon-view:before {
  content: "\f120";
}
.icon-xing:before {
  content: "\f121";
}
.icon-youtube:before {
  content: "\f122";
}
/*
font-family: 'Source Serif Pro';
400 -> light
700 -> semibold

font-family: 'Roboto';
700 -> bold
600 -> medium
500 -> light
400 -> thin
*/
.abc {
  padding: 0 10px 20px;
}
.abc .wrap {
  display: table;
  width: 100%;
}
.abc span {
  display: table-cell;
  color: #242424;
  padding: 0 10px 0;
  font: 700 22px/28px "HelveticaNeue";
}
.abc span:hover {
  color: #f7a600;
  cursor: pointer;
}
@media screen and (max-width: 980px) {
  .abc .wrap {
    display: block;
  }
  .abc span {
    display: inline-block;
  }
}
.filter {
  /*
	.select2-container {
	}
	
	.select2-container .select2-choice,
	.select2-container-multi .select2-choices {
		font: 400 14px/18px @body-font;
		box-shadow: none !important;
		color: @text-color !important;
		border: 1px solid white;
		height: 18px;
		background: @bg-color-1;
	}
	
	.select2-container .select2-choice .select2-arrow {
		width: 20px;
		right: 7px;
		top: 1px;
		
		b {
			.icon-arrow_down;
			&:before {
				font-size: 5px;
			}
		
		}
		
	}
	
	.select2-container .select2-choice:hover,
	.select2-container-multi .select2-choices:hover {
		color: @text-color;
		border: 1px solid @text-color !important;
	}

	*/
}
.filter .hl3 {
  text-transform: uppercase;
}
.filter .text p {
  padding-bottom: 20px;
}
.filter .form {
  background: #f4f4f4;
  padding: 30px 15px;
  margin: 0 15px 40px;
}
.filter .item {
  padding: 0 15px;
  margin: 0;
  float: left;
  width: 33%;
  box-sizing: border-box;
}
.filter .item:nth-of-type(4) {
  width: 34%;
}
.filter .form .item {
  padding: 0 15px;
  margin: 0;
  float: left;
  width: 33%;
  box-sizing: border-box;
}
.filter .form .item:nth-of-type(4) {
  width: 34%;
}
.filter .select2-container .select2-choice,
.filter .select2-container-multi .select2-choices {
  font: 700 18px/22px "HelveticaNeue";
}
@media screen and (max-width: 639px) {
  .filter .form {
    padding: 20px 20px 5px;
  }
  .filter .item,
  .filter .form .item {
    width: 100% !important;
    padding: 0 0 15px;
  }
}
/*# sourceMappingURL=style.css.map */
@font-face {
  font-family: "icon";
  src: url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
  src: url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.eot?#iefix") format("embedded-opentype"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.woff") format("woff"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.ttf") format("truetype"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.svg?#icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*
@font-face {
    font-family:"icon";
    src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
    font-weight:normal;
    font-style:normal;
}
*/
/*
@font-face {
	font-family:"icon";
	src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
	src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot?#iefix") format("embedded-opentype"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.woff") format("woff"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.ttf") format("truetype"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.svg?#icon") format("svg");
	font-weight:normal;
	font-style:normal;
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icon";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-OLD_print:before,
.icon-arrow_down:before,
.icon-arrow_down_small:before,
.icon-arrow_left:before,
.icon-arrow_right:before,
.icon-arrow_up:before,
.icon-arrow_up_small:before,
.icon-close:before,
.icon-connect:before,
.icon-document:before,
.icon-extern:before,
.icon-facebook:before,
.icon-flashmessage_error:before,
.icon-flashmessage_info:before,
.icon-flashmessage_ok:before,
.icon-google:before,
.icon-ical:before,
.icon-lesezeit:before,
.icon-link:before,
.icon-linkedin:before,
.icon-links:before,
.icon-logout:before,
.icon-lupe:before,
.icon-mail:before,
.icon-navi:before,
.icon-print:before,
.icon-rss:before,
.icon-spinner:before,
.icon-tick:before,
.icon-twitter:before,
.icon-vcard:before,
.icon-view:before,
.icon-xing:before,
.icon-youtube:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.icon-OLD_print:before {
  content: "\f101";
}
.icon-arrow_down:before {
  content: "\f102";
}
.icon-arrow_down_small:before {
  content: "\f103";
}
.icon-arrow_left:before {
  content: "\f104";
}
.icon-arrow_right:before {
  content: "\f105";
}
.icon-arrow_up:before {
  content: "\f106";
}
.icon-arrow_up_small:before {
  content: "\f107";
}
.icon-close:before {
  content: "\f108";
}
.icon-connect:before {
  content: "\f109";
}
.icon-document:before {
  content: "\f10a";
}
.icon-extern:before {
  content: "\f10b";
}
.icon-facebook:before {
  content: "\f10c";
}
.icon-flashmessage_error:before {
  content: "\f10d";
}
.icon-flashmessage_info:before {
  content: "\f10e";
}
.icon-flashmessage_ok:before {
  content: "\f10f";
}
.icon-google:before {
  content: "\f110";
}
.icon-ical:before {
  content: "\f111";
}
.icon-lesezeit:before {
  content: "\f112";
}
.icon-link:before {
  content: "\f113";
}
.icon-linkedin:before {
  content: "\f114";
}
.icon-links:before {
  content: "\f115";
}
.icon-logout:before {
  content: "\f116";
}
.icon-lupe:before {
  content: "\f117";
}
.icon-mail:before {
  content: "\f118";
}
.icon-navi:before {
  content: "\f119";
}
.icon-print:before {
  content: "\f11a";
}
.icon-rss:before {
  content: "\f11b";
}
.icon-spinner:before {
  content: "\f11c";
}
.icon-tick:before {
  content: "\f11d";
}
.icon-twitter:before {
  content: "\f11e";
}
.icon-vcard:before {
  content: "\f11f";
}
.icon-view:before {
  content: "\f120";
}
.icon-xing:before {
  content: "\f121";
}
.icon-youtube:before {
  content: "\f122";
}
/*
font-family: 'Source Serif Pro';
400 -> light
700 -> semibold

font-family: 'Roboto';
700 -> bold
600 -> medium
500 -> light
400 -> thin
*/
.pagination {
  position: relative;
  padding: 30px 15px;
}
.pagination * {
  box-sizing: border-box;
}
.pagination__info {
  color: #242424;
}
.pagination__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.pagination__list > li {
  padding: 0;
  padding-left: 0 !important;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
  float: left;
}
.pagination__list > li:before {
  display: none;
}
.pagination__list > li > a,
.pagination__list > li > span {
  color: #242424;
  text-align: center;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
  transition: all 0.2s ease-in-out;
  font-size: 1rem;
  font-weight: 600;
  line-height: 50px;
  height: 50px;
  width: 50px;
  display: inline-block;
  background-color: #f7f7f7;
}
.pagination__list > li > a:hover,
.pagination__list > li > span:hover,
.pagination__list > li > a:focus,
.pagination__list > li > span:focus {
  background: #f7a600;
  color: white;
}
.pagination__list > li.pagination__current > a,
.pagination__list > li.pagination__current > span {
  color: white;
  background-color: #f7a600;
}
.pagination__list > li.pagination__current > a:hover,
.pagination__list > li.pagination__current > span:hover,
.pagination__list > li.pagination__current > a:focus,
.pagination__list > li.pagination__current > span:focus {
  background-color: #ce8b00;
}
.pagination__list > li.pagination__first > a,
.pagination__list > li.pagination__previous > a,
.pagination__list > li.pagination__next > a,
.pagination__list > li.pagination__last > a,
.pagination__list > li.pagination__first > span,
.pagination__list > li.pagination__previous > span,
.pagination__list > li.pagination__next > span,
.pagination__list > li.pagination__last > span {
  font-size: 20px;
}
.pagination__list > li.pagination__previous > a:before,
.pagination__list > li.pagination__previous > span:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.pagination__list > li.pagination__previous > a:before,
.pagination__list > li.pagination__previous > span:before {
  content: "\f104";
}
.pagination__list > li.pagination__next > a:before,
.pagination__list > li.pagination__next > span:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.pagination__list > li.pagination__next > a:before,
.pagination__list > li.pagination__next > span:before {
  content: "\f105";
}
.pagination__list > li.pagination__first,
.pagination__list > li.pagination__last {
  display: none;
}
.pagination__list > li.pagination__first > a:before,
.pagination__list > li.pagination__first > span:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.pagination__list > li.pagination__first > a:before,
.pagination__list > li.pagination__first > span:before {
  content: "\f104";
}
.pagination__list > li.pagination__last > a:before,
.pagination__list > li.pagination__last > span:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.pagination__list > li.pagination__last > a:before,
.pagination__list > li.pagination__last > span:before {
  content: "\f105";
}
.pagination__list > li.pagination--is-disabled > a,
.pagination__list > li.pagination--is-disabled > span {
  pointer-events: none;
  opacity: 0.5;
}
/*
.pagination {
	}

.pagination ul {
	float: right;
	margin: 0;
	}

.pagination ul li {
	list-style: none;
	float: left;
	margin: 0 0 0 1px;
	line-height: 40px;
	}

.pagination ul li.points span {
	display: block;
	text-align: center;
	font: 700 13px/40px @body-font;
	color: @text-color;
	}
.pagination ul li span,
.pagination ul li a {
	display: block;

	// height: 40px;
	// min-width: 20px;
	// background: white;
	// padding: 0 10px;

	padding: 0 7px;
	overflow: hidden;
	text-align: center;
	font: 700 13px/40px @headline-font;
	color: @cp-color-1;
	}

.pagination ul li a:hover {
	color: @cp-color-2;
	}

.pagination ul li.active span,
.pagination ul li.active a,
.pagination ul li a.active {
	font-weight: 700;
	color: @text-color;
	pointer-events: none;
	// font-family: @body-font;
	// background: @cp-color-1;
	}

.pagination ul li.prev a,
.pagination ul li.next a {
	width: 20px;
	padding: 0;
	text-align: left;
	text-indent: -10000em;
	background: url("@{path}/arrows.png") 5px -498px no-repeat;
	display: none;
}
.pagination ul li.prev a:hover {
	background-position: 6px -598px;
}
.pagination ul li.next a {
	background-position: -3px 2px;
}
.pagination ul li.next a:hover {
	background-position: -3px -98px;
}
*/
/*
.pagination p {
	float: left;
	font: 400 13px/20px @body-font;
	color: #919193;
	padding: 0;
	}

.currentPage,
.totalPages {
	font-weight: 700;
}

.pagination .entries {
	}

.startEntry,
.endEntry,
.totalEntries {
	font-weight: 700;
}

.pagination .disabled {
	visibility: hidden;
}

.pagination ul li.prev a,
.pagination ul li.next a {
	width: 20px;
	padding: 0;
	text-align: left;
	text-indent: -10000em;
	background: url("@{path}/arrows.png") 5px -498px no-repeat;
}
.pagination ul li.prev a:hover {
	background-position: 6px -598px;
}
.pagination ul li.next a {
	background-position: -3px 2px;
}
.pagination ul li.next a:hover {
	background-position: -3px -98px;
}



.pagination.back a,
.pagination .back {
	padding: 0 0 0 12px;
	background: url("@{path}/icon_arrow_left.svg") left 8px no-repeat;
	background-size: 5px 12px;
	font: 400 13px/30px @body-font;
	display: inline-block;
	}

.pagination.back a:hover,
.pagination .back:hover {
	color: @text-color;
	background: url("@{path}/icon_arrow_left_black.svg") left 8px no-repeat;
	background-size: 5px 12px;
	}
*/
/*

@media screen and ( max-width: 959px )  {


}

@media screen and ( max-width: 639px )  {

	.boxA .paginationTop {
		margin: -10px -15px 25px;
	}

	.boxA .paginationBottom {
		margin: 25px -15px -10px;
	}

}
*/
/*# sourceMappingURL=style.css.map */
@font-face {
  font-family: "icon";
  src: url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
  src: url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.eot?#iefix") format("embedded-opentype"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.woff") format("woff"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.ttf") format("truetype"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.svg?#icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*
@font-face {
    font-family:"icon";
    src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
    font-weight:normal;
    font-style:normal;
}
*/
/*
@font-face {
	font-family:"icon";
	src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
	src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot?#iefix") format("embedded-opentype"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.woff") format("woff"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.ttf") format("truetype"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.svg?#icon") format("svg");
	font-weight:normal;
	font-style:normal;
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icon";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-OLD_print:before,
.icon-arrow_down:before,
.icon-arrow_down_small:before,
.icon-arrow_left:before,
.icon-arrow_right:before,
.icon-arrow_up:before,
.icon-arrow_up_small:before,
.icon-close:before,
.icon-connect:before,
.icon-document:before,
.icon-extern:before,
.icon-facebook:before,
.icon-flashmessage_error:before,
.icon-flashmessage_info:before,
.icon-flashmessage_ok:before,
.icon-google:before,
.icon-ical:before,
.icon-lesezeit:before,
.icon-link:before,
.icon-linkedin:before,
.icon-links:before,
.icon-logout:before,
.icon-lupe:before,
.icon-mail:before,
.icon-navi:before,
.icon-print:before,
.icon-rss:before,
.icon-spinner:before,
.icon-tick:before,
.icon-twitter:before,
.icon-vcard:before,
.icon-view:before,
.icon-xing:before,
.icon-youtube:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.icon-OLD_print:before {
  content: "\f101";
}
.icon-arrow_down:before {
  content: "\f102";
}
.icon-arrow_down_small:before {
  content: "\f103";
}
.icon-arrow_left:before {
  content: "\f104";
}
.icon-arrow_right:before {
  content: "\f105";
}
.icon-arrow_up:before {
  content: "\f106";
}
.icon-arrow_up_small:before {
  content: "\f107";
}
.icon-close:before {
  content: "\f108";
}
.icon-connect:before {
  content: "\f109";
}
.icon-document:before {
  content: "\f10a";
}
.icon-extern:before {
  content: "\f10b";
}
.icon-facebook:before {
  content: "\f10c";
}
.icon-flashmessage_error:before {
  content: "\f10d";
}
.icon-flashmessage_info:before {
  content: "\f10e";
}
.icon-flashmessage_ok:before {
  content: "\f10f";
}
.icon-google:before {
  content: "\f110";
}
.icon-ical:before {
  content: "\f111";
}
.icon-lesezeit:before {
  content: "\f112";
}
.icon-link:before {
  content: "\f113";
}
.icon-linkedin:before {
  content: "\f114";
}
.icon-links:before {
  content: "\f115";
}
.icon-logout:before {
  content: "\f116";
}
.icon-lupe:before {
  content: "\f117";
}
.icon-mail:before {
  content: "\f118";
}
.icon-navi:before {
  content: "\f119";
}
.icon-print:before {
  content: "\f11a";
}
.icon-rss:before {
  content: "\f11b";
}
.icon-spinner:before {
  content: "\f11c";
}
.icon-tick:before {
  content: "\f11d";
}
.icon-twitter:before {
  content: "\f11e";
}
.icon-vcard:before {
  content: "\f11f";
}
.icon-view:before {
  content: "\f120";
}
.icon-xing:before {
  content: "\f121";
}
.icon-youtube:before {
  content: "\f122";
}
/*
font-family: 'Source Serif Pro';
400 -> light
700 -> semibold

font-family: 'Roboto';
700 -> bold
600 -> medium
500 -> light
400 -> thin
*/
/*
.news .month {
	position: relative;
	padding-bottom: 20px;
}

.news .month .top {
	position: absolute;
	top: 12px;
	right: 10px;
	margin: 0;
	color: @text-color;
	text-transform: lowercase;
	font-size: 13px;
	
	&:hover, &:focus, &:active {
		color: @cp-color-2;
	}
		
}
*/
.highlight.stamp {
  position: absolute;
  right: 0;
  top: 50px;
}
.hl2.stamp {
  height: auto;
  padding-bottom: 20px;
}
.hl3.stamp {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  text-transform: uppercase;
}
.read-all {
  position: absolute;
  right: 15px;
  top: 8px;
  font: 700 18px/28px "HelveticaNeue";
  color: #8f9aa3;
}
.read-all:hover {
  color: #f7a600;
}
@media screen and (max-width: 640px) {
  .portal .wrap {
    height: auto !important;
  }
  .portal .hl3.stamp,
  .portal .read-all,
  .portal .teaserL,
  .portal .teaserM,
  .portal .teaserS,
  .portal .teaserXS,
  .portal .highlight.stamp {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    left: auto !important;
  }
  .portal .read-all {
    margin: 0 15px 30px;
    display: inline-block;
    float: right;
  }
}
/*# sourceMappingURL=style.css.map */