/*
	jQuery Touch Optimized Sliders "R"Us
	Core CSS
*/
.tos-noanimation {
  -webkit-transition-property: none !important;
  -moz-transition-property: none !important;
  -ms-transition-property: none !important;
  -o-transition-property: none !important;
  transition-property: none !important; }

.tos-fastanimation {
  -webkit-transition-duration: 0.2s !important;
  -moz-transition-duration: 0.2s !important;
  -ms-transition-duration: 0.2s !important;
  -o-transition-duration: 0.2s !important;
  transition-duration: 0.2s !important;
  -webkit-transition-timing-function: ease-out !important;
  -moz-transition-timing-function: ease-out !important;
  -ms-transition-timing-function: ease-out !important;
  -o-transition-timing-function: ease-out !important;
  transition-timing-function: ease-out !important; }

.tos-wrapper {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  display: none;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden; }
  .tos-wrapper.tos-opened {
    display: block; }
  .tos-wrapper.tos-opening {
    opacity: 1; }
  .tos-wrapper.tos-fixed {
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9000; }
  .tos-wrapper.tos-inline {
    position: relative; }

.tos-slider {
  white-space: nowrap;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative; }

.tos-wrapper.tos-fx-slide .tos-slider {
  left: 0;
  -webkit-transition: left 0.4s ease;
  -moz-transition: left 0.4s ease;
  -ms-transition: left 0.4s ease;
  -o-transition: left 0.4s ease;
  transition: left 0.4s ease; }
.tos-wrapper.tos-fx-slide.tos-fixed .tos-slider {
  position: absolute; }

.tos-wrapper.tos-fx-fade .tos-slider {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease; }

.tos-uibg {
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1; }

.tos-desktop .tos-wrapper:hover .tos-uibg,
.tos-touch .tos-wrapper.tos-hover .tos-uibg {
  opacity: 1; }

.tos-slide {
  -webkit-overflow-scrolling: touch;
  line-height: 1px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative; }
  .tos-slide:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px; }
  .tos-slide.tos-loading:after {
    content: '';
    border-right: 5px solid black;
    border-radius: 50%;
    display: block;
    width: 30px;
    height: 30px;
    margin: -15px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    -webkit-animation: spin 1s infinite linear;
    -moz-animation: spin 1s infinite linear;
    -ms-animation: spin 1s infinite linear;
    -o-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear; }
  .tos-slide.tos-loading > * {
    opacity: 0; }
  .tos-slide > * {
    opacity: 1;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease; }

.tos-wrapper.tos-fixed .tos-slide.tos-loading:after {
  border-right-color: white; }

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg); }

  to {
    -webkit-transform: rotate(360deg); } }

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg); }

  to {
    -moz-transform: rotate(360deg); } }

@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg); }

  to {
    -ms-transform: rotate(360deg); } }

@-o-keyframes spin {
  from {
    -o-transform: rotate(0deg); }

  to {
    -o-transform: rotate(360deg); } }

@keyframes spin {
  from {
    transform: rotate(0deg); }

  to {
    transform: rotate(360deg); } }

.tos-slide > * {
  vertical-align: middle;
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }
.tos-slide.tos-html > div {
  white-space: normal;
  text-align: left;
  line-height: 1.5; }
  .tos-slide.tos-html > div * {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -o-text-size-adjust: none;
    text-size-adjust: none; }

.tos-wrapper.tos-fill .tos-slide.tos-image > img {
  max-height: none;
  max-width: none;
  min-height: 100%;
  min-width: 100%; }
.tos-wrapper.tos-fixed .tos-slide.tos-html > div {
  background-color: white;
  color: #333333;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  padding: 40px;
  overflow: auto; }

.tos-desktop .tos-wrapper.tos-fixed {
  background-color: rgba(0, 0, 0, 0.85); }
  .tos-desktop .tos-wrapper.tos-fixed.tos-fit .tos-slide {
    padding: 20px; }

/*
	jQuery Touch Optimized Sliders "R"Us
	Buttons addon
*/
.tos-prev,
.tos-next,
.tos-close {
  background: black;
  border-radius: 3px;
  opacity: 0;
  display: block;
  width: 40px;
  position: absolute;
  z-index: 1;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease; }

.tos-prev,
.tos-next {
  height: 80px;
  margin-top: -40px;
  top: 50%; }
  .tos-prev.tos-disabled,
  .tos-next.tos-disabled {
    cursor: default; }

.tos-prev {
  left: 20px; }

.tos-next {
  right: 20px; }

.tos-close {
  height: 40px;
  top: 20px;
  right: 20px; }

.tos-desktop .tos-wrapper:hover .tos-prev,
.tos-desktop .tos-wrapper:hover .tos-next,
.tos-desktop .tos-wrapper:hover .tos-close,
.tos-touch .tos-wrapper.tos-hover .tos-prev,
.tos-touch .tos-wrapper.tos-hover .tos-next,
.tos-touch .tos-wrapper.tos-hover .tos-close {
  opacity: 0.5; }
  .tos-desktop .tos-wrapper:hover .tos-prev:hover,
  .tos-desktop .tos-wrapper:hover .tos-next:hover,
  .tos-desktop .tos-wrapper:hover .tos-close:hover,
  .tos-touch .tos-wrapper.tos-hover .tos-prev:hover,
  .tos-touch .tos-wrapper.tos-hover .tos-next:hover,
  .tos-touch .tos-wrapper.tos-hover .tos-close:hover {
    opacity: 0.9; }
  .tos-desktop .tos-wrapper:hover .tos-prev.tos-disabled,
  .tos-desktop .tos-wrapper:hover .tos-next.tos-disabled,
  .tos-desktop .tos-wrapper:hover .tos-close.tos-disabled,
  .tos-touch .tos-wrapper.tos-hover .tos-prev.tos-disabled,
  .tos-touch .tos-wrapper.tos-hover .tos-next.tos-disabled,
  .tos-touch .tos-wrapper.tos-hover .tos-close.tos-disabled {
    opacity: 0.2; }

.tos-prev span,
.tos-next span,
.tos-close span:before,
.tos-close span:after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  margin: -5px;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.tos-close span:before,
.tos-close span:after {
  width: 6px;
  height: 6px;
  margin-top: -4px;
  margin-left: 0;
  margin-right: 0; }

.tos-prev span,
.tos-close span:before {
  border-bottom: 3px solid white;
  border-left: 3px solid white;
  left: 50%; }

.tos-next span,
.tos-close span:after {
  border-top: 3px solid white;
  border-right: 3px solid white;
  right: 50%; }

.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-prev .tos-slide, .tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-next .tos-slide, .tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-close .tos-slide {
  padding-left: 80px;
  padding-right: 80px; }

.tos-inline {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  display: inline-block;
  margin: 0;
  position: relative;
  top: auto;
  left: auto;
  right: auto; }
  .tos-inline.tos-prev {
    margin-right: -60px; }
  .tos-inline.tos-next {
    margin-left: -60px; }

.tos-loading .tos-inline {
  opacity: 0 !important; }

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-prev,
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-next,
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-close {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2); }
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-prev,
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-next,
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-close {
  -webkit-transform: scale(3);
  -moz-transform: scale(3);
  -ms-transform: scale(3);
  -o-transform: scale(3);
  transform: scale(3); }
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-prev, .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-prev {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center; }
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-next, .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-next {
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center; }
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-close, .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-close {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top; }

/*
	jQuery Touch Optimized Sliders "R"Us
	Caption addon
*/
.tos-caption {
  color: white;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  position: absolute;
  left: 0;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }
  .tos-caption.tos-disabled {
    opacity: 0 !important; }

.tos-desktop .tos-wrapper:hover .tos-caption,
.tos-touch .tos-wrapper.tos-hover .tos-caption {
  opacity: 1; }

.tos-wrapper .tos-caption {
  line-height: 20px;
  font-size: 15px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  bottom: 20px; }
.tos-wrapper.tos-has-caption .tos-uibg {
  height: 100px; }

.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-caption .tos-slide {
  padding-bottom: 60px; }

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-caption {
  line-height: 40px;
  font-size: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  bottom: 40px; }
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-caption .tos-uibg {
  height: 200px; }
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-caption {
  line-height: 60px;
  font-size: 45px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
  bottom: 60px; }
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-caption .tos-uibg {
  height: 300px; }

/*
	jQuery Touch Optimized Sliders "R"Us
	Drag addon
*/
.tos-wrapper.tos-fx-slide .tos-slider {
  -webkit-transition-property: left, margin;
  -moz-transition-property: left, margin;
  -ms-transition-property: left, margin;
  -o-transition-property: left, margin;
  transition-property: left, margin; }

/*
	jQuery Touch Optimized Sliders "R"Us
	Pagination addon
*/
.tos-pagination {
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1; }
  .tos-pagination a {
    display: inline-block; }
  .tos-pagination.tos-bullets a {
    background-color: rgba(255, 255, 255, 0.2); }
    .tos-pagination.tos-bullets a:hover {
      background-color: rgba(255, 255, 255, 0.5); }
    .tos-pagination.tos-bullets a.tos-selected {
      background-color: rgba(255, 255, 255, 0.9); }

.tos-desktop .tos-wrapper:hover .tos-pagination,
.tos-touch .tos-wrapper.tos-hover .tos-pagination {
  opacity: 1; }

.tos-wrapper .tos-pagination {
  padding: 0 0 20px 0; }
.tos-wrapper.tos-has-bullets .tos-pagination {
  height: 10px; }
  .tos-wrapper.tos-has-bullets .tos-pagination a {
    border-radius: 10px;
    width: 10px;
    height: 10px;
    margin: 0 5px; }
.tos-wrapper.tos-has-bullets .tos-caption {
  bottom: 40px; }
.tos-wrapper.tos-has-bullets .tos-uibg {
  height: 90px; }
.tos-wrapper.tos-has-bullets.tos-has-caption .tos-uibg {
  height: 130px; }
.tos-wrapper.tos-has-thumbnails .tos-pagination {
  height: 50px; }
  .tos-wrapper.tos-has-thumbnails .tos-pagination a {
    background-position: center center;
    background-size: cover;
    width: 50px;
    height: 50px;
    margin: 0 5px; }
.tos-wrapper.tos-has-thumbnails .tos-caption {
  bottom: 80px; }
.tos-wrapper.tos-has-thumbnails .tos-uibg {
  height: 130px; }
.tos-wrapper.tos-has-thumbnails.tos-has-caption .tos-uibg {
  height: 170px; }

.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-bullets .tos-slide {
  padding-bottom: 50px; }
.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-bullets.tos-has-caption .tos-slide {
  padding-bottom: 80px; }
.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-thumbnails .tos-slide {
  padding-bottom: 90px; }
.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-thumbnails.tos-has-caption .tos-slide {
  padding-bottom: 120px; }

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-pagination {
  padding: 0 0 40px 0; }
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-bullets .tos-pagination {
  height: 20px; }
  .tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-bullets .tos-pagination a {
    border-radius: 20px;
    width: 20px;
    height: 20px;
    margin: 0 10px; }
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-bullets .tos-caption {
  bottom: 80px; }
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-bullets .tos-uibg {
  height: 180px; }
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-bullets.tos-has-caption .tos-uibg {
  height: 260px; }
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-pagination {
  height: 100px; }
  .tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-pagination a {
    background-position: center center;
    background-size: cover;
    width: 100px;
    height: 100px;
    margin: 0 10px; }
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-caption {
  bottom: 160px; }
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-uibg {
  height: 260px; }
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-thumbnails.tos-has-caption .tos-uibg {
  height: 340px; }
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-pagination {
  padding: 0 0 60px 0; }
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-bullets .tos-pagination {
  height: 30px; }
  .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-bullets .tos-pagination a {
    border-radius: 30px;
    width: 30px;
    height: 30px;
    margin: 0 15px; }
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-bullets .tos-caption {
  bottom: 120px; }
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-bullets .tos-uibg {
  height: 270px; }
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-bullets.tos-has-caption .tos-uibg {
  height: 390px; }
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-pagination {
  height: 150px; }
  .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-pagination a {
    background-position: center center;
    background-size: cover;
    width: 150px;
    height: 150px;
    margin: 0 15px; }
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-caption {
  bottom: 240px; }
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-uibg {
  height: 390px; }
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-thumbnails.tos-has-caption .tos-uibg {
  height: 510px; }

/*
	jQuery Touch Optimized Sliders "R"Us
	Youtube media
*/
.tos-play {
  background: black;
  opacity: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease; }
  .tos-play:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%; }

.tos-desktop .tos-wrapper:hover .tos-play,
.tos-touch .tos-wrapper.tos-hover .tos-play {
  opacity: 0.5; }
  .tos-desktop .tos-wrapper:hover .tos-play:hover,
  .tos-touch .tos-wrapper.tos-hover .tos-play:hover {
    opacity: 0.9; }

.tos-wrapper .tos-play {
  border-radius: 80px;
  width: 80px;
  height: 80px;
  margin: -40px; }
  .tos-wrapper .tos-play:after {
    border: 20px solid transparent;
    border-left-color: white;
    border-left-width: 30px;
    margin-top: -20px;
    margin-left: -10.5px; }

.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-play {
  border-radius: 160px;
  width: 160px;
  height: 160px;
  margin: -80px; }
  .tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-play:after {
    border: 40px solid transparent;
    border-left-color: white;
    border-left-width: 60px;
    margin-top: -40px;
    margin-left: -21px; }
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-play {
  border-radius: 240px;
  width: 240px;
  height: 240px;
  margin: -120px; }
  .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-play:after {
    border: 60px solid transparent;
    border-left-color: white;
    border-left-width: 90px;
    margin-top: -60px;
    margin-left: -31.5px; }

@media all,aural,braille,embossed,handheld,print,projection,screen,tty,tv{
/* bootstrap_standard.css */
.tos-slide.tos-html{width: 100% !important}.block2024{clear: both;padding: 20px 0px 20px 0}#homebutton{width: 100px;position: absolute;margin-left: 10px;top: 10px;z-index: 1;left: 100px}.field.kundenvorteile li{list-style: disc}div#kursbilder-woche .newslist-headline{margin: 10px 0;padding: 10px 0;min-height: auto;border-top: 1px solid darkgrey}div#kursbilder-woche .thumbnail{height:auto;padding-bottom:20px;border-bottom: 1px solid darkgrey}.rsts-skin-default.rsts-main,.mod_rocksolid_slider{overflow: hidden}legend{display: inline-block;max-width: 100%;margin-bottom: 5px;font-weight: bold;font-size: 14px}.ce_gallery ul{margin:0;padding:0}.ce_gallery img{width: 100%;padding: 5px;height:auto}.btn-sq-lg{width: 150px !important;height: 150px !important}.btn-sq{width: 100px !important;height: 100px !important;font-size: 10px}.btn-sq-sm{width: 50px !important;height: 50px !important;font-size: 10px}.btn-sq-xs{width: 25px !important;height: 25px !important;padding:2px}.header-img{padding:0;margin:0}.resp-sharing-button{margin: 5px 0px}#socialpluginscontainer{position:fixed;width:40px;height:100%;padding-left:0px;top:0px;left:0px;display:table;z-index:9999999}#socialplugins{text-align:center;display:table-cell; vertical-align:middle}.termine td{font-weight: bold}.ce_metamodel_content{clear:both}.warning{color:red !important}.zeitpunkt_start,.zeitpunkt_ende{float:left}h1,.h1,h2,.h2,h3,.h3{margin-bottom:20px;line-height:1.5}.nav > li > a{padding:10px}.btn-info{background:#B3883E;border-color:#B3883E;white-space:normal}.btn-info:hover{background:#6365CC;border-color:#6365CC}.navbar-nav > li{font-size:95%}.warning{color:#8f0021}.precarv img{width:100%}video{width: 100%    !important;height: auto   !important}#footer-copyright{width: 100%;clear: both;text-align: center;color: #fff;font-size: 10px;padding: 5px}.navbar-default .navbar-collapse,.navbar-default .navbar-form,.navbar-mobile{background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #665555 0%, #685757 100%) repeat scroll 0 0}.termine .col_0{width: 50%}#kursbilder-woche .newslist-item{width:100%}.navbar-toggle{z-index:0}#main{min-height:700px;background:#fff;z-index: 999999}.fotogalerie_haupt{margin: 15px 0px}#crossLinkingShop a{color:#fff}#crossLinkingShop{background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #665555 0%, #685757 100%) repeat scroll 0 0;font-weight: bold;margin: 30px -15px 5px;padding: 11px}.calendar .month-container{height:250px !important}#kursleiter .ce_image,#kursleiter .kl-video{height:200px}.event-headline{font-weight:bold}.event-tooltip-content{list-style: disc;display: list-item;margin: 0px 10px}.event-name{font-size: 11px}#sonderkurse-main .kurscode,#special-courses-main .kurscode{display:none}h3{font-size: 1.45em}.kurscode:hover,.kurscode a:hover{color: #fff}.popover .event-name{font-weight:bold}.caroufredsel_prev span{border-bottom: 3px solid white;border-left: 3px solid white;left: 50%;text-indent: -9999px}.caroufredsel_next span{border-right: 3px solid white;border-top: 3px solid white;right: 50%;text-indent: -9999px}.caroufredsel_prev span,.caroufredsel_next span{content: "";display: block;height: 12px;margin: -5px;position: absolute;top: 50%;transform: rotate(45deg);width: 12px}.ce_caroufredsel_gallery{position:absolute}.caroufredsel_prev,.caroufredsel_next{background: #000000;position: absolute;top: 50%;width: 40px;opacity: 0.5;height: 80px;margin-top: -40px;z-index: 1}.caroufredsel_prev{left: 20px}.caroufredsel_next{right: 20px}.kurszeiten td,.preise td,.kurszeiten th,.preise th{padding: 3px !important;width: 50%}.btn-default{background:#675656;border-color:#675656;color:#fff}.btn-primary:hover{background-color: #7A7676;border-color: #7A7676;color: #fff}.btn-primary{background-color: rgba(0, 0, 0, 0) linear-gradient(to bottom, #665555 0%, #685757 100%) repeat scroll 0 0;border-color: #999999;color: #fff}#languagepicker{width: 100px;position: absolute;margin-left: 10px;top: 3px;z-index:1}.left-submenu a{color: #9B1540}.kurscode,.kurscode a{background: #8F0021;    color: white}.videos img{width:100%;height:auto}a.video{float: left;position: relative}.kl-video span{width: 300px;height: 100%;position: absolute;background: url("../../files/images/website/play-btn.png") no-repeat;background-position: 50% 50%;background-size: 200%;opacity:0.2}.dropdown-menu > .active > a,.dropdown-menu > .active > a:focus,.dropdown-menu > .active > a:hover{background:#7a7676;color:#fff}.navbar{font-size:1.2em}.navbar-header{float: right}#custom,.header-slider{overflow:hidden;z-index:1;max-width:1170px}.mod_rocksolid_slider{max-height:500px}ul{list-style: none}#videolink img{width: 100%}.left-submenu h4{Padding:5px 10px}.btn-danger{background: #7A7676 !important;border-color: #7A7676 !important;color: #fff !important;margin:5px 0px !important}a,a:hover{color:#8F0021}.h2,h2{font-size: 20px}.h1,h1{font-size:25px}.tos-next,.tos-prev{opacity: 0.3 !important}.left-submenu .list-group-item,.crossLinking-schnupperkurs{padding: 8px;border:none}a.crossLinking-schnupperkurs{color:#9b1540}.left-submenu{font-size: 14px}#header-slider{margin-top:40px;margin-bottom:40px;overflow: hidden;height:500px}#news-home{margin-top:15px}.vacancy h4{font-weight: bold;font-size: 18px;background: #F2F2F2;padding: 5px}.vacancy .ce_table{padding: 5px 0px 0px 0px}.header-slider{margin: 0 auto;overflow:hidden !important;width:100%;max-width:1170px}.navbar{min-height:125px;margin-bottom:0}.navbar-nav > li > a{padding-bottom: 10px;padding-top: 10px}.navbar-left ul{margin: 35px 0px 0px 0px}#kursanmeldung{background: #F2F2F2;padding: 5px 10px}.left-submenu{margin:0px -15px}.newslist-item{width: 360px;float: left}.thumbnail{border:none;height:100%;display: flex;flex-direction: column;max-height: 450px;padding:0px 10px}.row .display-flex{display: flex;flex-wrap: wrap}.thumbnail img{width: 100%;height: auto}#header{margin: 0 auto;width:100%;max-width:1170px}.u_variante,.list-item .u_schwierigkeit,.list-item .u_bezeichnung{font-weight: bold}.ce_metamodel_content .label{border: medium none;color: inherit;display: block;font-size: 1.2em;font-weight: bold;line-height: 1.75;margin: 0;padding: 10px 0;text-align: left;white-space:normal}.navbar-default .navbar-nav > li > a:focus,.navbar-default .navbar-nav > li > a:hover,.navbar-mobile .navbar-nav > li > a:focus,.navbar-mobile .navbar-nav > li > a:hover{color:#fff;/*background:#EEAA66;*//*background:#B39C9C;*/background:#7a7676}.newslist-item{height: 320px;overflow: hidden}.newslist-item .newslist-teaser{padding: 5px;width:100%;clear:both}.navbar-mobile .navbar-nav .open .dropdown-menu > li > a{color:#fff}.newslist-item{margin: 5px}a .newslist-teaser{color:#333}.newslist-headline{font-size:1.25em;min-height:60px}.container{padding-bottom:15px}.keyfacts li:before{content: "..."}.kurscode{border: 1px solid black;width: 10%;float: left;padding: 0px 3px;margin: 0px 5px 0px 0px;text-align: center}.list-item .meta_beschreibung,.list-item .schwierigkeit{clear:both}.list-item .bezeichnung{float: left;padding: 0px 5px 0px 0px;display:block;width:85%}.list-item .item{clear: both;margin:10px 0px 10px 0px;padding:10px 0px}#footer{/*background: #999999; bis 08/2019*/background: #665555;overflow: hidden;max-width: 1170px;margin: 0 auto;width: 100%}#footer a,#footer p,#footer h3{color:#fff}.navbar-default .navbar-toggle .icon-bar,.navbar-mobile .navbar-toggle .icon-bar{background:#fff}.infobox{background:#F1F3F2;padding:5px 10px}body{background:#F2F2F2;color: #0a0a0a;font-size:14px;margin: 0;padding: 0;font-family: "Open Sans",Verdana,Arial,Helvetica,sans-serif;font-weight: normal;letter-spacing: 0;line-height: 1.7}#container{background:#fff;z-index: 999}.navbar-default,.navbar-mobile{background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #665555 0%, #685757 100%) repeat scroll 0 0}.navbar-default .navbar-nav > li > a,.navbar-mobile .navbar-nav > li > a{color:#fff}.navbar-default .navbar-nav > .open > a,.navbar-default .navbar-nav > .open > a:focus,.navbar-default .navbar-nav > .open > a:hover,.navbar-mobile .navbar-nav > .open > a,.navbar-mobile .navbar-nav > .open > a:focus,.navbar-mobile .navbar-nav > .open > a:hover{background:#7A7676;color:#fff}.navbar-default .navbar-nav > .active > a,.navbar-default .navbar-nav > .active > a:focus,.navbar-default .navbar-nav > .active > a:hover,.navbar-mobile .navbar-nav > .active > a,.navbar-mobile .navbar-nav > .active > a:focus,.navbar-mobile .navbar-nav > .active > a:hover{color:#fff;background:none}.navbar-brand{padding:5px}
}
@media screen and (min-width: 766px){
/* Devices_Phones_over_766px.css */
#mt{display:none}
}
@media screen and (max-width: 765px){
/* Extra_small_devices_Phones_below_768px.css */
.nopadding{padding: 5px 0 !important;margin: 0 !important}.newslist-headline{min-height: 0;padding: 0px 0px 10px 0px}.day{padding:7px !important}.calendar .month-container{height:350px !important}.thumbnail{border-bottom:1px solid darkgrey}.navbar-collapse{padding: 0}.fotogalerie_haupt img{width: 100%;height: auto;margin: 0px 5px}#mobil-tiles p{line-height:20px}.navbar-left ul{margin:0}#mobil-tiles .item img{margin: 0 auto}#tile-schnitzen{background: #FFD753}#tile-holzbildhauen{background: #E0B88D}#tile-drechseln{background: #C47B55}#tile-modellieren{background: #71B6C7}#tile-kettensaegenschnitzen{background:#83CBA1}#tile-steinbildhauen{background: #909195}#tile-farbliche-gestaltung{background: #DF6575}#tile-fachtheorieprogramm{background:#6471BA}#tile-kinder-familie-jugend{background:  #C39CB2}.tilecaption{position: relative;top: 50%;margin:0px 0 0 0!important;text-align: center;color:white;height:75px}#mobil-tiles a{text-decoration: none}.navbar-brand img{width:140px;padding:10px 2px 2px 5px;margin:0px;z-index:99999}.navbar-brand{padding:0px}#languagepicker{right:60px}#homebutton{right: 50px;left: auto}.custom{margin:0px}.navbar{min-height:60px;margin-bottom:0}#mobil-tiles{margin:0px 0px 20px 0px}#mobil-tiles .col-xs-4{padding:2px;margin:0px}.navbar-header{Float:none}.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover{color:#EEAA66}.navbar-nav > li > a{Padding-bottom: 10px; padding-top: 10px}#header-slider{Display:none;width:320px}.navbar-default .navbar-nav .open .dropdown-menu > li > a{color:#fff}
}
@media screen and (max-width: 991px) and (min-width: 766px){
/* Medium_devices_Desktops_below_992px.css */
.navbar-default .navbar-nav .open .dropdown-menu > li > a,.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus{color:#fff}.navbar-collapse{float: none;width: 100%;margin-top: 85px}
}
@media screen and (max-width: 1180px) and (min-width: 992px){
/* Medium_devices_Desktops_below_1170px.css */
.nav > li{font-size:75%}
}
