<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
	jQuery.mmenu CSS
*/
/*
	jQuery.mmenu panels CSS
*/
.mm-menu.mm-horizontal &gt; .mm-panel {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease; }

.mm-menu .mm-hidden {
  display: none; }

.mm-wrapper {
  overflow-x: hidden;
  position: relative; }

.mm-menu,
.mm-menu &gt; .mm-panel {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0; }

.mm-menu {
  background: inherit;
  display: block;
  overflow: hidden;
  padding: 0; }
  .mm-menu &gt; .mm-panel {
    background: inherit;
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 20px;
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    transform: translate(100%, 0); }
    .mm-menu &gt; .mm-panel.mm-opened {
      -webkit-transform: translate(0%, 0);
      -moz-transform: translate(0%, 0);
      -ms-transform: translate(0%, 0);
      -o-transform: translate(0%, 0);
      transform: translate(0%, 0); }
    .mm-menu &gt; .mm-panel.mm-subopened {
      -webkit-transform: translate(-30%, 0);
      -moz-transform: translate(-30%, 0);
      -ms-transform: translate(-30%, 0);
      -o-transform: translate(-30%, 0);
      transform: translate(-30%, 0); }
    .mm-menu &gt; .mm-panel.mm-highest {
      z-index: 1; }
  .mm-menu .mm-list {
    padding: 20px 0; }
  .mm-menu &gt; .mm-list {
    padding-bottom: 0; }
    .mm-menu &gt; .mm-list:after {
      content: '';
      display: block;
      height: 40px; }

.mm-panel &gt; .mm-list {
  margin-left: -20px;
  margin-right: -20px; }
  .mm-panel &gt; .mm-list:first-child {
    padding-top: 0; }

.mm-list,
.mm-list &gt; li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0; }

.mm-list {
  font: inherit;
  font-size: 14px; }
  .mm-list a,
  .mm-list a:hover {
    text-decoration: none; }
  .mm-list &gt; li {
    position: relative; }
    .mm-list &gt; li &gt; a,
    .mm-list &gt; li &gt; span {
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      color: inherit;
      line-height: 20px;
      display: block;
      padding: 10px 10px 10px 20px;
      margin: 0; }
  .mm-list &gt; li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
    content: '';
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0; }
  .mm-list &gt; li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
    width: auto;
    margin-left: 20px;
    position: relative;
    left: auto; }
  .mm-list a.mm-subopen {
    background: rgba(3, 2, 1, 0);
    width: 40px;
    height: 100%;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2; }
    .mm-list a.mm-subopen:before {
      content: '';
      border-left-width: 1px;
      border-left-style: solid;
      display: block;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0; }
    .mm-list a.mm-subopen.mm-fullsubopen {
      width: 100%; }
      .mm-list a.mm-subopen.mm-fullsubopen:before {
        border-left: none; }
    .mm-list a.mm-subopen + a,
    .mm-list a.mm-subopen + span {
      padding-right: 5px;
      margin-right: 40px; }
  .mm-list &gt; li.mm-selected &gt; a.mm-subopen {
    background: transparent; }
  .mm-list &gt; li.mm-selected &gt; a.mm-fullsubopen + a,
  .mm-list &gt; li.mm-selected &gt; a.mm-fullsubopen + span {
    padding-right: 45px;
    margin-right: 0; }
  .mm-list a.mm-subclose {
    text-indent: 20px;
    padding-top: 30px;
    margin-top: -20px; }
  .mm-list &gt; li.mm-label {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 10px;
    text-transform: uppercase;
    text-indent: 20px;
    line-height: 25px;
    padding-right: 5px; }
  .mm-list &gt; li.mm-spacer {
    padding-top: 40px; }
    .mm-list &gt; li.mm-spacer.mm-label {
      padding-top: 25px; }
  .mm-list a.mm-subopen:after,
  .mm-list a.mm-subclose:before {
    content: '';
    border: 2px solid transparent;
    display: inline-block;
    width: 7px;
    height: 7px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-bottom: -5px;
    position: absolute;
    bottom: 50%; }
  .mm-list a.mm-subopen:after {
    border-top: none;
    border-left: none;
    right: 18px; }
  .mm-list a.mm-subclose:before {
    border-right: none;
    border-bottom: none;
    margin-bottom: -15px;
    left: 22px; }

.mm-menu.mm-vertical .mm-list .mm-panel {
  display: none;
  padding: 10px 0 10px 10px; }
  .mm-menu.mm-vertical .mm-list .mm-panel li:last-child:after {
    border-color: transparent; }
.mm-menu.mm-vertical .mm-list li.mm-opened &gt; .mm-panel {
  display: block; }
.mm-menu.mm-vertical .mm-list &gt; li &gt; a.mm-subopen {
  height: 40px; }
  .mm-menu.mm-vertical .mm-list &gt; li &gt; a.mm-subopen:after {
    top: 16px;
    bottom: auto; }
.mm-menu.mm-vertical .mm-list &gt; li.mm-opened &gt; a.mm-subopen:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }
.mm-menu.mm-vertical .mm-list &gt; li.mm-label &gt; a.mm-subopen {
  height: 25px; }

html.mm-opened .mm-page {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }

.mm-menu {
  background: #333333;
  color: rgba(255, 255, 255, 0.6); }
  .mm-menu .mm-list &gt; li:after {
    border-color: rgba(0, 0, 0, 0.15); }
  .mm-menu .mm-list &gt; li &gt; a.mm-subclose {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.3); }
  .mm-menu .mm-list &gt; li &gt; a.mm-subopen:after, .mm-menu .mm-list &gt; li &gt; a.mm-subclose:before {
    border-color: rgba(255, 255, 255, 0.3); }
  .mm-menu .mm-list &gt; li &gt; a.mm-subopen:before {
    border-color: rgba(0, 0, 0, 0.15); }
  .mm-menu .mm-list &gt; li.mm-selected &gt; a:not(.mm-subopen),
  .mm-menu .mm-list &gt; li.mm-selected &gt; span {
    background: rgba(0, 0, 0, 0.1); }
  .mm-menu .mm-list &gt; li.mm-label {
    background: rgba(255, 255, 255, 0.05); }
  .mm-menu.mm-vertical .mm-list li.mm-opened &gt; a.mm-subopen,
  .mm-menu.mm-vertical .mm-list li.mm-opened &gt; ul {
    background: rgba(255, 255, 255, 0.05); }

/*
	jQuery.mmenu offcanvas addon CSS
*/
.mm-page {
  box-sizing: border-box;
  position: relative; }

.mm-slideout {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease; }

html.mm-opened {
  overflow: hidden;
  position: relative; }
  html.mm-opened body {
    overflow: hidden; }

html.mm-background .mm-page {
  background: inherit; }

#mm-blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999; }

html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
  display: block; }

.mm-menu.mm-offcanvas {
  display: none;
  position: fixed; }
.mm-menu.mm-current {
  display: block; }

.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 440px; }

html.mm-opening .mm-slideout {
  -webkit-transform: translate(80%, 0);
  -moz-transform: translate(80%, 0);
  -ms-transform: translate(80%, 0);
  -o-transform: translate(80%, 0);
  transform: translate(80%, 0); }

@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0); } }
@media all and (min-width: 550px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(440px, 0);
    -moz-transform: translate(440px, 0);
    -ms-transform: translate(440px, 0);
    -o-transform: translate(440px, 0);
    transform: translate(440px, 0); } }

/*
	jQuery.mmenu position extension CSS
*/
.mm-menu.mm-top,
.mm-menu.mm-bottom {
  width: 100%;
  min-width: 100%;
  max-width: 100%; }

.mm-menu.mm-right {
  left: auto;
  right: 0; }

.mm-menu.mm-bottom {
  top: auto;
  bottom: 0; }

html.mm-right.mm-opening .mm-slideout {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0); }

@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0); } }
@media all and (min-width: 550px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-440px, 0);
    -moz-transform: translate(-440px, 0);
    -ms-transform: translate(-440px, 0);
    -o-transform: translate(-440px, 0);
    transform: translate(-440px, 0); } }
/*
	jQuery.mmenu z-position extension CSS
*/
html.mm-front .mm-slideout {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  z-index: 0 !important; }

.mm-menu.mm-front {
  z-index: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); }

html.mm-opened.mm-next .mm-page {
  box-shadow: none; }

.mm-menu.mm-front, .mm-menu.mm-next {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0); }
  .mm-menu.mm-front.mm-right, .mm-menu.mm-next.mm-right {
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    transform: translate(100%, 0); }
.mm-menu.mm-front.mm-top {
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
  transform: translate(0, -100%); }
.mm-menu.mm-front.mm-bottom {
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%); }

html.mm-opening .mm-menu.mm-front, html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }

.mm-menu.mm-front.mm-top, .mm-menu.mm-front.mm-bottom {
  height: 80%;
  min-height: 140px;
  max-height: 880px; }

/*
	jQuery.mmenu searchfield addon CSS
*/
.mm-search,
.mm-search input {
  box-sizing: border-box; }

.mm-list &gt; li.mm-search {
  padding: 10px;
  margin-top: -20px; }
.mm-list &gt; li.mm-subtitle + li.mm-search {
  margin-top: 0; }

div.mm-panel &gt; div.mm-search {
  padding: 0 0 10px 0; }

.mm-menu.mm-hasheader .mm-list &gt; li.mm-search {
  margin-top: 0; }

.mm-menu &gt; .mm-search {
  background: inherit;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2; }

.mm-search {
  padding: 10px; }
  .mm-search input {
    border: none;
    border-radius: 30px;
    font: inherit;
    font-size: 14px;
    line-height: 30px;
    outline: none;
    display: block;
    width: 100%;
    height: 30px;
    margin: 0;
    padding: 0 10px; }
  .mm-search input::-ms-clear {
    display: none; }

.mm-menu .mm-noresultsmsg {
  text-align: center;
  font-size: 21px;
  display: none;
  padding: 60px 0; }
  .mm-menu .mm-noresultsmsg:after {
    border: none !important; }

.mm-noresults .mm-noresultsmsg {
  display: block; }

.mm-menu li.mm-nosubresults &gt; a.mm-subopen {
  display: none; }
  .mm-menu li.mm-nosubresults &gt; a.mm-subopen + a,
  .mm-menu li.mm-nosubresults &gt; a.mm-subopen + span {
    padding-right: 10px; }
.mm-menu.mm-hassearch &gt; .mm-panel {
  padding-top: 70px; }
  .mm-menu.mm-hassearch &gt; .mm-panel &gt; .mm-list:first-child {
    margin-top: -20px; }
.mm-menu.mm-hasheader &gt; .mm-panel &gt; div.mm-search:first-child {
  margin-top: -10px; }
  .mm-menu.mm-hasheader &gt; .mm-panel &gt; div.mm-search:first-child + .mm-list {
    padding-top: 0; }

.mm-menu .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6); }
.mm-menu .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.3); }

/*
	jQuery.mmenu themes extension CSS
*/
html.mm-opened.mm-light .mm-page {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }

.mm-menu.mm-light {
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.6); }
  .mm-menu.mm-light .mm-list &gt; li:after {
    border-color: rgba(0, 0, 0, 0.1); }
  .mm-menu.mm-light .mm-list &gt; li &gt; a.mm-subclose {
    background: rgba(255, 255, 255, 0.6);
    color: rgba(0, 0, 0, 0.3); }
  .mm-menu.mm-light .mm-list &gt; li &gt; a.mm-subopen:after, .mm-menu.mm-light .mm-list &gt; li &gt; a.mm-subclose:before {
    border-color: rgba(0, 0, 0, 0.3); }
  .mm-menu.mm-light .mm-list &gt; li &gt; a.mm-subopen:before {
    border-color: rgba(0, 0, 0, 0.1); }
  .mm-menu.mm-light .mm-list &gt; li.mm-selected &gt; a:not(.mm-subopen),
  .mm-menu.mm-light .mm-list &gt; li.mm-selected &gt; span {
    background: rgba(255, 255, 255, 0.6); }
  .mm-menu.mm-light .mm-list &gt; li.mm-label {
    background: rgba(0, 0, 0, 0.03); }
  .mm-menu.mm-light.mm-vertical .mm-list li.mm-opened &gt; a.mm-subopen,
  .mm-menu.mm-light.mm-vertical .mm-list li.mm-opened &gt; ul {
    background: rgba(0, 0, 0, 0.03); }

.mm-menu.mm-light .mm-buttonbar {
  border-color: rgba(0, 0, 0, 0.6);
  background: #f3f3f3; }
  .mm-menu.mm-light .mm-buttonbar &gt; * {
    border-color: rgba(0, 0, 0, 0.6); }
  .mm-menu.mm-light .mm-buttonbar &gt; input:checked + label {
    background: rgba(0, 0, 0, 0.6);
    color: #f3f3f3; }

.mm-menu.mm-light label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6); }

.mm-menu.mm-light em.mm-counter {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-light .mm-footer {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-light .mm-header {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3); }
  .mm-menu.mm-light .mm-header .mm-prev:before,
  .mm-menu.mm-light .mm-header .mm-next:after,
  .mm-menu.mm-light .mm-header .mm-close:after {
    border-color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-light .mm-list li.mm-label &gt; div &gt; div {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu.mm-light .mm-search input {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6); }
.mm-menu.mm-light .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-light label.mm-toggle {
  background: rgba(0, 0, 0, 0.1); }
  .mm-menu.mm-light label.mm-toggle:before {
    background: #f3f3f3; }
.mm-menu.mm-light input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

html.mm-opened.mm-white .mm-page {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }

.mm-menu.mm-white {
  background: white;
  color: rgba(0, 0, 0, 0.6); }
  .mm-menu.mm-white .mm-list &gt; li:after {
    border-color: rgba(0, 0, 0, 0.1); }
  .mm-menu.mm-white .mm-list &gt; li &gt; a.mm-subclose {
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.3); }
  .mm-menu.mm-white .mm-list &gt; li &gt; a.mm-subopen:after, .mm-menu.mm-white .mm-list &gt; li &gt; a.mm-subclose:before {
    border-color: rgba(0, 0, 0, 0.3); }
  .mm-menu.mm-white .mm-list &gt; li &gt; a.mm-subopen:before {
    border-color: rgba(0, 0, 0, 0.1); }
  .mm-menu.mm-white .mm-list &gt; li.mm-selected &gt; a:not(.mm-subopen),
  .mm-menu.mm-white .mm-list &gt; li.mm-selected &gt; span {
    background: rgba(0, 0, 0, 0.06); }
  .mm-menu.mm-white .mm-list &gt; li.mm-label {
    background: rgba(0, 0, 0, 0.03); }
  .mm-menu.mm-white.mm-vertical .mm-list li.mm-opened &gt; a.mm-subopen,
  .mm-menu.mm-white.mm-vertical .mm-list li.mm-opened &gt; ul {
    background: rgba(0, 0, 0, 0.03); }

.mm-menu.mm-white .mm-buttonbar {
  border-color: rgba(0, 0, 0, 0.6);
  background: white; }
  .mm-menu.mm-white .mm-buttonbar &gt; * {
    border-color: rgba(0, 0, 0, 0.6); }
  .mm-menu.mm-white .mm-buttonbar &gt; input:checked + label {
    background: rgba(0, 0, 0, 0.6);
    color: white; }

.mm-menu.mm-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6); }

.mm-menu.mm-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-white .mm-footer {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-white .mm-header {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3); }
  .mm-menu.mm-white .mm-header .mm-prev:before,
  .mm-menu.mm-white .mm-header .mm-next:after,
  .mm-menu.mm-white .mm-header .mm-close:after {
    border-color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-white .mm-list li.mm-label &gt; div &gt; div {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu.mm-white .mm-search input {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6); }
.mm-menu.mm-white .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu.mm-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1); }
  .mm-menu.mm-white label.mm-toggle:before {
    background: white; }
.mm-menu.mm-white input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

html.mm-opened.mm-black .mm-page {
  box-shadow: none; }

.mm-menu.mm-black {
  background: black;
  color: rgba(255, 255, 255, 0.6); }
  .mm-menu.mm-black .mm-list &gt; li:after {
    border-color: rgba(255, 255, 255, 0.2); }
  .mm-menu.mm-black .mm-list &gt; li &gt; a.mm-subclose {
    background: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.3); }
  .mm-menu.mm-black .mm-list &gt; li &gt; a.mm-subopen:after, .mm-menu.mm-black .mm-list &gt; li &gt; a.mm-subclose:before {
    border-color: rgba(255, 255, 255, 0.3); }
  .mm-menu.mm-black .mm-list &gt; li &gt; a.mm-subopen:before {
    border-color: rgba(255, 255, 255, 0.2); }
  .mm-menu.mm-black .mm-list &gt; li.mm-selected &gt; a:not(.mm-subopen),
  .mm-menu.mm-black .mm-list &gt; li.mm-selected &gt; span {
    background: rgba(255, 255, 255, 0.25); }
  .mm-menu.mm-black .mm-list &gt; li.mm-label {
    background: rgba(255, 255, 255, 0.15); }
  .mm-menu.mm-black.mm-vertical .mm-list li.mm-opened &gt; a.mm-subopen,
  .mm-menu.mm-black.mm-vertical .mm-list li.mm-opened &gt; ul {
    background: rgba(255, 255, 255, 0.15); }

.mm-menu.mm-black .mm-buttonbar {
  border-color: rgba(255, 255, 255, 0.6);
  background: black; }
  .mm-menu.mm-black .mm-buttonbar &gt; * {
    border-color: rgba(255, 255, 255, 0.6); }
  .mm-menu.mm-black .mm-buttonbar &gt; input:checked + label {
    background: rgba(255, 255, 255, 0.6);
    color: black; }

.mm-menu.mm-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6); }

.mm-menu.mm-black em.mm-counter {
  color: rgba(255, 255, 255, 0.3); }

.mm-menu.mm-black .mm-footer {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3); }

.mm-menu.mm-black .mm-header {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3); }
  .mm-menu.mm-black .mm-header .mm-prev:before,
  .mm-menu.mm-black .mm-header .mm-next:after,
  .mm-menu.mm-black .mm-header .mm-close:after {
    border-color: rgba(255, 255, 255, 0.3); }

.mm-menu.mm-black .mm-list li.mm-label &gt; div &gt; div {
  background: rgba(255, 255, 255, 0.15); }

.mm-menu.mm-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6); }
.mm-menu.mm-black .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.3); }

.mm-menu.mm-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2); }
  .mm-menu.mm-black label.mm-toggle:before {
    background: black; }
.mm-menu.mm-black input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

/* ColorBox, (c) 2011 Jack Moore, MIT license */
#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden}#cboxWrapper{max-width:none}#cboxOverlay{position:fixed;width:100%;height:100%}#cboxMiddleLeft,#cboxBottomLeft{clear:left}#cboxContent{position:relative}#cboxLoadedContent{overflow:auto;-webkit-overflow-scrolling:touch}#cboxTitle{margin:0}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%;height:100%}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}.cboxPhoto{float:left;margin:auto;border:0;display:block;max-width:none;-ms-interpolation-mode:bicubic}.cboxIframe{width:100%;height:100%;display:block;border:0;padding:0;margin:0}#colorbox,#cboxContent,#cboxLoadedContent{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}#cboxOverlay{background:#000;opacity:.9;filter:alpha(opacity = 90)}#colorbox{outline:0}#cboxContent{margin-top:20px;background:#000}.cboxIframe{background:#fff}#cboxError{padding:50px;border:1px solid #ccc}#cboxLoadedContent{border:5px solid #000;background:#fff}#cboxTitle{position:absolute;top:-20px;left:0;color:#ccc}#cboxCurrent{position:absolute;top:-20px;right:0;color:#ccc}#cboxLoadingGraphic{background:url("../../assets/jquery/colorbox/1.6.1/images/loading.gif") no-repeat center center}#cboxPrevious,#cboxNext,#cboxSlideshow,#cboxClose{border:0;padding:0;margin:0;overflow:visible;width:auto;background:0}#cboxPrevious:active,#cboxNext:active,#cboxSlideshow:active,#cboxClose:active{outline:0}#cboxSlideshow{position:absolute;top:-20px;right:90px;color:#fff}#cboxPrevious{position:absolute;top:50%;left:5px;margin-top:-32px;background:url("../../assets/jquery/colorbox/1.6.1/images/controls.png") no-repeat top left;width:28px;height:65px;text-indent:-9999px}#cboxPrevious:hover{background-position:bottom left}#cboxNext{position:absolute;top:50%;right:5px;margin-top:-32px;background:url("../../assets/jquery/colorbox/1.6.1/images/controls.png") no-repeat top right;width:28px;height:65px;text-indent:-9999px}#cboxNext:hover{background-position:bottom right}#cboxClose{position:absolute;top:5px;right:5px;display:block;background:url("../../assets/jquery/colorbox/1.6.1/images/controls.png") no-repeat top center;width:38px;height:19px;text-indent:-9999px}#cboxClose:hover{background-position:bottom center}
/* MediaElement.js, (c) 2010-2014 John Dyer, MIT license */
.mejs-offscreen{position:absolute !important;top:-10000px;left:-10000px;overflow:hidden;width:1px;height:1px}.mejs-container{position:relative;background:#000;font-family:Helvetica,Arial;text-align:left;vertical-align:top;text-indent:0}.mejs-audio{margin-top:18px}.mejs-container:focus{outline:0}.me-plugin{position:absolute}.mejs-embed,.mejs-embed body{width:100%;height:100%;margin:0;padding:0;background:#000;overflow:hidden}.mejs-fullscreen{overflow:hidden !important}.mejs-container-fullscreen{position:fixed;left:0;top:0;right:0;bottom:0;overflow:hidden;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{width:100%;height:100%}.mejs-clear{clear:both}.mejs-background{position:absolute;top:0;left:0}.mejs-mediaelement{position:absolute;top:0;left:0;width:100%;height:100%}.mejs-poster{position:absolute;top:0;left:0;background-size:contain;background-position:50% 50%;background-repeat:no-repeat}:root .mejs-poster img{display:none}.mejs-poster img{border:0;padding:0;border:0}.mejs-overlay{position:absolute;top:0;left:0}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{position:absolute;top:50%;left:50%;width:100px;height:100px;margin:-50px 0 0 -50px;background:url("../../assets/jquery/mediaelement/2.19.0.1/images/bigplay.svg") no-repeat}.no-svg .mejs-overlay-button{background-image:url("../../assets/jquery/mediaelement/2.19.0.1/images/bigplay.png")}.mejs-overlay:hover .mejs-overlay-button{background-position:0 -100px}.mejs-overlay-loading{position:absolute;top:50%;left:50%;width:80px;height:80px;margin:-40px 0 0 -40px;background:#333;background:url("../../assets/jquery/mediaelement/2.19.0.1/images/background.png");background:rgba(0,0,0,0.9);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(50,50,50,0.9)),to(rgba(0,0,0,0.9)));background:-webkit-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:-moz-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:-o-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:-ms-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:linear-gradient(rgba(50,50,50,0.9),rgba(0,0,0,0.9))}.mejs-overlay-loading span{display:block;width:80px;height:80px;background:transparent url("../../assets/jquery/mediaelement/2.19.0.1/images/loading.gif") 50% 50% no-repeat}.mejs-container .mejs-controls{position:absolute;list-style-type:none;margin:0;padding:0;bottom:0;left:0;background:url("../../assets/jquery/mediaelement/2.19.0.1/images/background.png");background:rgba(0,0,0,0.7);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(50,50,50,0.7)),to(rgba(0,0,0,0.7)));background:-webkit-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-moz-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-o-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-ms-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:linear-gradient(rgba(50,50,50,0.7),rgba(0,0,0,0.7));height:30px;width:100%}.mejs-container .mejs-controls div{list-style-type:none;background-image:none;display:block;float:left;margin:0;padding:0;width:26px;height:26px;font-size:11px;line-height:11px;font-family:Helvetica,Arial;border:0}.mejs-controls .mejs-button button{cursor:pointer;display:block;font-size:0;line-height:0;text-decoration:none;margin:7px 5px;padding:0;position:absolute;height:16px;width:16px;border:0;background:transparent url("../../assets/jquery/mediaelement/2.19.0.1/images/controls.svg") no-repeat}.no-svg .mejs-controls .mejs-button button{background-image:url("../../assets/jquery/mediaelement/2.19.0.1/images/controls.png")}.mejs-controls .mejs-button button:focus{outline:dotted 1px #999}.mejs-container .mejs-controls .mejs-time{color:#fff;display:block;height:17px;width:auto;padding:10px 3px 0 3px;overflow:hidden;text-align:center;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}.mejs-container .mejs-controls .mejs-time a{color:#fff;font-size:11px;line-height:12px;display:block;float:left;margin:1px 2px 0 0;width:auto}.mejs-controls .mejs-play button{background-position:0 0}.mejs-controls .mejs-pause button{background-position:0 -16px}.mejs-controls .mejs-stop button{background-position:-112px 0}.mejs-controls div.mejs-time-rail{direction:ltr;width:200px;padding-top:5px}.mejs-controls .mejs-time-rail span,.mejs-controls .mejs-time-rail a{display:block;position:absolute;width:180px;height:10px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;cursor:pointer}.mejs-controls .mejs-time-rail .mejs-time-total{margin:5px;background:#333;background:rgba(50,50,50,0.8);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(30,30,30,0.8)),to(rgba(60,60,60,0.8)));background:-webkit-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-moz-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-o-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-ms-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:linear-gradient(rgba(30,30,30,0.8),rgba(60,60,60,0.8))}.mejs-controls .mejs-time-rail .mejs-time-buffering{width:100%;background-image:-o-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:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));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:-moz-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:-ms-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);-webkit-background-size:15px 15px;-moz-background-size:15px 15px;-o-background-size:15px 15px;background-size:15px 15px;-webkit-animation:buffering-stripes 2s linear infinite;-moz-animation:buffering-stripes 2s linear infinite;-ms-animation:buffering-stripes 2s linear infinite;-o-animation:buffering-stripes 2s linear infinite;animation:buffering-stripes 2s linear infinite}@-webkit-keyframes buffering-stripes{from{background-position:0 0}to{background-position:30px 0}}@-moz-keyframes buffering-stripes{from{background-position:0 0}to{background-position:30px 0}}@-ms-keyframes buffering-stripes{from{background-position:0 0}to{background-position:30px 0}}@-o-keyframes buffering-stripes{from{background-position:0 0}to{background-position:30px 0}}@keyframes buffering-stripes{from{background-position:0 0}to{background-position:30px 0}}.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#3caac8;background:rgba(60,170,200,0.8);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(44,124,145,0.8)),to(rgba(78,183,212,0.8)));background:-webkit-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:-moz-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:-o-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:-ms-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:linear-gradient(rgba(44,124,145,0.8),rgba(78,183,212,0.8));width:0}.mejs-controls .mejs-time-rail .mejs-time-current{background:#fff;background:rgba(255,255,255,0.8);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(255,255,255,0.9)),to(rgba(200,200,200,0.8)));background:-webkit-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-moz-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-o-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-ms-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:linear-gradient(rgba(255,255,255,0.9),rgba(200,200,200,0.8));width:0}.mejs-controls .mejs-time-rail .mejs-time-handle{display:none;position:absolute;margin:0;width:10px;background:#fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;cursor:pointer;border:solid 2px #333;top:-2px;text-align:center}.mejs-controls .mejs-time-rail .mejs-time-float{position:absolute;display:none;background:#eee;width:36px;height:17px;border:solid 1px #333;top:-26px;margin-left:-18px;text-align:center;color:#111}.mejs-controls .mejs-time-rail .mejs-time-float-current{margin:2px;width:30px;display:block;text-align:center;left:0}.mejs-controls .mejs-time-rail .mejs-time-float-corner{position:absolute;display:block;width:0;height:0;line-height:0;border:solid 5px #eee;border-color:#eee transparent transparent transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;top:15px;left:13px}.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float{width:48px}.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-current{width:44px}.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-corner{left:18px}.mejs-controls .mejs-fullscreen-button button{background-position:-32px 0}.mejs-controls .mejs-unfullscreen button{background-position:-32px -16px}.mejs-controls .mejs-mute button{background-position:-16px -16px}.mejs-controls .mejs-unmute button{background-position:-16px 0}.mejs-controls .mejs-volume-button{position:relative}.mejs-controls .mejs-volume-button .mejs-volume-slider{display:none;height:115px;width:25px;background:url("../../assets/jquery/mediaelement/2.19.0.1/images/background.png");background:rgba(50,50,50,0.7);-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;top:-115px;left:0;z-index:1;position:absolute;margin:0}.mejs-controls .mejs-volume-button:hover{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total{position:absolute;left:11px;top:8px;width:2px;height:100px;background:#ddd;background:rgba(255,255,255,0.5);margin:0}.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current{position:absolute;left:11px;top:8px;width:2px;height:100px;background:#ddd;background:rgba(255,255,255,0.9);margin:0}.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle{position:absolute;left:4px;top:-3px;width:16px;height:6px;background:#ddd;background:rgba(255,255,255,0.9);cursor:N-resize;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;margin:0}.mejs-controls a.mejs-horizontal-volume-slider{height:26px;width:56px;position:relative;display:block;float:left;vertical-align:middle}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total{position:absolute;left:0;top:11px;width:50px;height:8px;margin:0;padding:0;font-size:1px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background:#333;background:rgba(50,50,50,0.8);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(30,30,30,0.8)),to(rgba(60,60,60,0.8)));background:-webkit-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-moz-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-o-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-ms-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:linear-gradient(rgba(30,30,30,0.8),rgba(60,60,60,0.8))}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current{position:absolute;left:0;top:11px;width:50px;height:8px;margin:0;padding:0;font-size:1px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background:#fff;background:rgba(255,255,255,0.8);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(255,255,255,0.9)),to(rgba(200,200,200,0.8)));background:-webkit-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-moz-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-o-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-ms-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:linear-gradient(rgba(255,255,255,0.9),rgba(200,200,200,0.8))}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle{display:none}.mejs-controls .mejs-captions-button{position:relative}.mejs-controls .mejs-captions-button button{background-position:-48px 0}.mejs-controls .mejs-captions-button .mejs-captions-selector{visibility:hidden;position:absolute;bottom:26px;right:-51px;width:85px;height:100px;background:url("../../assets/jquery/mediaelement/2.19.0.1/images/background.png");background:rgba(50,50,50,0.7);border:solid 1px transparent;padding:10px 10px 0 10px;overflow:hidden;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.mejs-controls .mejs-captions-button .mejs-captions-selector ul{margin:0;padding:0;display:block;list-style-type:none !important;overflow:hidden}.mejs-controls .mejs-captions-button .mejs-captions-selector ul li{margin:0 0 6px 0;padding:0;list-style-type:none !important;display:block;color:#fff;overflow:hidden}.mejs-controls .mejs-captions-button .mejs-captions-selector ul li input{clear:both;float:left;margin:3px 3px 0 5px}.mejs-controls .mejs-captions-button .mejs-captions-selector ul li label{width:55px;float:left;padding:4px 0 0 0;line-height:15px;font-family:helvetica,arial;font-size:10px}.mejs-controls .mejs-captions-button .mejs-captions-translations{font-size:10px;margin:0 0 5px 0}.mejs-chapters{position:absolute;top:0;left:0;-xborder-right:solid 1px #fff;width:10000px;z-index:1}.mejs-chapters .mejs-chapter{position:absolute;float:left;background:#222;background:rgba(0,0,0,0.7);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(50,50,50,0.7)),to(rgba(0,0,0,0.7)));background:-webkit-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-moz-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-o-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-ms-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:linear-gradient(rgba(50,50,50,0.7),rgba(0,0,0,0.7));filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,startColorstr=#323232,endColorstr=#000000);overflow:hidden;border:0}.mejs-chapters .mejs-chapter .mejs-chapter-block{font-size:11px;color:#fff;padding:5px;display:block;border-right:solid 1px #333;border-bottom:solid 1px #333;cursor:pointer}.mejs-chapters .mejs-chapter .mejs-chapter-block-last{border-right:0}.mejs-chapters .mejs-chapter .mejs-chapter-block:hover{background:#666;background:rgba(102,102,102,0.7);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(102,102,102,0.7)),to(rgba(50,50,50,0.6)));background:-webkit-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:-moz-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:-o-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:-ms-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:linear-gradient(rgba(102,102,102,0.7),rgba(50,50,50,0.6));filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,startColorstr=#666666,endColorstr=#323232)}.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-title{font-size:12px;font-weight:bold;display:block;white-space:nowrap;text-overflow:ellipsis;margin:0 0 3px 0;line-height:12px}.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-timespan{font-size:12px;line-height:12px;margin:3px 0 4px 0;display:block;white-space:nowrap;text-overflow:ellipsis}.mejs-captions-layer{position:absolute;bottom:0;left:0;text-align:center;line-height:20px;font-size:16px;color:#fff}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:normal}.mejs-captions-position{position:absolute;width:100%;bottom:15px;left:0}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text{padding:3px 5px;background:url("../../assets/jquery/mediaelement/2.19.0.1/images/background.png");background:rgba(20,20,20,0.5);white-space:pre-wrap}.me-cannotplay a{color:#fff;font-weight:bold}.me-cannotplay span{padding:15px;display:block}.mejs-controls .mejs-loop-off button{background-position:-64px -16px}.mejs-controls .mejs-loop-on button{background-position:-64px 0}.mejs-controls .mejs-backlight-off button{background-position:-80px -16px}.mejs-controls .mejs-backlight-on button{background-position:-80px 0}.mejs-controls .mejs-picturecontrols-button{background-position:-96px 0}.mejs-contextmenu{position:absolute;width:150px;padding:10px;border-radius:4px;top:0;left:0;background:#fff;border:solid 1px #999;z-index:1001}.mejs-contextmenu .mejs-contextmenu-separator{height:1px;font-size:0;margin:5px 6px;background:#333}.mejs-contextmenu .mejs-contextmenu-item{font-family:Helvetica,Arial;font-size:12px;padding:4px 6px;cursor:pointer;color:#333}.mejs-contextmenu .mejs-contextmenu-item:hover{background:#2c7c91;color:#fff}.mejs-controls .mejs-sourcechooser-button{position:relative}.mejs-controls .mejs-sourcechooser-button button{background-position:-128px 0}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector{visibility:hidden;position:absolute;bottom:26px;right:-10px;width:130px;height:100px;background:url("../../assets/jquery/mediaelement/2.19.0.1/images/background.png");background:rgba(50,50,50,0.7);border:solid 1px transparent;padding:10px;overflow:hidden;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul{margin:0;padding:0;display:block;list-style-type:none !important;overflow:hidden}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li{margin:0 0 6px 0;padding:0;list-style-type:none !important;display:block;color:#fff;overflow:hidden}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li input{clear:both;float:left;margin:3px 3px 0 5px}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li label{width:100px;float:left;padding:4px 0 0 0;line-height:15px;font-family:helvetica,arial;font-size:10px}.mejs-postroll-layer{position:absolute;bottom:0;left:0;width:100%;height:100%;background:url("../../assets/jquery/mediaelement/2.19.0.1/images/background.png");background:rgba(50,50,50,0.7);z-index:1000;overflow:hidden}.mejs-postroll-layer-content{width:100%;height:100%}.mejs-postroll-close{position:absolute;right:0;top:0;background:url("../../assets/jquery/mediaelement/2.19.0.1/images/background.png");background:rgba(50,50,50,0.7);color:#fff;padding:4px;z-index:100;cursor:pointer}div.mejs-speed-button{width:46px !important;position:relative}.mejs-controls .mejs-button.mejs-speed-button button{background:transparent;width:36px;font-size:11px;line-height:normal;color:#fff}.mejs-controls .mejs-speed-button .mejs-speed-selector{display:none;position:absolute;top:-100px;left:-10px;width:60px;height:100px;background:url("../../assets/jquery/mediaelement/2.19.0.1/images/background.png");background:rgba(50,50,50,0.7);border:solid 1px transparent;padding:0;overflow:hidden;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.mejs-controls .mejs-speed-button:hover&gt;.mejs-speed-selector{display:block}.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label.mejs-speed-selected{color:rgba(33,248,248,1)}.mejs-controls .mejs-speed-button .mejs-speed-selector ul{margin:0;padding:0;display:block;list-style-type:none !important;overflow:hidden}.mejs-controls .mejs-speed-button .mejs-speed-selector ul li{margin:0 0 6px 0;padding:0 10px;list-style-type:none !important;display:block;color:#fff;overflow:hidden}.mejs-controls .mejs-speed-button .mejs-speed-selector ul li input{clear:both;float:left;margin:3px 3px 0 5px;display:none}.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label{width:60px;float:left;padding:4px 0 0 0;line-height:15px;font-family:helvetica,arial;font-size:11.5px;color:white;margin-left:5px;cursor:pointer}.mejs-controls .mejs-speed-button .mejs-speed-selector ul li:hover{background-color:#c8c8c8 !important;background-color:rgba(255,255,255,.4) !important}.mejs-controls .mejs-button.mejs-jump-forward-button{background:transparent url("../../assets/jquery/mediaelement/2.19.0.1/css/jumpforward.png") no-repeat;background-position:3px 3px}.mejs-controls .mejs-button.mejs-jump-forward-button button{background:transparent;font-size:9px;line-height:normal;color:#fff}.mejs-controls .mejs-button.mejs-skip-back-button{background:transparent url("../../assets/jquery/mediaelement/2.19.0.1/images/skipback.png") no-repeat;background-position:3px 3px}.mejs-controls .mejs-button.mejs-skip-back-button button{background:transparent;font-size:9px;line-height:normal;color:#fff}
/* Swipe 2.0, (C) Brad Birdsall 2012, MIT license */
.content-slider{overflow:hidden;visibility:hidden;position:relative}.slider-wrapper{overflow:hidden;position:relative}.slider-wrapper&gt;*{float:left;width:100%;position:relative}.slider-control{height:30px;position:relative}.slider-control a,.slider-control .slider-menu{position:absolute;top:9px;display:inline-block}.slider-control .slider-prev{left:0}.slider-control .slider-next{right:0}.slider-control .slider-menu{top:0;width:50%;left:50%;margin-left:-25%;font-size:27px;text-align:center}.slider-control .slider-menu b{color:#bbb;cursor:pointer}.slider-control .slider-menu b.active{color:#666}
/* GlobalStyles/Defaults.css */
body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}#container,.inside{position:relative}#main{width:100%}#footer{clear:both}#main .inside{min-height:1px}#container:after,.custom:after{content:"";display:table;clear:both}
.float_left{float:left}.float_right{float:right}.block{overflow:hidden}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.clearfloat{float:none;clear:both}
select,input,textarea{font-size:99%}
img{max-width:100%;height:auto}.ie7 img{-ms-interpolation-mode:bicubic}.ie8 img{width:auto}
figure.float_left{margin:0 20px 10px 0}figure.float_right{margin:0 0 10px 20px}
.ce_gallery&gt;ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery&gt;ul li{float:left}.ce_gallery&gt;ul li.col_first{clear:left}
.w50{width:50%}.pr20px{padding-right:20px}
/* GlobalStyles/Fontawesome.css */
@font-face{font-family:'FontAwesome';src:url("../../files/webfonts/fontawesome-webfont.eot?v=4.2.0");src:url("../../files/webfonts/fontawesome-webfont.eot?#iefix&amp;v=4.2.0") format('embedded-opentype'),url("../../files/webfonts/fontawesome-webfont.woff?v=4.2.0") format('woff'),url("../../files/webfonts/fontawesome-webfont.ttf?v=4.2.0") format('truetype'),url("../../files/webfonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{vertical-align:-15%;font-size:1.33333333em;line-height:.75em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{margin-left:2.14285714em;padding-left:0;list-style-type:none}.fa-ul&gt;li{position:relative}.fa-li{width:2.14285714em;left:-2.14285714em;position:absolute;text-align:center;top:.14285714em}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border-style:.08em;border-color:#eee;border-radius:.1em;behavior:url("assets/css3pie/1.0.0/PIE.htc");behavior:url("assets/css3pie/1.0.0/PIE.htc")}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}    100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}    100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{width:2em;height:2em;position:relative;display:inline-block;vertical-align:middle;line-height:2em}.fa-stack-1x,.fa-stack-2x{width:100%;left:0;position:absolute;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-snapchat:before{content: "\f2ab"}.fa-snapchat-ghost:before{content: "\f2ac"}.fa-snapchat-square:before{content: "\f2ad"}
/* DKTheme_4_Navigation.css */
#mainmenu{width:100%;display:block;margin:0 auto;z-index:9000;background-color:#333333 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background-color:#fd0}.nav-main{overflow:visible}.nav-main ul{width:100%;height:50px;max-width:1600px;padding:0;list-style-type:none;margin:0 auto;display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */display: -ms-flexbox;      /* TWEENER - IE 10 */display: -webkit-flex;     /* NEW - Chrome */display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */justify-content: center}.nav-main ul li{font-size:14px}.nav-main &gt; ul.level_1 &gt; li{margin:0;padding:0;-webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */-moz-box-flex: 1;         /* OLD - Firefox 19- */-webkit-flex: 1;          /* Chrome */-ms-flex: 1;              /* IE 10 */flex: 1;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */background-color:#333333 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background-color:#fd0}.nav-main &gt; ul.level_1 &gt; li:last-child{border-right:none}.nav-main ul li a,.nav-main ul li span{display:block;text-align:center;line-height:50px;font-weight:bold;text-decoration: none;color:#ffffff !important;color:#333}.nav-main ul.level_2 &gt; li{margin:0;padding:0;-webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */-moz-box-flex: 1;         /* OLD - Firefox 19- */-webkit-flex: 1;          /* Chrome */-ms-flex: 1;              /* IE 10 */flex: 1;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */background-color:#333333 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background-color: #fff;border-bottom:1px solid rgba(0,0,0,0.3)}.nav-main ul li ul{display:none}.nav-main ul li:hover ul{display:block}.nav-main ul li ul li{position:relative;clear:both;display:block;z-index:9999}.nav-main ul li ul li a{display:block}.nav-main ul.level_1 &gt; li.trail,.nav-main ul.level_2 &gt; li.trail{color:#333;background-color:#b81818 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background-color:#fd0}.nav-main ul.level_1 &gt; li:hover,.nav-main ul.level_2 &gt; li:hover{background-color:#b81818 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background-color:#fd0}.nav-main ul.level_1 &gt; li:hover a,.nav-main ul.level_2 &gt; li:hover a{color:#ffffff !important;color:#333}.nav-main .active{background-color:#b81818 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background-color:#fd0;color:#ffffff !important;color:#333}#mainmenu .level_1 &gt; li.submenu:hover,#mainmenu .level_1 &gt; li.submenu:hover ul &gt; li{-webkit-box-shadow:0 10px 5px 0 rgba(0,0,0,.3);box-shadow:0 10px 5px 0 rgba(0,0,0,.3);behavior:url("assets/css3pie/1.0.0/PIE.htc")}#sticky_buttons{right:-152px;top:300px;position:fixed;z-index:8999}#sticky_buttons a::before{width:48px;height:48px;position:relative;display:inline-block;margin:0;padding:0;text-align:center}#sticky_buttons a{width:200px;height:48px;right:0;position:relative;display:block;margin-bottom:1px;padding:0;vertical-align:middle;text-align:left;-webkit-box-shadow:5px 5px 5px 0 rgba(85,85,85,.3);box-shadow:5px 5px 5px 0 rgba(85,85,85,.3);font:20px/48px FontAwesome;behavior:url("assets/css3pie/1.0.0/PIE.htc");outline: none;background-color:#333333 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background-color:#333;color:#ffffff !important;color:#fff}#sticky_buttons &gt; a &gt; span{font:16px/48px "Open Sans",sans-serif}#sticky_buttons a:hover,#sticky_buttons a:active,#sticky_buttons a:focus{right:152px;-webkit-box-shadow:5px 5px 5px 0 rgba(85,85,85,.5);box-shadow:5px 5px 5px 0 rgba(85,85,85,.5);font-size:25px;behavior:url("assets/css3pie/1.0.0/PIE.htc");transition: all 0.25s ease-out 0s;background-color:#b81818 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background-color:#fd0;color:#ffffff !important;color:#333}#footer .mod_sitemap ul{margin:0;padding:0;list-style-type:none}#footer .mod_sitemap{overflow:hidden;padding-top:30px;padding-right:30px;padding-bottom:30px}#footer .mod_sitemap ul.level_1{padding:0}#footer .mod_sitemap ul.level_1 &gt; li{width:20%;float:left;display:block;padding-bottom:30px}#footer .mod_sitemap ul &gt; li{list-style-type:none}#footer .mod_sitemap ul.level_1 &gt; li a{display:block;margin-bottom:14px;font:13px 'Open Sans',sans-serif;text-decoration:none;text-transform:uppercase;font-weight: 700;Color: #ffffff !important;color:#666}#footer .mod_sitemap ul.level_1 &gt; li a:hover{Color: #b81818 !important; color:#cfcfcf}#footer .mod_sitemap ul.level_2 &gt; li a{display:block;margin-bottom:14px;font:13px 'Open Sans',sans-serif;text-decoration:none;text-transform:none;color:#ffffff !important;color:#ccc}#footer .mod_sitemap ul.level_2 &gt; li a:hover{color:#b81818 !important;color:#cfcfcf}#footernavi{padding-bottom:20px}#footernavi ul li{float:left;display:block;padding-right:12px;padding-left:12px;font:12px 'Open Sans',sans-serif;color:#ffffff !important;color:#666}#footernavi ul li a,#footernavi ul li a:hover,#footernavi ul li a:focus{white-space:nowrap;text-decoration:none;Color: #ffffff !important;Color: #666}#footernavi ul li span{cursor: default}#footernavi ul li:first-child{padding-left:0}.x{}#navmobile{display:none}#navmobile,.mm-menu.mm-white{padding:15px 30px;text-align:right;background:#333333 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background:#333}#navmobile .icon-menu{white-space:nowrap;font:28px/1 FontAwesome;letter-spacing:0;text-rendering: auto;color:#ffffff !important;color:#fff}#navmobile .icon-menu:hover,#navmobile .icon-menu:active,#navmobile .icon-menu:focus{color:#ffffff !important;color:#fd0}#navmobile .icon-menu::before{content:"\f0c9"}#navigation_mobile ul{margin:0;padding:0}#navigation_mobile li{border-bottom:1px solid #ccc}#navigation_mobile li{text-align:left;font:24px/100px 'Open Sans',sans-serif;background:#ffffff !important;background:#fff}#navigation_mobile li a,#navigation_mobile li span{height:90px;padding:0 3.9%;line-height:90px;text-transform:uppercase;font-weight:700;border-color:#333333 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;border-color:#333}#navigation_mobile li span.active{text-transform:none;color:#ffffff !important;color:#333}#navigation_mobile li a:hover,#navigation_mobile li a:focus{color:#ffffff !important;color:#333;background:#b81818 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background:#fd0}#navigation_mobile .level_2 li{border-bottom:1px solid #ccc;background:#f7f7f7 !important;background:#eee}#navigation_mobile .level_2 li:last-child{border-bottom:0}#navigation_mobile .level_2 li a{font:24px/90px 'Open Sans',sans-serif;text-transform:none;font-weight: 400}#navigation_mobile .level_2 li span{font:24px/100px 'Open Sans',sans-serif;font-weight: 700}.mm-list &gt; li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults)::after{border-bottom:0}.mm-menu.mm-vertical .mm-list &gt; li &gt; a.mm-subopen::after{bottom:auto;top:40px}.mm-menu.mm-white .mm-list &gt; li &gt; a.mm-subopen::after,.mm-menu.mm-white .mm-list &gt; li &gt; a.mm-subclose::before{border-color:#333333 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;border-color:#333}.mm-search{visibility:hidden}.mm-list a.mm-subclose{margin-top:0}.mm-menu.mm-white .mm-list &gt; li &gt; a.mm-subclose{padding-left:45px !important}.mm-list a.mm-subopen{background-color:rgba(0,0,0,.1)}.mm-list a.mm-subopen::after,.mm-list a.mm-subclose::before{width:45px;height:45px;bottom:auto;left:0;top:0;text-align:center;border:0;font-family:FontAwesome;content:"\f100";transform:none}.mm-menu.mm-white .mm-list &gt; li &gt; a.mm-subopen::after{width:45px;height:45px;left:0;top:auto;display:block;content:"\f101"}
/* DKTheme_4_General.css */
@font-face{font-family: 'Open Sans';  font-style: normal;  font-weight: 300;  src: url("../../assets/fonts/open-sans-v15-latin-300.eot"); /* IE9 Compat Modes */  src: local('Open Sans Light'), local('OpenSans-Light'),       url("../../assets/fonts/open-sans-v15-latin-300.eot?#iefix") format('embedded-opentype'), /* IE6-IE8 */       url("../../assets/fonts/open-sans-v15-latin-300.woff2") format('woff2'), /* Super Modern Browsers */       url("../../assets/fonts/open-sans-v15-latin-300.woff") format('woff'), /* Modern Browsers */       url("../../assets/fonts/open-sans-v15-latin-300.ttf") format('truetype'), /* Safari, Android, iOS */       url("../../assets/fonts/open-sans-v15-latin-300.svg#OpenSans") format('svg'); /* Legacy iOS */}@font-face{font-family: 'Open Sans';  font-style: italic;  font-weight: 300;  src: url("../../assets/fonts/open-sans-v15-latin-300italic.eot"); /* IE9 Compat Modes */  src: local('Open Sans Light Italic'), local('OpenSans-LightItalic'),       url("../../assets/fonts/open-sans-v15-latin-300italic.eot?#iefix") format('embedded-opentype'), /* IE6-IE8 */       url("../../assets/fonts/open-sans-v15-latin-300italic.woff2") format('woff2'), /* Super Modern Browsers */       url("../../assets/fonts/open-sans-v15-latin-300italic.woff") format('woff'), /* Modern Browsers */       url("../../assets/fonts/open-sans-v15-latin-300italic.ttf") format('truetype'), /* Safari, Android, iOS */       url("../../assets/fonts/open-sans-v15-latin-300italic.svg#OpenSans") format('svg'); /* Legacy iOS */}@font-face{font-family: 'Open Sans';  font-style: normal;  font-weight: 400;  src: url("../../assets/fonts/open-sans-v15-latin-regular.eot"); /* IE9 Compat Modes */  src: local('Open Sans Regular'), local('OpenSans-Regular'),       url("../../assets/fonts/open-sans-v15-latin-regular.eot?#iefix") format('embedded-opentype'), /* IE6-IE8 */       url("../../assets/fonts/open-sans-v15-latin-regular.woff2") format('woff2'), /* Super Modern Browsers */       url("../../assets/fonts/open-sans-v15-latin-regular.woff") format('woff'), /* Modern Browsers */       url("../../assets/fonts/open-sans-v15-latin-regular.ttf") format('truetype'), /* Safari, Android, iOS */       url("../../assets/fonts/open-sans-v15-latin-regular.svg#OpenSans") format('svg'); /* Legacy iOS */}@font-face{font-family: 'Open Sans';  font-style: italic;  font-weight: 400;  src: url("../../assets/fonts/open-sans-v15-latin-italic.eot"); /* IE9 Compat Modes */  src: local('Open Sans Italic'), local('OpenSans-Italic'),       url("../../assets/fonts/open-sans-v15-latin-italic.eot?#iefix") format('embedded-opentype'), /* IE6-IE8 */       url("../../assets/fonts/open-sans-v15-latin-italic.woff2") format('woff2'), /* Super Modern Browsers */       url("../../assets/fonts/open-sans-v15-latin-italic.woff") format('woff'), /* Modern Browsers */       url("../../assets/fonts/open-sans-v15-latin-italic.ttf") format('truetype'), /* Safari, Android, iOS */       url("../../assets/fonts/open-sans-v15-latin-italic.svg#OpenSans") format('svg'); /* Legacy iOS */}@font-face{font-family: 'Open Sans';  font-style: normal;  font-weight: 700;  src: url("../../assets/fonts/open-sans-v15-latin-700.eot"); /* IE9 Compat Modes */  src: local('Open Sans Bold'), local('OpenSans-Bold'),       url("../../assets/fonts/open-sans-v15-latin-700.eot?#iefix") format('embedded-opentype'), /* IE6-IE8 */       url("../../assets/fonts/open-sans-v15-latin-700.woff2") format('woff2'), /* Super Modern Browsers */       url("../../assets/fonts/open-sans-v15-latin-700.woff") format('woff'), /* Modern Browsers */       url("../../assets/fonts/open-sans-v15-latin-700.ttf") format('truetype'), /* Safari, Android, iOS */       url("../../assets/fonts/open-sans-v15-latin-700.svg#OpenSans") format('svg'); /* Legacy iOS */}@font-face{font-family: 'Open Sans';  font-style: italic;  font-weight: 700;  src: url("../../assets/fonts/open-sans-v15-latin-700italic.eot"); /* IE9 Compat Modes */  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'),       url("../../assets/fonts/open-sans-v15-latin-700italic.eot?#iefix") format('embedded-opentype'), /* IE6-IE8 */       url("../../assets/fonts/open-sans-v15-latin-700italic.woff2") format('woff2'), /* Super Modern Browsers */       url("../../assets/fonts/open-sans-v15-latin-700italic.woff") format('woff'), /* Modern Browsers */       url("../../assets/fonts/open-sans-v15-latin-700italic.ttf") format('truetype'), /* Safari, Android, iOS */       url("../../assets/fonts/open-sans-v15-latin-700italic.svg#OpenSans") format('svg'); /* Legacy iOS */}*,*:before,*:after{-ms-box-sizing: border-box;-o-box-sizing: border-box;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box}body{background-color:#ffffff !important;background-color:#fff}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,figure{margin:0;padding:0;font:16px/1.5 sans-serif;font-weight:400;color:#000000 !important;color:#111}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){height:0;display:none}figure{line-height:0}img{border:0}sub,sup{line-height:0}a,a:hover,a:focus{text-decoration:none;background-color: transparent;word-wrap: normal;outline: none;color:#b81818 !important;color:#fd0}a:hover,a:focus{color:#333333 !important;Color:#fe0}.d-none{display:none !important}div[class^="ce_"]{margin-bottom:30px}.float_right,.right{float:right}.float_left,.left{float:left}.clearfloat{float:none;clear:both}figure.float_left{margin:0 20px 10px 0}figure.float_right{margin:0 0 10px 20px}.table_cell{display:table-cell}.valign_top{vertical-align:top}figure.float_right{margin:0 0 10px 20px}figure.float_left{margin:0 20px 10px 0}figure.float_above{margin:0 0 10px}figure.float_below{margin:10px 0 0}.caption{padding-top:5px;padding-bottom:5px;text-align:center;font-size:12px;line-height:1.5em;max-width:100% !important;font-weight: 700}.x{}.w10p{width:10%}.w20p{width:20%}.w30p{width:30%}.w40p{width:40%}.w50p{width:50%}.w60p{width:60%}.w70p{width:70%}.w80p{width:80%}.w90p{width:90%}.w100p{width:100% !important}.w500px{width:500px;max-width:100%}.x{}.mr20px{margin-right:20px}.ml20px{margin-left:20px}.mb10px{margin-bottom:10px}.x{}.pl20px{padding-left:20px}.pr20px{padding-right:20px}.x{}html{font:100.01% Sans Serif,sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}#wrapper{width:100%;margin:0 auto;overflow-x: hidden}#wrapper #container #main,#footer .inside{max-width:1600px;margin:0 auto;padding-top:30px;padding-bottom:30px}#container,#footer{padding-right:5.125%;padding-left:5.125%}.x{}.invisible,[hidden]{display:none}.x{}.clear{float:none;clear:both}.clearfix::before,.clearfix::after,.dl-horizontal dd::before,.dl-horizontal dd::after,.container::before,.container::after,.container-fluid::before,.container-fluid::after,.row::before,.row::after{clear:both;display:table;content: ""}.x{}.no_margin{margin:0 !important}.no_padding{padding:0 !important}.gradient{filter: none}#colorbox{z-index:99999}.x{}.ce_text{overflow:hidden}.contentbox,.teaserbox,.layout_latest,.ce_dk_team .teammember,.mod_dk_teamcontact .teammember,.ce_dk_partner_companies .partnerCompany,.ce_dk_videogallery_list .video_item{overflow:hidden;margin-bottom:30px;padding: 15px 15px 30px;background-Color: #f7f7f7 !important;background-Color: #eee}.partnerCompany_image img{width:150px;height:auto}.ce_text p{padding-bottom:20px}.float_above{margin-bottom:22px}.float_below{margin-top:22px}.back{margin-top:22px;margin-bottom:50px}.x{}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{display:block;margin:0;padding:0;font-size:100%;word-wrap: normal;font-weight: 400}h1,.h1{margin-bottom:30px;font:40px/1 'Open Sans',sans-serif;font-weight:300;color:#b81818 !important;color:#333}h2,.h2,.headline{margin-bottom:30px;font:30px/1em 'Open Sans',sans-serif;color:#b81818 !important;color:#444}h3,.h3{margin-top:30px;margin-bottom:30px;font:14px/1 'Open Sans',sans-serif;text-transform:uppercase;font-weight: 700;color:#b81818 !important;color:#666}hr{width:95%;height:1px;margin:30px auto;background-color:#ccc;border:0}.x{}#header{background:rgba(255,255,255,0) !important;background:#fff}#ah-info div[class^="ce_"],#ah-info div[class^="mod_"]{margin:0}#ah-info{width:100%;padding:30px;display: flex;border-bottom: 1px solid rgba(0,0,0,0.3)}#ah-info &gt; div{flex: 1 1 auto}#footer{position:relative;margin:75px 0 0;background-color:#333333 !important;background-color:#333}#footercopyright{float:left;padding-right:50px;font:12px 'Open Sans',sans-serif;color:#ffffff !important;color:#666}.mejs-container{width: 100% !important;	height: auto !important;	padding-top: 57%}.mejs-overlay,.mejs-poster{width: 100% !important;	height: 100% !important}.mejs-mediaelement video,.mejs-mediaelement .me-plugin,.mejs-mediaelement embed{position: absolute;	top: 0;        left: 0;        right: 0;        bottom: 0;	width: 100% !important;	height: 100% !important}.x{}.ui-selectmenu-menu &gt; ul{max-height:300px}button,input,optgroup,select,textarea{margin:0;color: inherit;font: inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor: pointer}button[disabled],html input[disabled]{cursor: default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{}input[type="checkbox"],input[type="radio"]{padding:0;box-sizing: border-box}fieldset{margin:0 2px;padding:.35em .625em .35em .75em;border:1px solid #c0c0c0}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight: 700}input[type="radio"],input[type="checkbox"]{padding:4px 0 0;width:auto !important}input[type="file"]{display:block}input[type="range"]{width:100%;display:block}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline: thin dotted;outline-offset: -2px}#widget_ga_service2,widget_ga_odometer,#widget_ga_replacement_vehicle{clear: both;float: none !important;padding-bottom: 50px}#widget_ga_service2{padding-top:20px}#widget_ga_month,#widget_ga_year,#widget_pd_phonetime,#widget_pd_mobiletime{width: 21.155% !important}#widget_ga_year{margin-right:0 !important}#widget_ga_replacement_vehicle{padding-top:40px}#widget_ga_replacement_vehicle fieldset{padding:0}#ctrl_ga_replacement_vehicle{border: 0;margin: 0}#ctrl_ga_replacement_vehicle &gt; legend{display:none}#ctrl_ga_replacement_vehicle label,#widget_ga_replacement_vehicle &gt; label{position: relative;top: 0}.x{}.more,.backlink{padding:10px;background:#333333 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background:#333}.more:hover,.more:active,.more:focus,.backlink:hover,.backlink:active,.backlink:focus{background:#b81818 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background:#fd0}.more a,.backlink a{color: #ffffff !important;color: #333}.more:hover a,.more:active a,.more:focus a,.backlink:hover a,.backlink:active a,.backlink:focus a{color:#ffffff !important;color:#333}.link_int:before,.more:before{padding-right:10px;font-family:FontAwesome;content:"\f061";color: #ffffff !important;color: #333}.backlink:before{padding-right:10px;font-family:FontAwesome;content:"\f060";color: #ffffff !important;color: #333}.backlink{margin-top:30px}.ce_dk_article_link,.ce_hyperlink{overflow:hidden;float:none;clear:both}.ce_dk_article_link a,.ce_hyperlink a{float:right}.ce_text .ce_hyperlink{display:inline}.ce_text .ce_hyperlink a{float:none}.more{display:inline-block;margin-top:20px}.x{}.pagination{margin-top:40px;margin-bottom:40px}.pagination:after{height:.1px;float:none;clear:both;display:block;line-height:.1px;content:"."visibility:hidden}.pagination{text-align:center}.pagination p{font:34px 'Open Sans',sans-serif;color:#333;font-weight: 400}.pagination &gt; p{margin-bottom:20px;font: 14px 'Open Sans', sans-serif !important;color: #000000 !important;color: #666}.pagination ul,.pagination li{margin:0;padding:0;list-style-type:none}.pagination ul li{height:52px;display:inline-block;margin-right:1.28125%;margin-left:1.28125%}.pagination ul li.first,.pagination ul li.last{display:none}.pagination li a.link,.pagination li span.current{display:block;margin:0;padding:0 5px;text-align:center;font:34px/52px 'Open Sans',sans-serif;text-decoration:none}.pagination li span.current{font-weight:bold}.pagination li .current{}.pagination .current{cursor:default;color:#b81818 !important;color:#fd0}.pagination li a{color: #000000 !important;color:#333}.pagination li.next,.pagination li.last{float:right;margin-left:0}.pagination li.previous,.pagination li.first{float:left;margin-right:0}.pagination li.next,.pagination li.previous,.pagination li.first,.pagination li.last,input.reset,.btn_gray a{height:52px;display:block;padding:15px 20px;vertical-align:middle;text-align:center;white-space:nowrap;border:1px solid #ccc;border-radius:1px;font:14px 'Open Sans',sans-serif;text-decoration:none;color:#333;behavior:url("assets/css3pie/1.0.0/PIE.htc");behavior:url("assets/css3pie/1.0.0/PIE.htc");text-shadow: 0 1px 0 #fff;cursor: pointer;box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 1px 1px rgba(0, 0, 0, 0.075);-moz-user-select: none;background: rgb(243,243,243);background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YzZjNmMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");background: -moz-linear-gradient(top, rgba(243,243,243,1) 0%, rgba(255,255,255,1) 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(243,243,243,1)), color-stop(100%,rgba(255,255,255,1)));background: -webkit-linear-gradient(top, rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);background: -o-linear-gradient(top, rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);background: -ms-linear-gradient(top, rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);background: linear-gradient(to bottom, rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#ffffff',GradientType=0 )}.pagination .next a:after,.btn_gray a:after{padding-left:15px;font:20px FontAwesome;font-weight:bold;content: "\f105";Color: #b81818 !important;Color: #ffee00}.pagination .previous a:before{padding-right:15px;font:20px FontAwesome;font-weight:bold;content: "\f104";Color: #b81818 !important;Color: #ffee00}.ce_text ul,.joboffer ul{margin-left:20px;list-style-type:none}.ce_text ul li::before,.joboffer ul li::before{left:-20px;position:relative;display:inline-block;margin-right:-7px;font-size:100%;line-height:1;font-weight:bold;color:#d7122b;content: "/"}.ce_text ul &gt; li{margin-bottom:5px;margin-left:20px}.ce_text ul &gt; li:first-child{margin-top:5px}.cc_banner-wrapper{bottom:0;left:0;right:0;position:fixed;z-index:9001;background:rgba(0,0,0,.85)}.cc_container{max-width:1440px;margin:0 auto;padding: 1% 5.125%;overflow:hidden;color:#fff}.cc_container .cc_message{display:block;margin:0;padding:0}.cc_container p,.cc_container .cc_message .h2{color:#fff}.cc_container p:not(.h2){color:#fff !important}.cc_container .cc_logo{display:none}.cc_container ::-moz-selection{color:#333;background:#fd0;text-shadow:none}.cc_container .cc_btn,.cc_container .cc_btn:visited{float:right;margin-top:60px;margin-bottom:20px;padding:1em .4em;margin-left:5.125%}#cookie_policy{width: 100%;    height: auto;/*    bottom: 0;*/    left: 0;    right: 0;    top: 0;    position: absolute;    margin: 0 auto;    padding-right: 5.125%;    padding-left: 5.125%;    background-color: rgba(0,0,0,.85);    font: 16px/1.42857 'Open Sans',Sans Serif;    color: #fff;    z-index: 99998;    padding-top: 50px;    padding-bottom: 50px}#cookie_policy .policytext{float: none;    clear: both;    margin-right: 5.125%;    margin-left: 5.125%}#cookie_policy .close{width: 50px;    height: 100px;    float: right;    padding: 0;    border: 0;    font: 300 100px/1 'Open Sans',Sans Serif;    color: #fff !important;    background: transparent;    cursor: pointer}#cookie_policy h1,#cookie_policy h2,#cookie_policy div,#cookie_policy p{color :#fff !important}#cookie_policy table{margin-bottom: 50px;    background-color: #fff;    border: 10px solid #fff;    border-collapse: collapse}#cookie_policy table th,#cookie_policy table td,#cookie_policy table td p{font-size:12px;line-height:1.42857;color: #333 !important}#cookie_policy table td{padding:5px}#cookie_policy table tr td a{word-wrap: break-word;    white-space: pre-wrap;    overflow-wrap: break-word;    word-break: break-all}.daypicker{position:relative;margin:30px 0;font-size:11px;font-weight:bold;color:#000000 !important;color:#333}.daypicker *{font-family:'Open Sans',sans-serif}.daypicker a{text-decoration:none}.daypicker .curr_month{font-size:18px;line-height:1em;text-align:center;color:#000000 !important;color:#333}.prev_month,.next_month{font-size:18px;line-height:1em;position:absolute;text-align:center;font-weight:bold}.prev_month{left:10px;top:0}.next_month{right:10px;top:0}.prev_month a,.next_month a{padding:10px;color:#b81818 !important;color:#fd0}.daypicker .calendar{clear:both}.daypicker .calendar table{width:100%;border:0;border-collapse: separate;border-spacing: 7px}.daypicker .calendar table th{width:16.66666666666667%;color:#000000 !important;color:#333}.daypicker .calendar table td{width:16.66666666666667%;text-align:center;background:rgba(128, 128, 128, 0.3);border:1px solid rgba(128, 128, 128, 0.6);cursor: default}.daypicker .calendar table td.empty{cursor: default}.daypicker .calendar table td.active{color:#ffffff !important;color:#fff;background:#333333 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%); !important;background:#333;cursor: pointer}.daypicker .calendar table td.active:hover{background:#b81818 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background:#fd0;color:#ffffff !important;color:#333}.daypicker .calendar table td.selected{color:#ffffff !important;color:#333;background:#b81818 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background:#fd0;border:1px solid #ffffff !important;border:1px solid #fff}.x{}.slider .ce_sliderStart{min-height:450px}.slider-control .slider-prev,.slider-control .slider-next{display:none}.slider{margin-bottom:3%}.bx-wrapper .bx-pager.bx-default-pager a{width: 30px !important;border-radius: 1px !important}.bx-wrapper .bx-pager.bx-default-pager a:hover,.bx-wrapper .bx-pager.bx-default-pager a.active{background-color: #fe0 !important;background-color: #b81818 !important}.bx-wrapper img{margin:0 auto}#smallstage .bx-viewport div div div.content{width:100%;text-align:center}.x{}#footericons{position:relative;padding-bottom:10px}.mod_dk_socialmediaicons li{height:18px;display:inline-block;padding-right:4px;padding-left:4px;vertical-align:bottom;list-style-type:none}.mod_dk_socialmediaicons li a{color: #ffffff !important;color: #666}.mod_dk_socialmediaicons li a:hover,.mod_dk_socialmediaicons li a:active,.mod_dk_socialmediaicons li a:focus{color:#b81818 !important;color:#999}.carbrandlogo{padding-left:10px;flex: 1 1 auto}.ce_dk_carbrandlogos_list,.mod_dk_carbrandlogos_list{display: flex;justify-content: flex-end}.x{}.mod_newsarchive .info{display:inline-block;margin-bottom:10px;font-size:16px;color:#666}.mod_newsarchive .teaser{margin-left:240px;font-size:15px;color:#999}.mod_newsarchive .image_container{width:175px;height:175px;float:left;display:block;margin-right:40px}.mod_newsarchive .image_container img{width:250px;height:auto}.mod_newsreader{margin-top:50px}.mod_newsreader .info{display:none}.mod_newsreader h1{margin-bottom:30px;font-size:30px;line-height:1em;color:#b81818 !important;color:#333}.mod_newsarchive h2{margin:0 0 20px 215px}.mod_newsreader figure{max-width:50%}.mod_newsreader figure img{height:auto;max-width:100%}.ce_dk_team .teammember{width:47.43%;height:auto;min-height:150px;overflow:hidden;float:left;margin-bottom:20px;padding:10px 15px;display:flex;flex-wrap:wrap}.ce_dk_team .teamgroup :nth-child(2n+1).teammember,.mod_dk_teamcontact .block .teammember{margin-right:5.12%}.ce_dk_team .teamgroup .block,.mod_dk_teamcontact .block{display:flex;flex-wrap:wrap}.ce_dk_team .teammember_image,.ce_dk_team .teammember_info{flex:1 1 0}.ce_dk_team .teammember_image{width:50%;min-width:150px}.teammember_image img{width:auto;max-height:250px}.ce_dk_team .teammember_info{padding-left:20px}.teammember_name{font-weight:bold}.ce_dk_offer_individual_list .block .block,.ce_dk_service_individual_list .block .block{position:relative}.ce_dk_offer_individual_list .block .block h2,.ce_dk_service_individual_list .block .block h2{bottom:40px;top:40px;font-family:'Open Sans',sans-serif}.ce_dk_offer_individual_list  :first-child.offer_item,.ce_dk_service_individual_list :first-child.service_item{margin-top:50px;border-top:1px solid #f0f0f0}.ce_dk_offer_individual_list .offer_item,.ce_dk_service_individual_list .service_item{border-bottom:1 solid #f0f0f0}.ce_dk_offer_individual_list .teaser_image,.ce_dk_service_individual_list .teaser_image{width:175px;height:175px;float:left;display:block;margin-right:40px}.service_item .ui-button,.ce_dk_service_individual_reader .ui-button{padding:.4em 1em}.ce_dk_offer_individual_list .offer_item .teaser,.ce_dk_service_individual_list .service_item .teaser{margin-left:215px;font:15px Sans Serif;font-weight:normal;color:#999}.ce_dk_offer_individual_list .clear,.ce_dk_service_individual_list .clear{clear:none}.offercategory_teaser,.servicecategory_teaser{width:100%;height:215px;top:60px;margin-bottom:40px;background-color: #f7f7f7 !important;background-Color:#eeeeee}.offercategory_teaser p,.servicecategory_teaser p{left:250px;right:300px;top:20px;position:relative;float:left;margin-right:250px;text-align:left;white-space:normal;font-size:18px;line-height:1.4285;font-weight:normal}.offercategory_teaserimage,.servicecategory_teaserimage{width:200px;height:200px;left:20px;top:80px;position:absolute}.offercategory_link,.servicecategory_link{width:200px;left:250px;top:218px;position:absolute}#map_canvas{height:500px}.ce_dk_softsite_partner :nth-child(2n+1).partnerCompany{margin-right:3.12%}.ce_dk_softsite_partner .partnerCompany{width:44.43%;min-height:212px;overflow:auto;float:left;margin-bottom:20px;padding:10px 15px;background-Color: #f0f0f0;margin-right: 3%;margin-top: 20px}.partnerCompany .partnerCompany_image{float:left;margin-top:10px}.partnerCompany .partnerCompany_address{padding-left:195px}.partnerCompany .partnerCompany_title{padding-bottom:10px;font:24px/1.2 'Open Sans',sans-serif;Color: #000000 !important;Color: #ffee00}.ce_dk_jobs .joboffer_info &gt; div{margin-bottom:15px;padding-bottom:15px;border-bottom:1px solid #ccc}.ce_dk_service_individual_reader ul{overflow:hidden;margin:0;padding:0}.ce_dk_service_individual_reader .ce_gallery ul .col_first{clear:both}.ce_dk_service_individual_reader .ce_gallery ul li.col_last{margin-right:0}.ce_dk_service_individual_reader .ce_gallery &gt; ul &gt; li{width:21.12%;max-height:206px;overflow:hidden;float:left;margin-right:5.12%;padding:5px;background-color:#fff;-webkit-box-shadow:10px 7px 2px rgba(0,0,0,.2);box-shadow:10px 7px 2px rgba(0,0,0,.2);behavior:url("assets/css3pie/1.0.0/PIE.htc");margin-bottom: 20px}#fromAddress{width:100%;max-width:400px}#routing{float:none;clear:both;margin-top:30px}#routingform .routing_fromto .widgets{position:relative;margin-top:40px}#routingform .routing_map_canvas{width:100%;height:500px;margin-top:30px;border:1px solid #ccc}#routingform label,#routingform .lblToAddress{left:0;top:-20px;position:absolute;display:block;font:15px/1 'Open Sans',sans-serif;color:#666}.ce_dk_contact #form_selector,.ce_dk_contact #form_selected{width:100%;margin-bottom:50px}#form_selected #widget_pd_salutation{float:none;clear:both}#form_selected #widget_pd_phone{clear:both;margin-right:5.12%}#form_selected #widget_ms_subject{clear:both}#form_selected :nth-child(2n+1).widget,#widget_ga_month{margin-right:5.12%}#form_selector .widget,#form_selected .widget{width:47.43%;position:relative;margin-top:40px}#form_selected #widget_cb_check{width:100%}#form_selected .widget{float:left}.ce_dk_contact .widget label{left:0;top:-20px;position:absolute;font:15px/1 'Open Sans',sans-serif;font-weight:normal;color:#666}#form_selected #widget_ms_message,#form_selected #widget_td_message,#form_selected #widget_br_message,#form_selected #widget_cb_message{width:100%;clear:both}#form_selected #widget_pd_lastname{margin-right:5.12%}#form_selected #widget_pd_firstname{margin-right:0}#form_selected #widget_pd_companyname{float:none}#form_selected #widget_pd_phonetime{margin-right:0}#form_selected #lbl_ca_contact_approval_1{margin-left:100px}#form_selected input,#form_selected select{width:100%}#form_selected textarea{width:100%}#form_selected #info_requiredfields{margin:30px 0}#form_selected #info_privacy{float:left;margin-bottom:30px}#form_selected .dataapproval_widgets fieldset,#form_selected .contactapproval_widgets fieldset,#form_selected #widget_br_options fieldset,#form_selected #widget_cb_check fieldset{border:0}#form_selected .dataapproval_widgets .widget span{width:100px;display:inline-block}#form_selected .contactapproval_widgets input{width:auto;margin-right:100px}#form_selected .submit_container input{width:auto}select,select &gt; option{height:51px;padding:15px 20px;font:15px/51px 'Open Sans',sans-serif;color:#333}.submit_container{overflow:visible}.submit_container input{float:left}.submit_container input.submit{float:right}#info_contactapproval{display:block}#info_contactapproval{float:left}#info_dataapproval{float:left}#info_requiredfields{float:left}#ctrl_sf_selected_form-button,#ctrl_pd_salutation-button,#ctrl_pd_phonetime-button,#ctrl_ga_service1-button,#ctrl_ga_service2-button,#ctrl_ga_wishtime1-button,#ctrl_ga_month-button,#ctrl_ga_year-button,#ctrl_pd_mobiletime-button,#ctrl_cf_subject-button{width:100%;height:50px;padding-right:10px;padding-left:10px;width: 100%;line-height: 50px}input[type="button"],input[type="submit"],input[type="text"],input[type="email"],input[type="tel"]{height:auto;display:inline-block;padding:15px 20px;border:1px solid #ccc;font:15px 'Open Sans',sans-serif;behavior:url("../../assets/css3pie/1.0.0/PIE.htc");	-moz-user-select: none;	cursor: pointer;	background: rgb(243,243,243);	background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YzZjNmMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");	background: -moz-linear-gradient(top, rgba(243,243,243,1) 0%, rgba(255,255,255,1) 100%);	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(243,243,243,1)), color-stop(100%,rgba(255,255,255,1)));	background: -webkit-linear-gradient(top, rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);	background: -o-linear-gradient(top, rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);	background: -ms-linear-gradient(top, rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);	background: linear-gradient(to bottom, rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#ffffff',GradientType=0 )}input:active,input:focus,textarea:active,textarea:focus{border: 1px solid #b81818 !important;border: 1px solid #fd0}.div.error,p.error{margin:0;padding:2px 0 0;font-size:12px;color:#f00}.ce_dk_contact .ui-selectmenu-icon.ui-icon{margin-top:1em}#submit{height:39px}#dk_captcha{margin: 30px 0;clear: both}.dk_captcha_iconlist{margin: 10px 0}#dk_captcha .dk_captcha_icon{display: inline-block;    cursor: pointer;    outline: none;    border-radius: 2px;    color:#000000 !important;    color:#111;    font-size: 30px;    font-family: FontAwesome;    font-style: normal;    width: 40px;    height: 40px;    line-height: 40px;    text-align: center;    margin: 0 5px}#dk_captcha .dk_captcha_icon:hover,#dk_captcha .dk_captcha_icon:focus{color:#333333 !important;color:#fe0;outline:2px solid #b81818 !important;outline:2px solid #fd0}.dk_captcha_icon_active{color:#b81818 !important !important;color:#fd0 !important}#dk_captcha_error{margin-bottom:-30px;clear: both}.departmentleft .department:not(:last-child){float:left;padding-right:20px}.ce_dk_gallery_reader ul{overflow:hidden;margin:0;padding:0}.ce_dk_gallery_reader &gt; ul &gt; li{width:21.15625%;    max-height:206px;    overflow:hidden;    float:left;    margin-right:5.125%;    background-color:#eee;    background:-moz-linear-gradient(45deg,#eee,#fff);    background:-webkit-linear-gradient(45deg,#eee,#fff);    background:-o-linear-gradient(45deg,#eee,#fff);    background:-ms-linear-gradient(45deg,#eee,#fff);    background:linear-gradient(45deg,#eee,#fff);    -pie-background:linear-gradient(45deg,#eee,#fff);    -webkit-box-shadow:0 5px 5px 0 #ccc;    box-shadow:0 5px 5px 0 #ccc;    list-style-type:none;    behavior:url("assets/css3pie/1.0.0/PIE.htc");    margin-bottom:20px}.ce_dk_gallery_reader .image_container img{width:100%;    height:auto;    -webkit-box-shadow:0 5px 5px 0 #ccc;    box-shadow:0 5px 5px 0 #ccc;    border:1px solid #ccc;    behavior:url("assets/css3pie/1.0.0/PIE.htc")}.ce_dk_gallery_reader ul .col_first{clear:both}.ce_dk_gallery_reader ul li.col_last{margin-right:0}.ce_dk_gallery_list h2{margin-left:0}.ce_dk_gallery_list .teaser_image{width:30%;    float:left;    margin-right:5.125%}.ce_dk_gallery_list .teaser_image img{width:100%;    height:auto}.ce_dk_videogallery_list .video_item_content{width:30%;    float:left;    margin-right:5.125%}.ce_dk_videogallery_list .video_item_content iframe{width:100%}.ce_dk_gallery_list h2{margin-left:0}.dayblock{display:flex}.dayblock &gt; div,.department{flex: 1 1 auto}.ce_dk_openingtimes .department{margin-bottom:20px;padding-right:20px}.openingtimesTime{width:65%;min-width:50%}.openingtimesDay{width:35%;max-width:50%}
@media screen and (max-width:1023px){
/* DKTheme_4_General_Medium_641-1023.css */
#mainmenu{display:none}#navmobile{display:block}.mod_navigation{width:80%;height:0;margin:3%;visibility: hidden}#footernavi{left:3.9%}#footer .mod_sitemap ul.level_1 &gt; li{width:33.33333333333333%}#footer .mod_sitemap{margin-left:3.9%}#footer .footernavi ul.level_1 &gt; li a{font-size:90%}.slider .ce_sliderStart{width:90%;float:none;clear:both;margin:0 auto}.slider .ce_userconfig{float:left}.slider .ce_dk_openingtimes_{float:right}.ce_text .image_container{width:100%;max-width:300px}.ce_text .image_container img{width:100%;height:auto}.ce_text p{padding:0 20px}.ce_dk_team .teamgroup :nth-child(2n+1).teammember{margin-right:3.9%}.ahimage{float:none}.mfimage .image_container{width:75%}#container,#footer{padding-right:3.12%;padding-left:3.12%}.ce_dk_openingtimes .block,.dayblock{display:block;flex:1 1 auto}.daysblock{display:block}.dayblock &gt; div{width:100%}
}
@media screen and (max-width:640px){
/* DKTheme_4_General_Small_0-640.css */
#sticky_buttons{bottom:0;right:0;top:auto}#sticky_buttons a{width:48px;float:left}#sticky_buttons a:hover,#sticky_buttons a:active,#sticky_buttons a:focus{right:0}h1,.h1{font-size:26px}h2,.h2,.headline{font-size:24px}h1,h2,h3,h4,h5,h6{word-wrap: break-word}.float_right,.float_left{float: none !important;clear: both !important;margin: 20px 0 !important}.ce_text p{padding:0}.mod_sitemap.footernavi{display:none}.ce_dk_contact div{float:none;clear:both}#form_selector .widget,#form_selected .widget{width:100%}.ce_text .image_container{width:100%;max-width:100%;float:none;clear:both}.ce_dk_team .teamgroup :nth-child(2n+1).teammember{margin-right:0}.ce_dk_team .teammember{width:100%}.ce_dk_carbrandlogos_list,.mod_dk_carbrandlogos_list{display: none}.x{}.mod_newsarchive .image_container{width:100%;height:auto;float:none;clear:both;margin:0 0 20px}.mod_newsarchive .image_container img{width:100%;height:auto}.mod_newsarchive h2{margin-left:0}.mod_newsarchive .teaser{margin-left:0}.mod_newsreader figure{width:100%;max-width:100%}.x{}#footer{padding:0}#footer .inside{bottom:auto;top:0;position:relative;padding-top:0}#footer .mod_sitemap{display:none}#footernavi{bottom:auto;left:0;position:relative;margin-right:0;margin-bottom:0}#footernavi ul,#footernavi li{margin:0;padding:0}#footernavi ul li{float:none;display:block;padding:20px 0;border-bottom:1px solid #0b0b0b;font-size:24px}#footernavi ul li:first-child{padding-left:0}#footernavi ul li a,#footernavi ul li span{display:block;padding:0 6.25%;color:#666}#footericons{bottom:auto;left:0;position:relative;border-bottom:1px solid #0b0b0b;padding: 20px 6.25%}#footercopyright{position:absolute;float:none;bottom:20px;left:6.25%}.offercategory_teaser,.servicecategory_teaser{height:auto;top:auto;position:relative;margin:0;padding:10px}.offercategory_teaser p,.servicecategory_teaser p{left:0;position:relative;float:none;clear:both;margin-top:0;margin-right:0;margin-left:0}.offercategory_teaser p.more,.servicecategory_teaser p.more{margin:30px 0}.offercategory_teaserimage,.servicecategory_teaserimage{width:100%;height:auto;left:auto;top:auto;position:relative;margin-bottom:50px}.offercategory_teaserimage img,.servicecategory_teaserimage img{width:100%;height:auto}.ce_dk_offer_individual_list .teaser_image,.ce_dk_service_individual_list .teaser_image{width:100%;height:auto;float:none;clear:both;margin:0 0 20px}.ce_dk_offer_individual_list .offer_item .teaser,.ce_dk_service_individual_list .service_item .teaser{margin:0}.ce_dk_softsite_partner .partnerCompany{width:100%}.ce_dk_softsite_partner .partnerCompany_image{float:none}#routingform{width:100%}.ce_dk_contact #form_selector,.ce_dk_contact #form_selected{width:100%;margin-bottom:50px}#form_selector .widget,#form_selected .widget{width:100%}#widget_ga_month,#widget_ga_year,#widget_pd_phonetime,#widget_pd_mobiletime{width:100% !important}#cookie_policy table tr{border-bottom: 1px solid #666}#cookie_policy table tr td,#cookie_policy table tr th{display: block;    word-wrap: break-word}#cookie_policy table tr td{border: 0}
}
/* DKTheme_4_Fahrzeuge.css */
.legal-envk{padding-right:10px;padding-left:10px}.legal-envk p{font-size:12px}.ce_dk_vehicles_list{padding:30px;background:#333333 !important;background:#333}.ce_dk_vehicles_list h2{color:#b81818 !important;color:#333}.ce_dk_vehicles_list table{width:100%;margin-bottom:20px;padding:20px;background:#f7f7f7 !important;background:#ccc}#vehicle_sort_hl{display:inline-block;padding:5px 20px;border-bottom:1px solid rgba(0,0,0,.5);background-color:#f7f7f7 !important}.ce_dk_vehicles_list table a[href*="desc"]{font-family:'Open Sans',sans-serif;color:rgba(51,51,51,.5);content: " \f0aa"}.ce_dk_vehicles_list table a[href*="asc"]{font-family:'Open Sans',sans-serif;color:rgba(51,51,51,.5);content: " \f0ab"}.ce_dk_vehicles_list a{width:100%;white-space:nowrap}.ce_dk_vehicles_list a:hover:after{color:#333}.ce_dk_vehicles_list a.active:after{color:#333}.ce_dk_vehicles_list a[href*="asc"]:after{font-family: FontAwesome;color: #b81818 !important;content: " \f0ab"}.ce_dk_vehicles_list a[href*="desc"]:after{font-family: FontAwesome;color: #b81818 !important;content: " \f0aa"}.ce_dk_vehicles_list a[href*="asc"]:after:hover{color: #333333 !important}.ce_dk_vehicles_list a[href*="desc"]:after:hover{color: #333333 !important}.ce_dk_vehicles_list table:nth-child(2){padding:20px;background:#f7f7f7 !important;background:#ccc}.ce_dk_vehicles_list table:nth-child(2) tr,#vehicle_sort tr{display: flex;justify-content: center}.ce_dk_vehicles_list table &gt; tbody tr th{display:block;color:#333;flex: 1 1 0}.ce_dk_vehicles_list .vehicle{margin-bottom:30px}.ce_dk_vehicles_list .vehicle .image{width:20.703125%;height:auto;max-width:265px;float:left}.ce_dk_vehicles_list .vehicle .image img{width:100%;height:100%;border:0}.ce_dk_vehicles_list .price{margin-left:20.7031%;padding-left:2.5625%;font-size:18px;font-weight:bold}.ce_dk_vehicles_list .specs{height:40px;margin-left:20.703125%;padding-left:2.5625%;background-color:#f8f8f8;border-top:1px solid #ccc;border-bottom:1px solid #ccc}.ce_dk_vehicles_list .specs span{width:33.33333333333333%;height:100%;float:left;display:block;margin:0;padding-left:1%;white-space:nowrap;border-right:1px solid #ccc;font:23px/40px sans-serif;color:#666}.ce_dk_vehicles_list .specs span:nth-child(1){width:25%;padding-left:0}.ce_dk_vehicles_list .specs span:nth-child(2){width:25%}.ce_dk_vehicles_list .specs span:nth-child(3){width:20%}.ce_dk_vehicles_list .specs span:nth-child(4){width:30%}.ce_dk_vehicles_list .link{margin-left:20.7%;padding-right:2.56%;padding-left:2.56%;font:17px sans-serif;font-weight:bold;padding-top: 17px}.ce_dk_vehicles_list .link a{color:#b81818 !important;color:#fd0}.ce_dk_vehicles_list .info{margin-left:20.7%;padding-right:2.56%;padding-left:2.56%;font:17px sans-serif;font-weight:normal;padding-top: 17px;Color: #000000 !important;color:#111111}.ce_dk_vehicles_list .eectip{vertical-align:text-top}.eectip{height:19px}.ce_dk_vehicles_list .energy{margin-left:20.7%;padding-right:2.56%;padding-left:2.56%;font-size:12px;padding-top: 17px}.x{}.ce_dk_vehicles_filter .message{margin:0 0 40px;padding:20px;border:1px solid #ccc;font-size:17px;color:#d7122b;background: rgb(243,243,243);background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YzZjNmMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");background: -moz-linear-gradient(top, rgba(243,243,243,1) 0%, rgba(255,255,255,1) 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(243,243,243,1)), color-stop(100%,rgba(255,255,255,1)));background: -webkit-linear-gradient(top, rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);background: -o-linear-gradient(top, rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);background: -ms-linear-gradient(top, rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);background: linear-gradient(to bottom, rgba(243,243,243,1) 0%,rgba(255,255,255,1) 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#ffffff',GradientType=0 )}.ce_dk_vehicles_filter{padding:30px;-webkit-box-shadow:0 10px 5px 0 rgba(0,0,0,.1);box-shadow:0 10px 5px 0 rgba(0,0,0,.1);border:1px solid #ccc;behavior:url("assets/css3pie/1.0.0/PIE.htc");margin: 40px 0 50px 0 !important;background:#f7f7f7 !important;background:#eee}.ce_dk_vehicles_filter h2{color:#b81818 !important;color:#444}.ce_dk_vehicles_filter .formbody{width:100%;padding-top:10px;display: flex;flex-wrap: nowrap}.ce_dk_vehicles_filter .formbody .widget,.ce_dk_vehicles_filter .formbody .submit_container{flex: 1 1 0}.ce_dk_vehicles_filter .widget{position:relative;padding-top:0}.ce_dk_vehicles_filter .ui-selectmenu-button.ui-button{width:100%}.ce_dk_vehicles_filter .ui-button,.ce_dk_vehicles_list .ui-button{padding:.4em 1em;border:1px solid #c5c5c5}.ce_dk_vehicles_filter .widget label{left:5px;top:-20px;position:absolute;font-size:15px;line-height:1em;color:#999}.ce_dk_vehicles_filter:after{height:.1px;float:none;clear:both;display:block;line-height:.1px;content: "."visibility: hidden}.fa-search::before{padding-right:10px;font-family: FontAwesome !important}.ce_dk_vehicle_gallery ul{text-align:center;list-style-type:none}.ce_dk_vehicle_gallery{margin-bottom:30px}.ce_dk_vehicle_gallery ul li{display:inline-block}.ce_dk_vehicle_gallery ul li{width:23.0390625%;display:inline-block;margin-top:0;margin-right:1.28125%;margin-bottom:1.28125%;padding:5px;border:1px solid #ccc}.ce_dk_vehicle_gallery ul li.col_last{margin-right:0}.ce_dk_vehicle_gallery figure,.ce_dk_vehicle_gallery figure img{width:100%;height:auto}.ce_dk_vehicle_reader h1{margin-bottom:0;font-size:50px;line-height:1em;color:#b81818 !important;color:#333}.ce_dk_vehicle_reader h2{font-size:14px;font-weight:bold;text-transform:uppercase;color:#b81818 !important;color:#444}.ce_dk_vehicle_reader .price{margin-bottom:50px;font-size:34px;line-height:1em;color:#333}.ce_dk_vehicle_reader .financing{float:right}.ce_dk_vehicle_reader .financing a{font-size:20px;text-decoration:none;color:#c62831}.ce_dk_vehicle_reader .financing a:after{content: ' &gt;'}.ce_dk_vehicle_reader .feature_block{width:50%;float:left;margin-bottom:50px}.ce_dk_vehicle_reader .feature_block:nth-child(2n+1){padding-right:2.5625%}.ce_dk_vehicle_reader .feature_block:nth-child(2n){padding-left:2.5625%}.ce_dk_vehicle_reader .feature_block:nth-last-child(2){width:100%;margin-right:0;padding-bottom:25px;border-bottom:1px solid #ccc}.ce_dk_vehicle_reader .details,.ce_dk_vehicle_reader .equipment{width:100%;float:left}.ce_dk_vehicle_reader .comments{width:100%}.ce_dk_vehicle_reader .details .label,.ce_dk_vehicle_reader .equipment h3{width:40%;float:left;margin-bottom:2px;font-size:15px;line-height:1.5em;color:#b81818 !important;color:#666}.ce_dk_vehicle_reader .details .label:before{height:0;float:none;clear:both;display:block;line-height:0;content: "."visibility: hidden}.ce_dk_vehicle_reader .details .value,.ce_dk_vehicle_reader .equipment ul{width:60%;float:left;margin-bottom:2px;padding-left:5%;font-size:15px;line-height:1.5em}.vehicleOverview{margin:0;padding:0;visibility:hidden}.ce_dk_vehicle_reader .details .value img.eectip{width:30px;height:auto}.ce_dk_vehicle_reader .details .eeclegend img{height:100%;border:1px solid #ccc}.ce_dk_vehicle_reader .equipment ul{list-style-type:none}.ce_dk_vehicle_reader .equipment ul li{font-size:15px;line-height:1.5em}.ce_dk_vehicle_reader .equipment ul li:before{padding-right:10px;vertical-align:middle;font:15px/1 FontAwesome;content: "\f046";color:#b81818 !important;color:#fd0}.ce_dk_vehicle_reader .backlink{float:none;clear:both;display:table;margin-bottom:100px}.ce_dk_vehicle_reader + .ce_dk_article_reader p{color:#aaa}.eec_tooltip{width:236px;position:absolute;display:none;padding:10px;background-color:#F5F5F5;border:2px solid #BBBEC1;background:-moz-linear-gradient(45deg,#eee,#fff);background:-webkit-linear-gradient(45deg,#eee,#fff);background:-o-linear-gradient(45deg,#eee,#fff);background:-ms-linear-gradient(45deg,#eee,#fff);background:linear-gradient(45deg,#eee,#fff);-pie-background:linear-gradient(45deg,#eee,#fff);-webkit-box-shadow:0 5px 5px 3px rgba(0,0,0,.2);box-shadow:0 5px 5px 3px rgba(0,0,0,.2);behavior:url("assets/css3pie/1.0.0/PIE.htc")}.eec_tooltip .headline{font-size:14px;line-height:1.5em;color:#c62831}.eec_tooltip .intro,.eec_tooltip .outro{font-size:12px;line-height:1.5em;color:#333}.eec_tooltip img{margin:5px auto;border:1px solid #ccc}.eec_tooltip{display: none !important}#pdfExportForm{float:none;clear:both}.vehicleIframe &gt; :first-child{margin-top:0;margin-right:auto;margin-left:auto}.vehicles_filter_submit{top:0;White-space: nowrap}.x{}#smallstage ~ .ce_dk_vehicles_list{padding:0;background:#ffffff !important;background:#fff}#smallstage ~ .ce_dk_vehicles_list #vehicle_sort{display:none}#smallstage ~ .ce_dk_vehicles_list .bx-viewport div div div,#smallstage ~ .ce_dk_vehicles_list .bx-viewport div div a{}#smallstage ~ .ce_dk_vehicles_list .bxslider_carslider .vehicle{overflow:hidden;margin:0;padding:15px 30px 30px}#smallstage ~ .ce_dk_vehicles_list .bxslider_carslider .vehicle .content{width:75%;height:75%;padding:5%;background:#fff;/*background:#f7f7f7 !important;background:#ccc;*/}#smallstage ~ .ce_dk_vehicles_list .bxslider_carslider .vehicle .content{box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);transform: rotate(3deg);transition: transform 0.5s ease-out 0s}#smallstage ~ .ce_dk_vehicles_list .bxslider_carslider .vehicle .content:hover{transform: rotate(0deg)}#smallstage ~ .ce_dk_vehicles_list &gt; div &gt; table:nth-child(3) tr,#smallstage ~ .ce_dk_vehicles_list &gt; div &gt; table:nth-child(3) td{display: block}#smallstage ~ .ce_dk_vehicles_list .vehicle .image,#smallstage ~ .ce_dk_vehicles_list .vehicle .image img{height: auto;    width: 100%;float:none;max-width:100%}#smallstage ~ .ce_dk_vehicles_list .vehicle .image a{width:100%}#smallstage ~ .ce_dk_vehicles_list .specs{margin:0;padding:10px 0 0;border:0;height:auto;margin:0;background:none}#smallstage ~ .ce_dk_vehicles_list .specs span,#smallstage ~ .ce_dk_vehicles_list .specs span:nth-child(2){width:auto;height:auto;float:none;display:inline;border:0;font-size:18px;line-height:1em;color: #666;    display: block;    float: left;    white-space: nowrap}.ce_dk_vehicles_list .bxslider_carslider .specs span:nth-child(1):after,.ce_dk_vehicles_list .bxslider_carslider .specs span:nth-child(2):after{content:","}#smallstage ~ .ce_dk_vehicles_list .price{float:none;clear:both;margin-left:0;padding-left:0;font-size:18px;line-height:1.42857;font-weight:bold;color:#333}#smallstage ~ .ce_dk_vehicles_list .link{float:none;clear:both;margin:0;padding:10px 0 0;font-size:16px;font-weight:normal}#smallstage ~ .ce_dk_vehicles_list .link a{white-space:normal}#smallstage ~ .ce_dk_vehicles_list .info{display:none}#smallstage ~ .ce_dk_vehicles_list .energy{margin-left:0;padding-top:30px;padding-left:0}#smallstage ~ .ce_dk_vehicles_list .bx-controls-direction{width:100%;bottom:-20px;position:absolute}
@media screen and (max-width:1400px){
/* DKTheme_4_Fahrzeuge_Medium_1023-1400.css */
#smallstage ~ .ce_dk_vehicles_list .bxslider_carslider .vehicle .content{width:100%;height:100%;padding:5%;background:#fff;/*background:#f7f7f7 !important;background:#ccc;*/}
}
@media screen and (max-width:1023px){
/* DKTheme_4_Fahrzeuge_Medium_641-1023.css */
.ce_dk_vehicles_filter .formbody{flex-wrap: wrap}.ce_dk_vehicles_filter .widget,.ce_dk_vehicles_filter .submit_container{min-width:33.3333333%;margin:0;padding:0}.ce_dk_vehicles_filter #submit{width:100%;margin:0;padding:0}.ce_dk_vehicles_filter .widget:nth-child(n+6),.ce_dk_vehicles_filter #submit{margin-top:40px}.ce_dk_vehicles_list{padding:0}.ce_dk_vehicles_list .specs span{font-size:17px}.ce_dk_vehicle_reader .feature_block{width:100%;overflow:hidden;float:none;padding-bottom:25px;border-bottom:1px solid #ccc}.ce_dk_vehicle_reader .feature_block:nth-child(2n+1){padding-right:0}.ce_dk_vehicle_reader .feature_block:nth-child(2n){padding-left:0}.ce_dk_vehicles_list table &gt; tbody tr{flex-wrap: wrap}.ce_dk_vehicles_list .link{font-size:16px}.vehicles_filter_submit{height:36px;top:0;margin:0;padding:0}.ce_dk_vehicles_filter .widget label{top:-20px}.ce_dk_softsite_partner .partnerCompany{width:44.05%;margin-right: 3%}.partnerCompany .partnerCompany_title{font:22px/1.4285 'Open Sans',sans-serif}.partnerCompany .partnerCompany_address{float:left;padding-left: 0px}#smallstage ~ .ce_dk_vehicles_list .bxslider_carslider .vehicle .content{width:100%;height:100%;padding:5%;background:#fff;/*background:#f7f7f7 !important;background:#ccc;*/}
}
@media screen and (max-width:640px){
/* DKTheme_4_Fahrzeuge_Small_0-640.css */
tr.vehicle{}.ce_dk_vehicles_list .vehicle .image{width:50%;max-width:275px}.ce_dk_vehicles_list .specs{height:auto;margin-left:50%;padding-left:0;border:1px solid #ccc}.ce_dk_vehicles_list .specs span{width:100%;float:none;border-right:0px solid #ccc;border-bottom:1px solid #ccc}.ce_dk_vehicles_list .specs span:nth-child(4){border-bottom:0}.ce_dk_vehicles_list .link,.ce_dk_vehicles_list .info,.ce_dk_vehicles_list .energy{margin-left:0}.ce_dk_vehicles_list .link{clear:both;font-size:17px;line-height:1;white-space: normal}.ce_dk_vehicles_list .link a{White-space: normal}.ce_dk_vehicles_list .info{padding-top:0;padding-bottom:0;font-size:17px}.ce_dk_vehicles_list .info p{padding-top:10px;font-size:19px;line-height:1.3em;font-weight: 400}.ce_dk_vehicles_list .energy{}.ce_dk_vehicle_reader h1{font-size:50px;line-height:1;color:#b81818 !important;color:#333}.ce_dk_vehicle_reader h2{font-size:20px;line-height:1;font-weight:bold;color:#b81818 !important;color:#444}.ce_dk_vehicle_reader .price{font-size:40px;line-height:1;color:#333}.ce_dk_vehicle_reader .details .label,.ce_dk_vehicle_reader .equipment h3{font-size:18px;line-height:1.42857;text-transform:uppercase;color:#b81818 !important;color:#666}.ce_dk_vehicle_reader .feature_block{border-bottom:0}.ce_dk_vehicle_reader .details .value,.ce_dk_vehicle_reader .equipment ul{text-align:right;font-size:18px;line-height:1.42857;color:#333}.ce_dk_vehicle_reader .details .eeclegend img{width:50%;height:auto}.ce_dk_vehicle_reader .details .eeclegend,.ce_dk_vehicle_reader .equipment h3{text-transform:none}.ce_dk_vehicle_reader .details .label,.ce_dk_vehicle_reader .equipment h3{padding-top:12px;border-top:1px solid #cecece}.ce_dk_vehicle_reader .details .label,.ce_dk_vehicle_reader .equipment h3,.ce_dk_vehicle_reader .details .value,.ce_dk_vehicle_reader .equipment ul{width:100%;float:none;clear:both}.ce_dk_vehicle_reader .details .value img.eectip{width:40px;height:auto}.ce_dk_vehicle_reader .equipment ul li,.ce_dk_vehicle_reader .comments{color:#aaa;font:24px/1.2 MetaProLight,Sans Serif;word-wrap: break-word}.vehicle.last .energy{border-bottom:0}.ce_dk_vehicle_reader .equipment ul li{float:left}.ce_dk_vehicle_reader .equipment ul li:after{content: ", "}.ce_dk_vehicle_reader .equipment ul li:last-child:after{content: ""}.ce_dk_vehicle_reader .equipment ul li:before{margin-right:0;content: ""}.vehicles_filter_form .widget,.vehicles_filter_form .widget select,.vehicles_filter_form .submit_container,.vehicles_filter_form .submit_container input{width:100%}.ce_dk_vehicles_filter .widget{margin-top: 30px !important}.ce_dk_vehicles_filter .formbody{display:block}.vehicles_filter_form #submit{width:100%;margin-top:30px}.ce_dk_vehicle_reader .details .label .eeclegend{text-transform:none}#smallstage ~ .ce_dk_vehicles_list .bxslider_carslider .vehicle .content{transform: rotate(0deg);transition: none}
}
/* DKTheme_4_Startseite.css */
#start_companyinfo{overflow:hidden;margin-bottom:30px;background:#f7f7f7 !important;background:#ddd;display:flex}#welcome{width:50%;overflow:hidden;float:left;margin-bottom:0;padding:30px;border-right:1px solid rgba(0,0,0,0.3)}#address_otimes{width:50%;overflow:hidden;padding:30px}#address_otimes &gt; div{float:none;clear:both}.ce_dk_vehicles_list .vehicles_count{display:none}.ce_dk_vehicles_filter .vehicleOverview{display:none}.vehicles_filter_fuel{display:none}.x{}#largestage .content{max-width:33.333333%;margin:6.25%;padding:6.25%;background-color: rgba(184,24,24,0.5) !important;display: flex; flex-direction:column; justify-content: center}#largestage .content .slideHeadline{margin-bottom:30px;Color: #ffffff !important;Color: #fff}#largestage .content .slideSubline{margin-bottom:30px;font-size:16px;line-height:1.5em;color:#fff;Color: #ffffff !important;Color: #fff}#largestage .bx-wrapper img{width:100%}#largestage .bx-wrapper .bx-prev,.ce_dk_vehicles_list .bx-wrapper .bx-prev{left:0 !important}#largestage .bx-wrapper .bx-prev:after,.ce_dk_vehicles_list .bx-wrapper .bx-prev:after{font:20px FontAwesome;content:"\f053"}#largestage .bx-wrapper .bx-next,.ce_dk_vehicles_list .bx-wrapper .bx-next{right:0 !important}#largestage .bx-wrapper .bx-next:after,.ce_dk_vehicles_list .bx-wrapper .bx-next:after{font:20px FontAwesome;content:"\f054"}#largestage .bx-wrapper .bx-controls-direction a,.ce_dk_vehicles_list .bx-wrapper .bx-controls-direction a{font-size:0;line-height:65px;width:50px !important;height:50px !important;margin-top: -25px !important;text-align:center;text-indent:0 !important;background:#333333 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background:#fd0;z-index:8998 !important;color:#ffffff !important;color:#333}#largestage .bx-wrapper .bx-controls-direction a:hover,#largestage .bx-wrapper .bx-controls-direction a:focus,#largestage .bx-wrapper .bx-controls-direction a:active,.ce_dk_vehicles_list .bx-wrapper .bx-controls-direction a:hover,.ce_dk_vehicles_list .bx-wrapper .bx-controls-direction a:focus,.ce_dk_vehicles_list .bx-wrapper .bx-controls-direction a:active{background:#b81818 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background:#fd0;color:#ffffff !important;color:#333}.ce_dkcontentslider a:hover,.ce_dkcontentslider a:focus,.ce_dkcontentslider a:active{color:#$btthc;color:#333}#largestage .bx-wrapper .smallSlide:after{color:#b81818 !important;color:#fd0}.x{}#smallstage{width:100%;padding-top:30px}#smallstage .bx-viewport div div div,#smallstage .bx-viewport div div a{width:100%;float:left}.bx-viewport .ce_hyperlink{background:#333333 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background:#fd0}.bx-viewport .ce_hyperlink:hover,.bx-viewport .ce_hyperlink:focus,.bx-viewport .ce_hyperlink:active{background:#b81818 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background:#$fd0}.bx-viewport .ce_hyperlink a{color:#ffffff !important;color:#333}.bx-viewport .ce_hyperlink:hover a,.bx-viewport .ce_hyperlink:focus a,.bx-viewport .ce_hyperlink:active a{color:#ffffff !important;color:#333}#smallstage .content{padding-right:10px;padding-left:10px}#smallstage .content .slideHeadline{color: #333 !important;font: 24px/1 "Open Sans",sans-serif !important}#smallstage .content .slideSubline{color: #333 !important;font: 16px/1.5 "Open Sans",sans-serif !important}.ce_dkcontentslider .hyperlink_txt{overflow:hidden;display:block}.ce_dkcontentslider .hyperlink_txt img{width:100%;height:auto;max-height:300px}#smallstage .bx-controls{margin-top:30px}.normalSlide{padding:1em .4em}
@media screen and (max-width:1023px){
/* DKTheme_4_Startseite_Medium_641-1023.css */

}
@media screen and (max-width:640px){
/* DKTheme_4_Startseite_Small_0-640.css */
#start_companyinfo{display:block}#ah-info{border:0}#welcome{width:100%;float:none;border:0;border-bottom:1px solid rgba(0,0,0,0.3)}#address_otimes{width:100%}#largestage .bx-viewport::after{display:none}#largestage .ce_hyperlink{border:0 !important;background:#f7f7f7 !important;background:#ddd}.bx-wrapper .bx-controls-direction a{margin-top:-42px !important}#smallstage .bx-viewport{background:#f7f7f7 !important;background:#eee}#smallstage .bx-viewport div div div,#smallstage .bx-viewport div div a{width:100%;float:none}#smallstage ~ .ce_dk_vehicles_list table tbody{display:block}#smallstage ~ .ce_dk_vehicles_list table &gt; tbody tr td{transform: rotate(0deg)}#smallstage ~ .ce_dk_vehicles_list .price{float:none;clear:both;padding-top:5px}
}
/* DKTheme_4_jQuery-UI.css */
.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{width:1px;height:1px;position:absolute;overflow:hidden;margin:-1px;padding:0;border:0;clip:rect(0 0 0 0)}.ui-helper-reset{margin:0;padding:0;border:0;font-size:100%;line-height:1.3;text-decoration:none;outline:0;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{display:table;border-collapse:collapse;content:""}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{position:relative;overflow:hidden;display:inline-block;margin-top:-.25em;vertical-align:middle;background-repeat:no-repeat;text-indent:-99999px}.ui-widget-icon-block{left:50%;display:block;margin-left:-8px}.ui-widget-overlay{width:100%;height:100%;top:0;left:0;position:fixed}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;display:block;font-size:.1px;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{width:100%;height:7px;top:-5px;cursor:n-resize;left:0}.ui-resizable-s{width:100%;height:7px;bottom:-5px;cursor:s-resize;left:0}.ui-resizable-e{width:7px;height:100%;right:-5px;cursor:e-resize;top:0}.ui-resizable-w{width:7px;height:100%;left:-5px;cursor:w-resize;top:0}.ui-resizable-se{width:12px;height:12px;right:1px;cursor:se-resize;bottom:1px}.ui-resizable-sw{width:9px;height:9px;left:-5px;cursor:sw-resize;bottom:-5px}.ui-resizable-nw{width:9px;height:9px;left:-5px;cursor:nw-resize;top:-5px}.ui-resizable-ne{width:9px;height:9px;right:-5px;cursor:ne-resize;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{position:relative;display:block;margin:2px 0 0;padding:.5em .5em .5em .7em;font-size:100%;cursor:pointer}.ui-accordion .ui-accordion-content{overflow:auto;padding:1em 2.2em;border-top:0}.ui-autocomplete{top:0;left:0;position:absolute;cursor:default}.ui-menu{display:block;margin:0;padding:0;list-style:none;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em;Color: #333}.ui-menu .ui-menu-divider{height:0;margin:5px 0;border-top:1px;border-right:0px;border-bottom:0px;border-left:0px;font-size:0;line-height:0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{top:0;bottom:0;left:.2em;position:absolute;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button,.cc_btn{position:relative;overflow:visible;display:inline-block;margin-right:.1em;vertical-align:middle;text-align:center;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2em;white-space:nowrap;text-indent:-9999px;box-sizing:border-box}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{top:50%;position:absolute;margin-top:-8px;margin-left:-8px;left:50%}.ui-button.ui-icon-notext .ui-icon{width:2.1em;height:2.1em;padding:0;white-space:nowrap;text-indent:-9999px}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;padding:.4em 1em;white-space:normal;text-indent:0}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{padding:0;border:0}.ui-controlgroup{display:inline-block;vertical-align:middle}.ui-controlgroup &gt; .ui-controlgroup-item{float:left;margin-right:0;margin-left:0}.ui-controlgroup &gt; .ui-controlgroup-item:focus,.ui-controlgroup &gt; .ui-controlgroup-item.ui-visual-focus{z-index:9999}.ui-controlgroup-vertical &gt; .ui-controlgroup-item{width:100%;float:none;display:block;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc( 100% - 2.4em )}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{border-radius:.12em;behavior:url("assets/css3pie/1.0.0/PIE.htc");box-shadow:inset 1px 1px 1px #ccc;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;overflow:visible;border-radius:1em;behavior:url("assets/css3pie/1.0.0/PIE.htc");border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{width:8px;height:8px;background-image:none;border:4px solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;display:none;padding:.2em .2em 0}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{width:1.8em;height:1.8em;top:2px;position:absolute}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{left:50%;position:absolute;display:block;margin-top:-8px;margin-left:-8px;top:50%}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;text-align:center;line-height:1.8em}.ui-datepicker .ui-datepicker-title select{margin:1px 0;font-size:1em}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;margin:0 0 .4em;border-collapse:collapse;font-size:.9em}.ui-datepicker th{padding:.7em .3em;text-align:center;border:0;font-weight:bold}.ui-datepicker td{padding:1px;border:0}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{margin:.7em 0 0;padding:0 .2em;background-image:none;border-right:0;border-bottom:0;border-left:0}.ui-datepicker .ui-datepicker-buttonpane button{width:auto;overflow:visible;float:right;margin:.5em .2em .4em;padding:.2em .6em .3em;cursor:pointer}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{width:100%;clear:both;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{left:.5em;overflow:hidden;display:block;background-repeat:no-repeat;text-indent:-99999px;top:.3em}.ui-dialog{top:0;left:0;position:absolute;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{position:relative;padding:.4em 1em}.ui-dialog .ui-dialog-title{width:90%;overflow:hidden;float:left;margin:.1em 0;white-space:nowrap;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{width:20px;height:20px;right:.3em;position:absolute;margin:-10px 0 0;padding:1px;top:50%}.ui-dialog .ui-dialog-content{position:relative;overflow:auto;padding:.5em 1em;border:0;background:none}.ui-dialog .ui-dialog-buttonpane{margin-top:.5em;padding:.3em 1em .5em .4em;text-align:left;background-image:none;border-top:1px;border-right:0px;border-bottom:0px;border-left:0px}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw,.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-progressbar{height:2em;overflow:hidden;text-align:left}.ui-progressbar .ui-progressbar-value{height:100%;margin:-1px}.ui-progressbar .ui-progressbar-overlay{height:100%;background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{top:0;left:0;position:absolute;display:none;margin:0;padding:0}.ui-selectmenu-menu .ui-menu{overflow:auto;padding-bottom:1px;overflow-x:hidden}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{height:auto;margin:.5em 0 0;border:0;font-size:1em;line-height:1.5;font-weight:bold;padding:2px 0.4em}.ui-selectmenu-open{display:block}.ui-selectmenu-text{overflow:hidden;display:block;margin-right:20px;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{width:14em;text-align:left;white-space:nowrap}.ui-selectmenu-icon.ui-icon{float:right;margin-top:.5em}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{width:1.2em;height:1.2em;position:absolute;z-index:2;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;display:block;border:0;font-size:.7em;z-index:1;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{height:100%;top:0}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-bottom:-.6em;margin-left:0}.ui-slider-vertical .ui-slider-range{width:100%;left:0}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;overflow:hidden;display:inline-block;padding:0;vertical-align:middle}.ui-spinner-input{margin:.2em 2em .2em .4em;padding:.222em 0;vertical-align:middle;border:none;background:none;color:inherit}.ui-spinner-button{width:1.6em;height:50%;right:0;position:absolute;overflow:hidden;display:block;margin:0;padding:0;text-align:center;font-size:.5em;cursor:default}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{top:0;position:relative;float:left;padding:0;white-space:nowrap;list-style:none;margin:1px .2em 0 0;border-bottom-width:0}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;padding:1em 1.4em;border:0;background:none}.ui-tooltip{max-width:300px;position:absolute;padding:8px;z-index:9999}body .ui-tooltip{border:2px}.ui-widget{font:1em "Open Sans",sans-serif,Arial,Helvetica}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font:1em "Open Sans",sans-serif,Arial,Helvetica}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;color:#fff;background:#fff}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;font-weight:bold;color:#333;background: url("../../files/DeltaKonzept Theme4/images/ui-bg_inset-soft_50_white_1x100.png") 50% 50% repeat-x #b81818 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background: url("../../files/DeltaKonzept Theme4/images/ui-bg_inset-soft_50_white_1x100.png") 50% 50% repeat-x #ffee00}.ui-widget-header a{color:#333}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active,.cc_btn{font-weight:normal;background:#fff url("../../files/DeltaKonzept Theme4/images/ui-bg_highlight-hard_75_eee_1x100.png") 50% 50% repeat-x;Color: #333 !important}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button,a.cc_btn{text-decoration:none;color:#333}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus,.cc_btn:hover,.cc_btn:active,.cc_btn:focus{font-weight:normal;background: url("../../files/DeltaKonzept Theme4/images/ui-bg_highlight-hard_100_white_1x100.png") 50% 50% repeat-x #b81818 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background: url("../../files/DeltaKonzept Theme4/images/ui-bg_highlight-hard_100_white_1x100.png") 50% 50% repeat-x #fd0;color: #ffffff !important;color: #333}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{text-decoration:none;color:#2b2b2b}.ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{font-weight:normal;color:#333;background: url("../../files/DeltaKonzept Theme4/images/ui-bg_highlight-hard_100_white_1x100.png") 50% 50% repeat-x #b81818 !important;background:-webkit-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:-moz-linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);background:linear-gradient(top, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.25) 100%);;background: url("../../files/DeltaKonzept Theme4/images/ui-bg_highlight-hard_100_white_1x100.png") 50% 50% repeat-x #ffee00}.ui-icon-background,.ui-state-active .ui-icon-background{background-color:#333;border:0}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{text-decoration:none;color:#333}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;color:#777620;background:#fffa90}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;color:#5f3f3f;background:#fddfdf}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{font-weight:normal;opacity:.7;filter:Alpha(Opacity=70)}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{background-image:none;opacity:.35;filter:Alpha(Opacity=35)}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("../../files/DeltaKonzept Theme4/images/ui-icons_444444_256x240.png")}.ui-widget-header .ui-icon{background-image:url("../../files/DeltaKonzept Theme4/images/ui-icons_444444_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url("../../files/DeltaKonzept Theme4/images/ui-icons_555555_256x240.png")}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url("../../files/DeltaKonzept Theme4/images/ui-icons_666666_256x240.png")}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url("../../files/DeltaKonzept Theme4/images/ui-icons_777620_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("../../files/DeltaKonzept Theme4/images/ui-icons_cc0000_256x240.png")}.ui-button .ui-icon{background-image:url("../../files/DeltaKonzept Theme4/images/ui-icons_666_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:0}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:0}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:0}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:0}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}
</pre></body></html>