@charset "UTF-8";
/* RESET */
* {
  margin: 0;
  padding: 0;
  border: 0 none;
}

body {
  background-color: #ede9ea;
  font-family: "Arial", sans-serif;
}

#Wrapper {
  margin: 0 auto;
  width: 960px;
}

.clearer {
  clear: both;
}

/* HEADER */
#Header {
  padding: 13px 0 8px;
  position: relative;
  height: 45px;
  z-index: 3000;
  width: 960px;
}

#Logo {
  background-image: url("/fileadmin/Distribution/Public/Images/LancoLogo.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  color: transparent;
  display: block;
  top: 13px;
  position: absolute;
  left: 10px;
  height: 43px;
  width: 150px;
}

#Language {
  position: absolute;
  right: 0;
  top: 15px;
  font-size: 11px;
  text-transform: uppercase;
}

#Language ul {
  list-style: none;
  position: relative;
}

#Language li {
  display:inline-block;
  margin: 0 0 0 10px;
  position:relative;
}

#Language li:first-child {
  margin: 0;
}

#Language li::before {
  display:block;
  content:"";
  position:absolute;
  left: -12px;
  height: 100%;
  background:#cccccc;
  width:1px;
}

#Language li:first-child::before {
  display: none;
}

#Language img {
  width: 15px;
  height: auto;
  border: 1px solid #000000;
  margin: 0 2px 0 0;
  position:relative;
  top:1px;
}

#Language a {
  display: block;
  text-decoration: none;
  color: #002852;
  opacity: 0.3;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}

#Language a:hover {
  opacity: 1;
}

#Language li.active a {
  font-weight: bold;
  opacity: 1;
}

#Language .title {
  margin: 0 8px 0 4px;
}
/* *** */

/* NAVIGATION */
#Navigation {
  background: #ffffff;
  background: -moz-linear-gradient(top,  #ffffff 0%, #e5e5e5 4%, #f3f3f3 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(4%,#e5e5e5), color-stop(100%,#f3f3f3));
  background: -webkit-linear-gradient(top,  #ffffff 0%,#e5e5e5 4%,#f3f3f3 100%);
  background: -o-linear-gradient(top,  #ffffff 0%,#e5e5e5 4%,#f3f3f3 100%);
  background: -ms-linear-gradient(top,  #ffffff 0%,#e5e5e5 4%,#f3f3f3 100%);
  background: linear-gradient(to bottom,  #ffffff 0%,#e5e5e5 4%,#f3f3f3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f3f3f3',GradientType=0 );
  border: 1px solid #CCCCCC;
  height: 22px;
  border-radius: 10px 10px 0 0;
  box-shadow: 1px 1px 0 #fff inset, -1px 1px 0 #fff inset;
  z-index: 1000;
  width: 960px;
}

#Navigation .firstLevel {
  float: right;
  position: relative;
  z-index: 1000;
}

#Navigation .firstLevel > li {
  display: inline-block;
}

#Navigation .firstLevel li > a {
  padding: 4px 0;
  width: 95px;
  text-align: center;
  display: block;
  border-left: 1px solid #CCCCCC;
  transition: all 0.5s ease 0s;
  text-decoration: none;
  color: #002852;
  font-size: 12px;
}

#Navigation .secondLevel {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease 0s;
  margin-top: 1px;
}

#Navigation .secondLevel > li {
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  display: block;
  background-color: #ede9ea;
}

#Navigation .secondLevel li > a {
  padding: 4px 10px;
  text-align: left;
  display: block;
  border-left: 0 none;
  margin-left: -10px;
  transition: all 0.5s ease 0.5s;
  text-decoration: none;
  color: #002852;
  font-size: 12px;
  max-width: 170px;
  width: auto;
}

#Navigation .firstLevel > li:hover .secondLevel {
  opacity: 1;
  visibility: visible;
}

#Navigation .firstLevel > li:hover .secondLevel a {
  margin-left: 0;
  transition: all 0.5s ease 0s;
}

#Navigation a:hover, #Navigation .active > a {
  background-color: #db203d;
  color: #FFFFFF !important;
}
/* ** */

/* HEADER IMAGE */
#HeaderImage {
  background-color: #eaeaea;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 3px 6px 0;
  border-radius: 0 0 10px 10px;
  position: relative;
  box-shadow: 1px 1px 0 #fff inset, -1px 1px 0 #fff inset;
  height: 288px;
  margin-bottom: 10px;
  width: 948px;
}

#HeaderImage figure {
  position: absolute;
  opacity: 0;
  transition: all 1s ease 0s;
}

#HeaderImage figure.active {
  opacity: 1;
  transition: all 1s ease 0.5s;
}

#HeaderImageNavigation {
  bottom: 25px;
  height: 15px;
  position: absolute;
  right: 25px;
}

#HeaderImageNavigation span {
  height: 12px;
  width: 12px;
  display: inline-block;
  background-color: #FFF;
  color: #999;
  text-align: center;
  font-weight: bold;
  font-size: 10px;
  margin-right: 3px;
  padding: 2px 2px 3px 3px;
  cursor: pointer;
  border: 1px solid #002852;
  transition: all 0.5s ease 0s;
}

#HeaderImageNavigation span.active {
  color: #002852;
}
/* *** */

/* CONTENT */
#Content {
  background: #f3f3f3;
  background: -moz-linear-gradient(top,  #f3f3f3 0, #e5e5e5 10px, #ffffff 50px) url("/fileadmin/Distribution/Public/Images/tuev.png");
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0,#f3f3f3), color-stop(10px,#e5e5e5), color-stop(50px,#ffffff));
  background: -webkit-linear-gradient(top,  #f3f3f3 0,#e5e5e5 10px,#ffffff 50px);
  background: -o-linear-gradient(top,  #f3f3f3 0,#e5e5e5 10px,#ffffff 50px);
  background: -ms-linear-gradient(top,  #f3f3f3 0,#e5e5e5 10px,#ffffff 50px);
  background: linear-gradient(to bottom,  #f3f3f3 0,#e5e5e5 10px,#ffffff 50px);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#ffffff',GradientType=0 );
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  border-radius: 10px 10px 0 0;
  box-shadow: 1px 1px 0 #fff inset, -1px 1px 0 #fff inset;
  z-index: 0;
  width: 760px;
  float: left;
  margin-right: 10px;
}

#Breadcrumb {
  margin: 10px 0 0;
}

#Breadcrumb a {
  color: #666;
}

#MainContent a.external-link-new-window {
  background: #9ea4bc;
  background: -moz-linear-gradient(top,  #9ea4bc 0%, #253c5d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9ea4bc), color-stop(100%,#253c5d));
  background: -webkit-linear-gradient(top,  #9ea4bc 0%,#253c5d 100%);
  background: -o-linear-gradient(top,  #9ea4bc 0%,#253c5d 100%);
  background: -ms-linear-gradient(top,  #9ea4bc 0%,#253c5d 100%);
  background: linear-gradient(to bottom,  #9ea4bc 0%,#253c5d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9ea4bc', endColorstr='#253c5d',GradientType=0 );
  border-radius: 5px;
  color: #fff;
  left: -0px;
  position: relative;
  padding: 5px;
  font-size: 14px;
  text-align: center;
  width: 90px;
  text-decoration: none;
  display: block;
  float: right;
}

#MainContent .csc-textpic-intext-left a.external-link-new-window {
  left: -40px !important;
}

#MainContent a.external-link-new-window span {
  display: none;
}



#SubNavigation {
  float: left;
  margin-top: 40px;
  position: relative;
  width: 166px;
  padding: 0 10px 85px;
}

#SubNavigation {
  z-index: 0;
}

#SubNavigation .firstLevel {
  position: relative;
  z-index: 0;
}

#SubNavigation .firstLevel > li {
  display: block;
}

#SubNavigation .firstLevel li > a {
  padding: 4px 0;
  transition: all 0.5s ease 0s;
  text-decoration: none;
  color: #002852;
  font-size: 12px;
  border-bottom: transparent;
  display: block;
}

#SubNavigation .firstLevel li > a span {
  margin-right: 5px;
}

#SubNavigation .secondLevel {
  display: none;
  margin: 0 0 5px;
}

#SubNavigation .secondLevel > li {
  display: block;
}

#SubNavigation .secondLevel li > a { 
  padding: 4px 0;
  margin-left: 10px;
  transition: all 0.5s ease 0s;
  text-decoration: none;
  color: #002852;
  font-size: 12px;
  display: block;
  border-bottom: transparent;
}

#SubNavigation .secondLevel li > a span {
  margin-right: 5px;
  color: #db203d;
}

#SubNavigation .firstLevel > li.active .secondLevel {
  display: block;
}

#SubNavigation a:hover, #SubNavigation .active > a {
  color: #db203d !important;
}
/* *** */

#MainContent {
  width: 574px;
  float: right;
  margin-top: 0px;
}

#MainContent p {
  width: calc(100% - 30px);
}

h1 {
  border-bottom: 1px dotted #dbd8d8;
  color: #002651;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 12px;
  position: relative;
  vertical-align: middle;
  width: calc(100% - 20px);
}

h2 {
  color: #002651;
  float: none;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 12px;
  position: relative;
  vertical-align: middle;
  width: calc(100% - 20px);
}

h3 {
  color: #666666;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  width: calc(100% - 20px);
}

h4 {
  color: #002651;
  font-size: 11px;
  font-weight: bold;
  margin: 0 0 -10px;
  width: calc(100% - 20px);
}

p {
  color: #666666;
  font-size: 12px;
  margin-bottom: 12px;
  position: relative;
}

#MainContent a {
  color: #666;
}

#MainContent a span {
  color: #002651;
}

.csc-menu-def li {
  display: inline-block;
  width: 174px;
  position: relative;
  height: 114px;
  overflow: hidden;
  margin-right: 10px;
  margin-bottom: 20px;
}

.csc-menu-def h2 {
  bottom: 1px;
  font-weight: 100;
  padding: 5px;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 100;
  font-size: 12px;  
  background-color: rgba(255,255,255,0.8);
  margin: 0;
}

.csc-menu-def h2 a {
  text-decoration: none;
  color: #000;
}

.csc-menu-def img {
  position: absolute;
  width: auto;
  height: 100%;
}

div.csc-textpic-intext-left .csc-textpic-imagewrap {
  float: left;
  width: 220px;
}

.csc-textpic-intext-left {
  margin: 10px 0 20px;
  position: relative;
}

.csc-textpic-intext-left p:last-of-type {
  position: absolute;
  right: 0;
  width: 100px !important;
  top: 0;
}

.csc-textpic-intext-left a {
  color: #666666;
  font-size: 12px;
  margin-bottom: 12px;
  font-weight: bold;
  position: relative;
  width: calc(100% - 20px);
  text-decoration: none;
}

.csc-textpic-intext-left a span {
  margin: 0 5px 0 0;
}

td, th {
  color: #666;
  font-size: 12px;
  padding: 0 40px 0 0;
}

table {
  margin: 30px 0 10px;
}

div.csc-textpic .csc-textpic-imagewrap img {
  border: medium none;
  display: block;
  max-width: 220px;
  height: auto;
}
/* *** */


/* ASIDE */
#Aside {
  z-index: 0;
  width: 166px;
  float: right;
}

.serviceBox {
  background: #ffffff;
  background: -moz-linear-gradient(top,  #ffffff 0%, #e5e5e5 4%, #fff 60%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(4%,#e5e5e5), color-stop(60%,#fff));
  background: -webkit-linear-gradient(top,  #ffffff 0%,#e5e5e5 4%,#fff 60%);
  background: -o-linear-gradient(top,  #ffffff 0%,#e5e5e5 4%,#fff 60%);
  background: -ms-linear-gradient(top,  #ffffff 0%,#e5e5e5 4%,#fff 60%);
  background: linear-gradient(to bottom,  #ffffff 0%,#e5e5e5 4%,#fff 60%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fff',GradientType=0 );
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  box-shadow: 1px 1px 0 #fff inset, -1px 1px 0 #fff inset;
  z-index: 0;
  width: 166px;
  padding: 10px 10px;
  margin-bottom: 10px;
  left: -20px;
  position: relative;
}

#Aside h1 {
  color: #002651;
  float: none;
  font-size: 18px;
  font-weight: bold;
  height: 17px;
  margin-bottom: 35px;
  position: relative;
  text-align: center;
  width: 100%;
}

#Aside h2 {
  color: #666;
  float: right;
  font-size: 12px;
  font-weight: 300;
  margin: 0;
  position: relative;
  text-align: right;
  top: -25px;
  width: 70px;
}

#Aside .serviceBox:first-of-type {
  padding: 35px 10px 10px;
}

#Aside > div:nth-child(1) a {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  color: #666;
  display: table;
  font-size: 12px;
  margin: 0;
  text-align: left;
  text-decoration: none;
  width: auto;
}

#Aside .serviceBox:first-of-type span {
  margin-right: 10px;
  color: #002651;
}

#Aside .serviceBox a {
  background: #9ea4bc;
  background: -moz-linear-gradient(top,  #9ea4bc 0%, #253c5d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9ea4bc), color-stop(100%,#253c5d));
  background: -webkit-linear-gradient(top,  #9ea4bc 0%,#253c5d 100%);
  background: -o-linear-gradient(top,  #9ea4bc 0%,#253c5d 100%);
  background: -ms-linear-gradient(top,  #9ea4bc 0%,#253c5d 100%);
  background: linear-gradient(to bottom,  #9ea4bc 0%,#253c5d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9ea4bc', endColorstr='#253c5d',GradientType=0 );
  border-radius: 5px;
  color: #fff;
  margin: 10px auto;
  padding: 5px;
  font-size: 14px;
  text-align: center;
  width: 90px;
  text-decoration: none;
  display: block;
}



#Aside .resetbutt, #Aside .submitbutt {
  display: none;
}

.tx-kesearch-pi1 {
  margin: 0 0 10px;
}

#Aside #ke_search_sword {
  border-radius: 0;
  font-size: 12px !important;
  padding: 2px 5px;
  width: 100px;
  border: 1px solid #666 !important;
  color: #666 !important;
}

.tx-kesearch-pi1 input[type="text"]:focus, .tx-kesearch-pi1 input[type="text"]:hover, .tx-kesearch-pi1 select:focus, .tx-kesearch-pi1 select:hover, .tx-kesearch-pi1 textarea:focus, .tx-kesearch-pi1 textarea:hover {
  box-shadow: none !important;
  border: 1px solid #666 !important;
}

#kesearch_submit {
  border: 1px solid #666 !important;
  height: 20px !important;
  left: 111px !important;
  top: 1px !important;
  width: 20px !important;
}
/* *** */

/* FOOTER */
#Footer {
  background-color: #fff;
  /*background-image: url("/fileadmin/Distribution/Public/Images/tuev.jpg");
  background-position: 10px 20px;
  background-repeat: no-repeat;
  background-size: 180px auto;*/
  border-bottom: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  border-radius: 0 0 10px 10px;
  border-right: 1px solid #cccccc;
  float: left;
  margin: 0 0 20px;
  padding: 75px 0 10px 185px;
  position: relative;
  width: 575px;
}

#Footer a {
  color: #666666;
  font-size: 12px;
  position: absolute;
  right: 20px;
  top: 75px;
  text-decoration: none;
}

#Footer p {
  left: 40px;
}
/* *** */
#akkordeonWrapper {
  position: relative;
  transition: all 0.5s ease 0s
}

#akkordeonNavigation {
  position: absolute;
  left: 0;
  top: 0;
}

#akkordeonNavigation ul {
  list-style: none;
}

#akkordeonNavigation li {
  display: inline-block;
}

#akkordeonNavigation a {
  font-size: 12px;
  color: #666666;
  margin: 0 -1px 0 0;
  text-decoration: none;
  padding: 5px 10px 3px;
  border: 1px solid #666666;
  transition: all 0.5s ease 0s;
}

#akkordeonNavigation .active a, #akkordeonNavigation a:hover {
  color: #002651;
}

.akkordeonBox {
  position: absolute;
  top: 30px;
  left: 0;
  opacity: 0;
  margin: 0 0 40px;
  transition: all 0.5s ease 0s;
}

.akkordeonBox.active {
  opacity: 1;
  position: relative;
}





.ui-widget-content {
  background: url("../Images/JQueryUI/ui-bg_flat_75_ffffff_40x100.png") repeat-x scroll 50% 50% #fff;
  border: 0 none;
  font-family: "Arial";
  color: #222;
}

ul.t3ddy-tabContainer-tabList {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  font-weight: 300;
  padding: 0 !important;
  height: 22px;
  border-bottom: 1px solid #666;
  border-top: 0 none !important;
  border-right: 0 none !important;
  border-left: 0 none !important;
  width: 99%;
  border-radius: 0;
  margin: 0 !important;
}

ul.t3ddy-tabContainer-tabList li {
  display: inline;
  list-style: outside none none;
  margin: 0;
  border: 0 none !important;
}

ul.t3ddy-tabContainer-tabList li.tabberactive a {
  background-color: #ffffff;
  border-bottom: 1px solid #9a9a9a;
  color: #002450;
  cursor: default;
  font-weight: bold;
}

ul.t3ddy-tabContainer-tabList li a {
  background: #FFF !important;
  border: 1px solid #666 !important;
  color: #666666 !important;
  font-size: 12px;
  font-weight: 300;
  margin: 0 -3px !important;
  padding: 2px 7px !important;
  height: 16px;
}

ul.t3ddy-tabContainer-tabList li.ui-tabs-active a {
  color: #002651 !important;
}

.ui-tabs .ui-tabs-panel {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  border-width: 0;
  display: block;
  padding: 20px 0;
}

.t3ddy-item h2 {
  color: #666;
  margin: 0;
  float: none;
}

.t3ddy-item table {
  margin: 0 0 20px;
}

.t3ddy-item th {
  background-color: #002651;
  color: #FFF;
  font-weight: 300;
  text-align: center;
  padding: 5px 20px;
}

.t3ddy-item td {
  text-align: center;
  padding: 5px 20px;
}

#MainContent ul {
  color: #666;
  font-size: 12px;
  font-weight: 300;
  list-style: square inside;
  margin: 0 0 20px;
}

#flickr {
  width: 54px;
  height: 19px;
  background-image: url("/fileadmin/Distribution/Public/Images/flickr.jpg");
  background-repeat: no-repeat;
  display: inline-block;
  margin: 10px 5px;
}

#youtube {
  width: 54px;
  height: 19px;
  background-image: url("/fileadmin/Distribution/Public/Images/youtube.jpg");
  background-repeat: no-repeat;
  display: inline-block;
  margin: 10px 5px;
}

.csc-textpic-imagecolumn figcaption {
  color: #666;
  font-size: 12px;
  margin: 0 0 10px;
}


.t3ddy-item .csc-textpic-center figure {
  float: left;
  margin-right: 3%;
  width: 28%;
}

.t3ddy-item img {
  width: 100%;
  height: auto;
}

.csc-textpic-intext-left figure {
  display: block !important;
  min-height: 160px;
}






.news-list-date {
  border: 0 none !important;
}

.news-list-category {
  display: none !important;
}

.news-list-view h3 a {
  font-size: 12px;
  font-weight: 300;
  margin: 0 0 5px;
  display: block;
}

.news-list-view .teaser-text a {
  float: right;
  font-size: 12px;
  margin: 0 30px 20px;
  background: #9ea4bc;
  background: -moz-linear-gradient(top,  #9ea4bc 0%, #253c5d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9ea4bc), color-stop(100%,#253c5d));
  background: -webkit-linear-gradient(top,  #9ea4bc 0%,#253c5d 100%);
  background: -o-linear-gradient(top,  #9ea4bc 0%,#253c5d 100%);
  background: -ms-linear-gradient(top,  #9ea4bc 0%,#253c5d 100%);
  background: linear-gradient(to bottom,  #9ea4bc 0%,#253c5d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9ea4bc', endColorstr='#253c5d',GradientType=0 );
  border-radius: 5px;
  color: #fff !important;
  padding: 5px;
  text-align: center;
  width: 90px;
  text-decoration: none;
  display: block;
}

.teaser-text .external-link-new-window {
  display: none !important;
}

.news-text-wrap .external-link-new-window {
  display: inline !important;
  left: 0 !important;
  top: 10px;
  width: auto !important;
}

.news-single .article .news-img-wrap {
  margin: 0 20px;
  width: 200px;
}

.news .article .news-img-wrap img {
  width: 100%;
}

.news-backlink-wrap a {
  float: left;
  font-size: 12px;
  margin: 0 0 20px;
  background: #9ea4bc;
  background: -moz-linear-gradient(top,  #9ea4bc 0%, #253c5d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9ea4bc), color-stop(100%,#253c5d));
  background: -webkit-linear-gradient(top,  #9ea4bc 0%,#253c5d 100%);
  background: -o-linear-gradient(top,  #9ea4bc 0%,#253c5d 100%);
  background: -ms-linear-gradient(top,  #9ea4bc 0%,#253c5d 100%);
  background: linear-gradient(to bottom,  #9ea4bc 0%,#253c5d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9ea4bc', endColorstr='#253c5d',GradientType=0 );
  border-radius: 5px;
  color: #fff !important;
  padding: 5px;
  text-align: center;
  width: 90px;
  text-decoration: none;
  display: block;
}

.facebook {
  display: none;
}

.news-related-wrap {
  width: 332px;
  margin: 10px 0;
}

.news-related-files-size {
  display: none !important;
}

.news-related-files-link {
  border: 0 none !important;
}

.news-text-wrap {
  float: left;
  margin-bottom: 10px;
  width: 332px;
}

.tx-powermail {
  width: 500px;
}

.tx-powermail .powermail_fieldset .powermail_label {
  clear: left;
  display: block;
  float: left;
  font-size: 12px;
  font-weight: 300;
  width: 200px;
}

.tx-powermail .powermail_fieldset .powermail_field {
  border: 1px solid #DDD;
  color: #000;
  float: left;
  font-size: inherit;
  margin: 0;
  font-size: 12px;
  padding: 5px;
  width: 100%;
}

.tx-powermail .powermail_fieldset .powermail_fieldwrap {
  clear: none;
  float: left;
  margin: 0 5% 10px 0;
  overflow: hidden;
  width: 47%;
}

.tx-powermail .powermail_fieldset .powermail_fieldwrap:nth-child(2n+3) {
  margin: 0 0 10px 0;
}

.tx-powermail .powermail_fieldset .powermail_legend {
  display: none;
}

.tx-powermail .powermail_fieldset .powermail_radio_outer, .tx-powermail .powermail_fieldset .powermail_captcha_outer, .tx-powermail .powermail_fieldset .powermail_check_outer, .tx-powermail .powermail_fieldset .powermail_fieldwrap_text, .tx-powermail .powermail_fieldset .powermail_fieldwrap_file_inner ul:not(.parsley-errors-list) {
  background-color: white;
  border: 1px solid #DDD;
  float: right;
  list-style: outside none none;
  margin: 0;
  padding: 10px 10px 5px;
  width: 100%;
  font-size: 12px;
}

.powermail_check_inner {
  margin: 0 0 5px;
}
.powermail_check_inner input {
  margin: 0 5px 0 0;
}

.powermail_submit {
  font-size: 12px;
  margin: 0 0 20px;
  background: #9ea4bc;
  background: -moz-linear-gradient(top,  #9ea4bc 0%, #253c5d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9ea4bc), color-stop(100%,#253c5d));
  background: -webkit-linear-gradient(top,  #9ea4bc 0%,#253c5d 100%);
  background: -o-linear-gradient(top,  #9ea4bc 0%,#253c5d 100%);
  background: -ms-linear-gradient(top,  #9ea4bc 0%,#253c5d 100%);
  background: linear-gradient(to bottom,  #9ea4bc 0%,#253c5d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9ea4bc', endColorstr='#253c5d',GradientType=0 );
  border-radius: 5px;
  color: #fff !important;
  padding: 5px;
  text-align: center;
  width: 90px;
  text-decoration: none;
  display: block;
}


#c4 {
  display: none;
}

#c5::after {
  clear: both;
  content: "";
  display: block;
  height: 120px;
  visibility: hidden;
}



.tx-kesearch-pi1 a.next, .tx-kesearch-pi1 a.prev {
  color: transparent !important;
  display: inline-block;
  height: 19px !important;
  margin: 0 0 -10px;
  padding: 0 !important;
  text-decoration: none;
  width: 14px !important;
}

#kesearch_results .result-list-item {
  font-size: 12px;
  padding: 0 20px 0 0 !important;
}

#kesearch_pagebrowser_top a, #kesearch_pagebrowser_bottom a {
  background-color: #253c5d !important;
  color: #fff;
  font-weight: bold !important;
  padding: 5px !important;
  text-decoration: none !important;
}

#kesearch_pagebrowser_top a.current, #kesearch_pagebrowser_bottom a.current {
  opacity: 0.5;
  color: #fff !important;
}

#kesearch_results:after {
  display: block;
  content: "";
  clear: both;
  height: 1px;
  visibility: hidden;
}

.news-list-tags {
  display: none !important;
}


ul.csc-uploads::after {
  clear: both;
  content: "";
  display: block;
}

.csc-uploads-element {
  float: left;
  width: calc(25% - 8px);
  margin: 0 10px 10px 0 !important;
}

.csc-uploads-element:nth-child(4n+4) {
  margin: 0 0 10px !important;
}

ul.csc-uploads span {
  display: inline-block;
}

.csc-uploads-fileName .img-wrap {
  height: 90px;
  overflow: hidden;
  display: block;
  width: 100%;margin: 0 0 5px;
  
}

.csc-uploads-fileName img {
  width: 100%;
  height: auto;
  
}

.csc-uploads-fileSize {
  margin: 0 0 0 5px;
}

.csc-uploads-fileSize::before {
  content: "(";
}

.csc-uploads-fileSize::after {
  content: ")";
}

#cookie-hint {
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  right: 0;
  z-index: 200;
  background: #fff;
}

#cookie-hint div {
  width: 910px;
  padding: 15px 35px;
  margin: 0 auto;
}

#cookie-hint div::after {
  display: block;
  content: "";
  clear: both;
}

#cookie-hint p {
  margin: 0;
  width: 75%;
  float: left;
}

#cookie-dismiss {
  float: right;
  display: inline-block;
  background: black;
  padding: 0 15px;
  height: 44px;
  line-height: 44px;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  background: #002651;
  position: relative;
  text-decoration: none;
  top: 0px;
}
