﻿/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) central stylesheet - layout example "3col_1-3-2"
 * (de) Zentrales Stylesheet - Beispiellayout "3col_1-3-2"
 *
 * @copyright       Copyright 2005-2008, Dirk Jesse
 * @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
 *                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
 * @link            http://www.yaml.de
 * @package         yaml
 * @version         3.0.6
 * @revision        $Revision: 202 $
 * @lastmodified    $Date: 2008-06-07 14:29:18 +0200 (Sa, 07 Jun 2008) $
 */
/* import core styles | Basis-Stylesheets einbinden */
@media all
{
 /*------------------------------------------------------------------------------------------------------*/

 /**
  * @section browser reset
  * @see     http://www.yaml.de/en/documentation/css-components/base-stylesheet.html
  */
  /* (en) Global reset of paddings and margins for all HTML elements */
  /* (de) Globales Zurücksetzen der Innen- und Außenabstände für alle HTML-Elemente */
  * { margin:0; padding: 0; }
  /* (en) Correction: margin/padding reset caused too small select boxes. */
  /* (de) Korrektur: Das Zurücksetzen der Abstände verursacht zu kleine Selectboxen. */
  option { padding-left: 0.4em; } /* LTR */
  select { padding: 1px; }
 /**
  * (en) Global fix of the Italics bugs in IE 5.x and IE 6
  * (de) Globale Korrektur des Italics Bugs des IE 5.x und IE 6
  *
  * @bugfix
  * @affected   IE 5.x/Win, IE6
  * @css-for    IE 5.x/Win, IE6
  * @valid      yes
  */
  * html body * { overflow:visible; }
  * html iframe, * html frame { overflow:auto; }
  * html frameset { overflow:hidden; }
  /* (en) Forcing vertical scrollbars in Netscape, Firefox and Safari browsers */
  /* (de) Erzwingen vertikaler Scrollbalken in Netscape, Firefox und Safari Browsern */
  html { height: 100%; margin-bottom: 1px; }
  body {
    /* (en) Fix for rounding errors when scaling font sizes in older versions of Opera browser */
    /* (de) Beseitigung von Rundungsfehler beim Skalieren von Schriftgrößen in älteren Opera Versionen */
    font-size: 100.01%;
    /* (en) Standard values for colors and text alignment */
    /* (de) Vorgabe der Standardfarben und Textausrichtung */
    color: #000;
    background: #fff;
    text-align: left; /* LTR */
  }
  /* (en) Clear borders for <fieldset> and <img> elements */
  /* (de) Rahmen für <fieldset> und <img> Elemente löschen */
  fieldset, img { border: 0 solid; }
  /* (en) new standard values for lists, blockquote and cite */
  /* (de) Neue Standardwerte für Listen & Zitate */
  ul, ol, dl { margin: 0 0 1em 1em } /* LTR */
  li {
    margin-left: 0.8em; /* LTR */
    line-height: 1.5em;
  }
  dt { font-weight: bold; }
  dd { margin: 0 0 1em 0.8em; } /* LTR */
  blockquote { margin: 0 0 1em 0.8em; } /* LTR */
  blockquote:before, blockquote:after,
  q:before, q:after { content: ""; }
 /*------------------------------------------------------------------------------------------------------*/
 /**
  * @section base layout | Basis Layout
  * @see     http://www.yaml.de/en/documentation/css-components/base-stylesheet.html
  *
  * |-------------------------------|
  * | #header                       |
  * |-------------------------------|
  * | #col1   | #col3     | #col2   |
  * | 200 px  | flexible  | 200px   |
  * |-------------------------------|
  * | #footer                       |
  * |-------------------------------|
  */
  #header { position:relative; }
  /* (en) Text Alignment for #topnav content */
  /* (de) Textausrichtung für #topnav Inhalte */
  #topnav { text-align: right; }  /* LTR */
  /* (en) Absolute positioning only within #header */
  /* (de) Absolute Positionierung erfolgt nur innerhalb von #header */
  #header #topnav {
    position:absolute;
    top: 10px;
    right: 10px; /* LTR */
  }
  /* (en) Backup for correct positioning */
  /* (de) Absicherung korrekte Positionierung */
  #header, #nav, #main, #footer { clear:both; }
  /* (en/de) Standard: 200 Pixel */
  #col1 { float: left; width: 200px }
  /* (en/de) Standard: 200 Pixel */
  #col2 { float:right; width: 200px }
  /* (en) Standard: center column with flexible width */
  /* (de) Standard: Flexible mittlere Spalte */
  #col3 { width:auto; margin: 0 200px }
  /* (en) Preparation for absolute positioning within content columns */
  /* (de) Vorbereitung für absolute Positionierungen innerhalb der Inhaltsspalten */
  /* #col1_content, #col2_content, #col3_content { position:relative; } */
 /*------------------------------------------------------------------------------------------------------*/
 /**
  * @section clearing methods
  * @see     http://yaml.de/en/documentation/basics/general.html
  */
  /* (en) clearfix method for clearing floats */
  /* (de) Clearfix-Methode zum Clearen der Float-Umgebungen */
  .clearfix:after {
    content: ".";
    display: block;
    font-size:0;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  /* (en) essential for Safari browser !! */
  /* (de) Diese Angabe benötigt der Safari-Browser zwingend !! */
  .clearfix { display: block; }
  /* (en) overflow method for clearing floats */
  /* (de) Overflow-Methode zum Clearen der Float-Umgebungen */
  .floatbox { overflow:hidden; }
  /* (en) IE-Clearing: Only used in Internet Explorer, switched on in iehacks.css */
  /* (de) IE-Clearing: Benötigt nur der Internet Explorer und über iehacks.css zugeschaltet */
  #ie_clearing { display: none; }
 /*------------------------------------------------------------------------------------------------------*/
 /**
  * @section subtemplates
  * @see     http://www.yaml.de/en/documentation/practice/subtemplates.html
  */
  .subcolumns { width: 100%; overflow:hidden; }
  /* (en) alternative class for optional support of old Mozilla/Netscape browers */
  /* (de) Alternative Klasse zur optionalen Unterstützung alter Mozilla/Netscape-Brower */
  .subcolumns_oldgecko { width: 100%; float:left; }
  .c50l, .c25l, .c33l, .c38l, .c66l, .c75l, .c62l {float: left; }
  .c50r, .c25r, .c33r, .c38r, .c66r, .c75r, .c62r {float: right; margin-left: -5px; }
  .c25l, .c25r { width: 25%; }
  .c33l, .c33r { width: 33.333%; }
  .c50l, .c50r { width: 50%; }
  .c66l, .c66r { width: 66.666%; }
  .c75l, .c75r { width: 75%; }
  .c38l, .c38r { width: 38.2%; }
  .c62l, .c62r { width: 61.8%; }
  .subc  { padding: 0 0.5em; }
  .subcl { padding: 0 1em 0 0; }
  .subcr { padding: 0 0 0 1em; }
  .equalize, .equalize .subcolumns { overflow:visible; display:table; table-layout:fixed; }
  .equalize .c50l,.equalize .c25l,.equalize .c33l,.equalize .c38l,.equalize .c66l,
  .equalize .c75l,.equalize .c62l,.equalize .c50r,.equalize .c25r,.equalize .c33r,
  .equalize .c38r,.equalize .c66r,.equalize .c75r,.equalize .c62r {
    display:table-cell; vertical-align:top;
    float:none; margin:0; overflow:hidden;
  }
 /*------------------------------------------------------------------------------------------------------*/
 /**
  * @section hidden elements | Versteckte Elemente
  * @see     http://www.yaml.de/en/documentation/basics/skip-links.html
  *
  * (en) skip links and hidden content
  * (de) Skip-Links und versteckte Inhalte
  */
  /* (en) classes for invisible elements in the base layout */
  /* (de) Klassen für unsichtbare Elemente im Basislayout */
  .skip, .hideme, .print, dfn {
    position: absolute;
    left: -1000em; /* LTR */
    top: -1000em;
  }
  /* (en) make skip links visible when using tab navigation */
  /* (de) Skip-Links für Tab-Navigation sichtbar schalten */
  .skip:focus, .skip:active {
    position: static;
    left: 0;
    top:0;
  }
}
/* import screen layout | Screen-Layout einbinden */
/* @media screen, projection opens here and closes at the end of custom-content.css */
/* see custom-yaml-main.css -> imports custom-nav.css, custom-basemod.css, custom-content.css */
@media screen, projection
{


/*------------------------------------------------------------------------------------------------------*/
  
/*------------------------------------------- Top Navigation -----------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/


  #topnav {
      color: #585858;
      font-size:12px;
  }
  
  #topnav ul {
      list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #topnav ul li {
      float: left;
      display: inline;
    padding: 0 0.4167em;
    margin: 0;
    background: url(/data/images/border_topnav.gif) no-repeat center right;
    line-height: 1.6666em
  }
  
  #topnav ul li.noborder {
    background-image: none;
  }
  
  #topnav ul li a {
      color: #585858;
    text-decoration: none;
  }
  #topnav ul li a:focus,
  #topnav ul li a:hover,
  #topnav ul li a:active {
      color: #585858;
    text-decoration: none;
  }
  
  #topnav ul li.current a {
      color: #000;
  }
  
  /* Lanuage Chooser */
  #topnav select.lang_nav {
      width: 7.5em;
      border: 1px solid #acacac;

  }
  
  
  /* Resizing */
  a.small {
      font-size: 100%;
  }
  
  a.medium {
      font-size: 116.67%;
    margin-left: -2px;
  }
  
  a.big {
      font-size: 125%;
    margin-left: -2px;
  }
  
  /* Suchfeld */
  #topnav ul li#search {
      position: relative;
    overflow: visible;
    padding-right: 0;
    width: 143px;
    z-index: 10;
  }
  
  /* My selection */
  #topnav a#auswahl {
      background: url(/data/images/icon_auswahl.gif) no-repeat top right;
    padding-right: 1.8333em;
  }
  
  
  #search input.prettysearch {
      position: absolute;
    right:32px;
    top: -1px;
      padding: 4px 0 3px 2px;
      margin: 0;
      height:16px;
    width:100px;
    background:#fff url(/data/images/searchfield_repeat.gif) repeat-x scroll center top;
    border:none;
    color: #585858;
    font-size: 11px !important;
    line-height: 1em;
  }
  
  #search span.left {
      position:absolute;
    left: 0.6666em;
    top: -1px;
    display:block;
    height:22px;
    width:8px;
    background:transparent url(/data/images/searchfield_left.gif) no-repeat scroll left top;
  }
  
  #search input.right {
    position:absolute;
    right: 0;
    top: -1px;
    display:block;
    height:22px;
    width:32px;
    border: none;
    background:transparent url(/data/images/searchfield_right.gif) no-repeat scroll right top;
    cursor: pointer;
  }
  
  #search span.prettyplaceholder {
    display:block;
    height:0pt;
    overflow:hidden;
    text-indent:-9999px;
    width:0pt;
  }

  /* Tabs */
    #topnav ul.meta_tabs li {
        position: relative;
        border: none;
        background: #f1f1f1;
        margin-right: 1px;
    }
    #topnav ul.meta_tabs li a {
        color: #585858;
    }
    #topnav ul.meta_tabs li.current {
        background: #d2aa4b;
    }
    #topnav ul.meta_tabs li.current a {
        color: #fff;
    }
    #topnav ul.meta_tabs li .edge-meta_l,
    #topnav ul.meta_tabs li .edge-meta_r {
        position: absolute;
        top: 0;
    }
    #topnav ul.meta_tabs li .edge-meta_l {
        left: 0;
    }
    #topnav ul.meta_tabs li .edge-meta_r {
        right: 0;
    }
  
/*------------------------------------------- Main Navigation ----------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/
  #main_nav img {
      margin-bottom: 0.5833em;
  }
  
  #main_nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #main_nav ul li {
    padding: 0;
    margin: 0;
    background-color: #f1f1f1;
    background-image: none;
    border-top: 2px solid #fff;
    line-height: 1em;
  }
  
  #main_nav ul li#violet {
      border-top: 3px solid #8c8c8c;
  }
  
  #main_nav ul li a {
      padding: 0.6429em 0 0.6429em 0.6429em;
    display: block;
    font-size: 117%;
    color: #585858;
    height: 1%;
  }
  
  #main_nav ul li a:focus,
  #main_nav ul li a:hover,
  #main_nav ul li a:active {
      text-decoration: none;
  }
  
  #main_nav ul ul li a {
      padding: 0.6666em 0.75em 0.5em 0.75em;
      font-size: 100%;
  }
  
  #main_nav ul ul ul ul ul li a {
      margin-left: 0.8333em;
    background-image: url(/data/images/list_img_grey.gif);
    background-repeat: no-repeat;
    background-position: top left;
  }
  
  #main_nav ul ul ul ul ul ul li a {
      margin-left: 1.6666em;
  }
  
  #main_nav ul ul ul ul ul ul ul li a {
      margin-left: 2.4166em;
  }
  
  #main_nav ul li.expanded li {
      border-top: none;
    background-image: url(/data/images/dot.gif);
    background-repeat: repeat-x;
    background-position: top left;
  }
  
  #main_nav ul li.expanded a {
      color: #fff;
  }
  
  #main_nav ul li a.current,
  #main_nav ul li li a.current {
      background-image: url(/data/images/list_img_current1.png);
    background-repeat: no-repeat;
    background-position: top left;
  }
  
  #main_nav ul li.expanded li li a {
      color: #3e3e3e;
  }
  
  #main_nav ul li#violet.expanded li li li li a.current,
  #main_nav ul li#blue.expanded li li li li a.current,
  #main_nav ul li#lightgreen.expanded li li li li a.current,
  #main_nav ul li#green.expanded li li li li a.current,
  #main_nav ul li#chocbrown.expanded li li li li a.current,
  #main_nav ul li#brown.expanded li li li a.current,
  #main_nav ul li#yellowbrown.expanded li li li li a.current,
  #main_nav ul li#greenbrown.expanded li li li li a.current,
  #main_nav ul li#greybrown.expanded li li li li a.current,
  #main_nav ul li#grey.expanded li li li li a.current {
      background-image: url(/data/images/list_img_current2.png);
    background-repeat: no-repeat;
    background-position: left top;
  }
  
  /* Secure Area */
  #main_nav ul li#violet a.secure,
  #main_nav ul li#blue a.secure,
  #main_nav ul li#lightgreen a.secure,
  #main_nav ul li#green a.secure,
  #main_nav ul li#chocbrown a.secure,
  #main_nav ul li#brown a.secure,
  #main_nav ul li#yellowbrown a.secure,
  #main_nav ul li#greenbrown a.secure,
  #main_nav ul li#greybrown a.secure,
  #main_nav ul li#grey a.secure {
      color: #ffffff;
    background-image: url(/data/images/icon_secure.png);
    background-repeat: no-repeat;
    background-position: left top;
    padding-left: 31px;
  }

  #main_nav ul li#violet a.secure {
      color: #3E3E3E;
      background-image: url(/data/images/icon_secure.png);
      background-position: left top;
  }
  
  #main_nav ul li#violet.expanded ul ul ul ul li a.secure,
  #main_nav ul li#blue.expanded ul ul ul ul li a.secure,
  #main_nav ul li#lightgreen.expanded ul ul ul ul li a.secure,
  #main_nav ul li#green.expanded ul ul ul ul li a.secure,
  #main_nav ul li#chocbrown.expanded ul ul ul ul li a.secure,
  #main_nav ul li#brown.expanded ul ul ul ul li a.secure,
  #main_nav ul li#yellowbrown.expanded ul ul ul ul li a.secure,
  #main_nav ul li#greenbrown.expanded ul ul ul ul li a.secure,
  #main_nav ul li#greybrown.expanded ul ul ul ul li a.secure,
  #main_nav ul li#grey.expanded ul ul ul ul li a.secure {
      color: #3E3E3E;
    background-image: url(/data/images/icon_secure.png);
    background-repeat: no-repeat;
    background-position: top left;
    padding-left: 31px;
    margin-left: 0;
  }

#main_nav .navtitle {
    color:#585858;
    display:block;
    font-size:117%;
    height:1%;
    padding:0.6429em 0 0.6429em 0.6429em;
}
  
/*-------- Lebensart --------*/
  #main_nav ul li#violet.expanded {
    background-color: #6e5a6e;
  }
  
  #main_nav ul li#violet.expanded li {
      background-color: #918791;
  }
  
  #main_nav ul li#violet.expanded li li {
      background-color: #b4afb9;
  }
  
  #main_nav ul li#violet.expanded li li li {
      background-color: #cdc8d2;
  }
  #main_nav ul li#violet.expanded ul ul ul ul li a {
      background-image: url(/data/images/list_img_violet.gif);
    background-repeat: no-repeat;
    background-position: top left;
  }
  
/*-------- Adressen --------*/
  #main_nav ul li#blue.expanded {
    background-color: #6e828c;
  }
  
  #main_nav ul li#blue.expanded li {
      background-color: #8c9ba0;
  }
  
  #main_nav ul li#blue.expanded li li {
      background-color: #b9bec8;
  }
  
  #main_nav ul li#blue.expanded li li li {
      background-color: #d2d7dc;
  }
  #main_nav ul li#blue.expanded ul ul ul ul li a {
      background-image: url(/data/images/list_img_blue.gif);
    background-repeat: no-repeat;
    background-position: top left;
  }
  
/*-------- Zusatzangebote --------*/
  #main_nav ul li#lightgreen.expanded {
    background-color: #78876e;
  }
  
  #main_nav ul li#lightgreen.expanded li {
      background-color: #9ba591;
  }
  
  #main_nav ul li#lightgreen.expanded li li {
      background-color: #b9c3b4;
  }
  
  #main_nav ul li#lightgreen.expanded li li li {
      background-color: #d2d7d2;
  }
  
  #main_nav ul li#lightgreen.expanded ul ul ul ul li a {
      background-image: url(/data/images/list_img_lightgreen.gif);
    background-repeat: no-repeat;
    background-position: top left;
  }
  
/*-------- Hapimag in Kürze --------*/
  #main_nav ul li#green.expanded {
    background-color: #505a46;
  }
  
  #main_nav ul li#green.expanded li {
      background-color: #787d6e;
  }
  
  #main_nav ul li#green.expanded li li {
      background-color: #afb4af;
  }
  
  #main_nav ul li#green.expanded li li li {
      background-color: #cdd2cd;
  }
  
  #main_nav ul li#green.expanded ul ul ul ul li a {
      background-image: url(/data/images/list_img_green.gif);
    background-repeat: no-repeat;
    background-position: top left;
  }
  
/*-------- Aktuell --------*/
  #main_nav ul li#chocbrown.expanded {
    background-color: #825a4b;
  }
  
  #main_nav ul li#chocbrown.expanded li {
      background-color: #a08278;
  }
  
  #main_nav ul li#chocbrown.expanded li li {
      background-color: #d2c3b9;
  }
  
  #main_nav ul li#chocbrown.expanded li li li {
      background-color: #e6e1dc;
  }
  
  #main_nav ul li#chocbrown.expanded ul ul ul ul li a {
      background-image: url(/data/images/list_img_chocbrown.gif);
    background-repeat: no-repeat;
    background-position: top left;
  }
  
/*-------- Partnerbereich --------*/
  #main_nav ul li#brown.expanded {
    background-color: #9b7346;
  }
  
  #main_nav ul li#brown.expanded li {
      background-color: #af8c64;
  }
  
  #main_nav ul li#brown.expanded li li {
      background-color: #d7c8b9;
  }
  
  #main_nav ul li#brown.expanded li li li {
      background-color: #ebe1d7;
  }
  
  #main_nav ul li#brown.expanded ul ul ul ul li a {
      background-image: url(/data/images/list_img_brown.gif);
    background-repeat: no-repeat;
    background-position: top left;
  }
  
/*-------- Über uns --------*/
  #main_nav ul li#yellowbrown.expanded {
    background-color: #aa914b;
  }
  
  #main_nav ul li#yellowbrown.expanded li {
      background-color: #beaa73;
  }
  
  #main_nav ul li#yellowbrown.expanded li li {
      background-color: #dcd2b4;
  }
  
  #main_nav ul li#yellowbrown.expanded li li li {
      background-color: #e6e1d2;
  }
  
  #main_nav ul li#yellowbrown.expanded ul ul ul ul li a {
      background-image: url(/data/images/list_img_yellowbrown.gif);
    background-repeat: no-repeat;
    background-position: top left;
  }
  
/*-------- Medien --------*/
  #main_nav ul li#greenbrown.expanded {
    background-color: #918264;
  }
  
  #main_nav ul li#greenbrown.expanded li {
      background-color: #afa08c;
  }
  
  #main_nav ul li#greenbrown.expanded li li {
      background-color: #c8beaf;
  }
  
  #main_nav ul li#greenbrown.expanded li li li {
      background-color: #dcdcd2;
  }
  
  #main_nav ul li#greenbrown.expanded ul ul ul ul li a {
      background-image: url(/data/images/list_img_greenbrown.gif);
    background-repeat: no-repeat;
    background-position: top left;
  }
  
/*-------- Kapitel 9 --------*/
  #main_nav ul li#greybrown.expanded {
    background-color: #7d7369;
  }
  
  #main_nav ul li#greybrown.expanded li {
      background-color: #9b918c;
  }
  
  #main_nav ul li#greybrown.expanded li li {
      background-color: #c8c3be;
  }
  
  #main_nav ul li#greybrown.expanded li li li {
      background-color: #e6e1e1;
  }
  
  #main_nav ul li#greybrown.expanded ul ul ul ul li a {
      background-image: url(/data/images/list_img_greybrown.gif);
    background-repeat: no-repeat;
    background-position: top left;
  }
  
/*-------- Kapitel 10 --------*/
  #main_nav ul li#grey.expanded {
    background-color: #8c8c8c;
  }
  
  #main_nav ul li#grey.expanded li {
      background-color: #a9a9a9;
  }
  
  #main_nav ul li#grey.expanded li li {
      background-color: #cacaca;
  }
  
  #main_nav ul li#grey.expanded li li li {
      background-color: #e8e8e8;
  }
  
  #main_nav ul li#grey.expanded ul ul ul ul li a {
      background-image: url(/data/images/list_img_grey.gif);
    background-repeat: no-repeat;
    background-position: top left;
  }

/*-------- Kurzfristig verfügbar --------*/
    #main_nav ul.additional li {
        background: #bdc4cd;
        color: #585858;
    }
    #main_nav ul.additional li.expanded {
        border-top:3px solid #8C8C8C;
    }
    #main_nav ul.additional li.expanded a {
        color: #585858;
    }
    #main_nav ul.additional li li {
        background-color: #c7cfd6;
    }
    #main_nav ul.additional li li li {
        background-color: #d8dde2;
    }
  
  
/*---------------------------------------------- Breadcrumb ------------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/
  #breadcrumb {
      margin-bottom: 0.8333em;
  }
  
  #breadcrumb ul {
      list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #breadcrumb ul li {
      display: inline;
    padding: 0 0 0 1em;
    margin: 0 0.2727em 0 0;
    line-height: 1em;
    background: url(/data/images/icon_breadcrumb.gif) no-repeat left 5px;
  }
  
  #breadcrumb ul li.first {
      padding-left: 0;
    background: none;
  }
  
  #breadcrumb ul li a {
      font-size: 91.67%;
      color: #8c8c8c;
  }

  #printcrumb {
        display: none;
    }
  
  
/*------------------------------------------ Ländernavigation ----------------------------------------*/
/*----------------------------------------------------------------------------------------------------*/
  #country_nav {
      font-size: 100%;
    background: #d2d7dc;
    padding-bottom: 1em;
    margin-right: 0.4166em;
    min-height: 37.75em;
  }
  
  #country_nav ul {
      list-style: none;
    padding: 0.25em 0.8333em 0 0.8333em;
    margin: 0;
  }
  
  #country_nav ul li {
    padding: 0.1666em 0 0.3333em 0;
    margin: 0;
    line-height: 1.5em;
    background-image: url(/data/images/dot.gif);
    background-repeat: repeat-x;
    background-position: bottom left;
    background-color: transparent;
  }
  
  #country_nav ul li a {
    display: block;
    padding: 0.1666em 0 0 0.9166em;
    color: #3e3e3e;
    text-decoration: none;
    height: 1%;
    background-image: url(/data/images/clist_img.gif);
    background-repeat: no-repeat;
    background-position: top left;
  }
  
  #country_nav ul li a:focus,
  #country_nav ul li a:hover,
  #country_nav ul li a:active {
      color: #3e3e3e;
    text-decoration: none;
    background-image: url(/data/images/clist_img_hover.gif);
  }
  #country_nav ul li.current a {
      background-image: url(/data/images/clist_img_hover.gif);
  }
  
  #country_nav .back {
      line-height: 1em;
    display: block;
    margin: 0.8333em 0.8333em 0 0.8333em;
  }
  
  /*----------- Städtenavigation (basiert auf countra_nav) ------------*/
  #country_nav.city ul {
      min-height: 37.5em;
    height: auto !important;
       height: 37.5em;
  }
 
  #country_nav.city ul li.city-headline, #country_nav.city ul li.city-headline-2 {
    background:none;
    border-bottom:1px solid #fff;
    color:#000;

  }
  
  #country_nav.city ul li.city-headline-2 {
        padding-top:2em;
  }
 
  /*----------- Navigationslayer ------------*/

#myId {
    visibility:hidden
}
#topmenu ul li div.submenu {
    position:absolute;
    display:none;
    z-index: 100001;
    left:10px;
}
*+html #topmenu ul li div.submenu {
    top:20px;
    left: 0px;
    right: 0px;
    bottom: 0px;
} /*IE7*/
#topmenu ul li:hover div.submenu {
    display:block
}


#topmenu ul {
    float: left;
}
#topmenu ul ul {
    padding:8px;
    background:#f2e6c7;
    background:url(/data/images/submenufooter.JPG) no-repeat bottom;
}
*+html #topmenu ul ul {
    padding:0;
    margin:0;
}


.submenu {
    width:460px;
}
*+html .submenu {
    font-size:90%;
}
*+html .submenu a {
    margin:0;
}
 /*IE7*/
.submenufooter {
    margin-top:-1px;
    background: url(/data/images/submenufooter.JPG) no-repeat 0 1px;
    height:6px;
}
#topnav ul li ul li {
    /*background: url(/data/images/listen_dot.PNG) no-repeat scroll left center transparent;*/
    background:none no-repeat scroll left center transparent;
    line-height: 1.6666em;
    text-align: left;
    width: 45%;
}
/*---------------------------------------- General Positioning --------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/

  /* (de) Randbereiche & Seitenhintergrund */
  body { background: #fff; padding: 10px 0; }

  /* (de) Zentrierung des Layouts in alten IE-versionen */
  body { text-align: left; }
  #page_margins { text-align:left; margin: 0 auto; }

  /* (de) Layout: Breite, Hintergrund, Rahmen */
  #page_margins { width: 80em; background: #fff; }
  #page{ padding: 0 1.6666em; }
  #skyscraper { display:none; }

  /* (de) Gestaltung der Hauptelemente des Layouts */
  #header {
    height: 1.6666em;
    width:78.4em;
  }
  #header #topnav {
      top: 0;
    left: 14.1667em;
    right: 0;
  }
  #header #topnav div.float_right{
   right:1.333em;
  }
  #cont_header {
      width: 62.5em;
    height: 15em;
    overflow: hidden;
  }
  
  #cont_header.index {
      position: relative;
      height: auto;
  }
  
  #cont_col3 {
      margin: 0.8333em 0 0 0;
  }
  
  #flashbanner {
      margin-bottom: 20px;
  }
  #footer { 
      clear: none;
    font-size: 92%;
    color: #585858;
  }

/*------------------------------------------- Col Positioning ---------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  #col1 { width: 13.3333em; margin-top: -20px; }
  #col1_content { padding: 0; }
  #col2 { display: none; }
  #col3 { margin: 0 0 0 13.3333em; padding: 0.8333em 0 0 0.8333em; }
  #col3_content { padding: 0; }
   
  
/*-------------------------------------------- Subtemplates -----------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  .c25l, .c25r {
    width: 24.6667%;
  }
  
  .c38l, .c38r {
    width: 37.3333%;
  }
  
  .c62l, .c62r {
      width: 62.6667%;
  }
  
  .c75l, .c75r {
      width: 75.3333%;
  }
  
  .subcl {
      padding: 0 0.4166em 0 0;
    margin-bottom: 0.8333em;
  }
  
  .subcr {
      padding: 0 0 0 0.4166em;
    margin-bottom: 0.8333em;
  }
  
  .subc {
      padding: 0 0.4166em;
    margin-bottom: 0.8333em;
  }
  
  
  .c33l .subcl {
      padding: 0 0.5833em 0 0;
      margin-bottom: 0;
  }
  
  .c33l .subc {
      padding: 0 0.25em;
  }
  
  .c33r .subcr {
      padding: 0 0 0 0.5833em;
  }
;<rde-dm:attribute mode="write" attribute="request:rdeResponseMimetype" op="set" value="text/css"/> 
/*------------------------------------------ General Style -----------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  /* (de) Alle Schriftgrößen auf Standardgröße (16 Pixel) zurücksetzen */
  html * { font-size: 100.01% }
  
  /* (de) Basis-Layout erhält Standardschriftlgröße von 12 Pixeln */
  body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 75.00%; 
    color: #5a5a5a;
  }
  p { line-height: 1.4em; margin: 0 0 1.4em 0; }
  sub, sup { font-size: 9px; display: inline-block; margin-top: -3px; }
  /* ### Lists | Listen  #### */
  ul {
      list-style: none;
    line-height: 1.5em;
    padding: 0;
    margin: 0 0 1em 0;
  }
  li, li.showlist ul li {
    background: url(/data/images/listimg.gif) no-repeat top left;
    padding: 0 0 0 0.8333em;
    margin: 0;
    line-height: 1.5em;
    overflow: hidden;
  }

  ol {
    list-style-type: lower-latin;
    padding: 0;
    margin: 0 0 0.5em 1.5em;
  }
  ol li {
    background: none;
    list-style-position: outside;
    padding: 0;
    margin: 0 0 0.5em 0;
    overflow: visible;
    vertical-align: top;
  }
  
  ul.subcolumns {
    font-size: 92.31%;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  ul.subcolumns li {
      background: none;
    padding: 0;
    margin: 0;
  }
  #main_content ul.subcolumns li.c33l img,
  #main_content ul.subcolumns li.c33r img {
      width: 15em;
  }
  ul.subcolumns li.c33r {
      margin-left: -5px;
  }
  dt { font-weight: bold }
  dd { margin: 0 0 1em 2em }
  /* ### text formatting | Textauszeichnung ### */
  cite, blockquote { font-style:italic }
  blockquote { margin: 0 0 1em 1.5em }
   strong,b { font-weight: normal; color: #000 !important; }
  em,i { font-style:italic }
  pre, code { font-family: monospace; font-size: 1.1em; }
  acronym, abbr {
    letter-spacing: .07em;
    border-bottom: .1em dashed #c00;
    cursor: help;
  }
  
  .img {
      width: 100%;
    display: block;
  }

  select {
      padding-right: 0;
  }


  /*
   * @section content-generic-classes
   */
  .note {background: #dfd; padding: 1em; border-top: 1px #bdb dotted; border-bottom: 1px #bdb dotted;}
  .important {background: #ffd; padding: 1em; border-top: 1px #ddb dotted; border-bottom: 1px #ddb dotted;}
  .warning {background: #fdd; padding: 1em; border-top: 1px #dbb dotted; border-bottom: 1px #dbb;}
  .float_left { float: left; display:inline; }
  .float_right { float: right; display:inline; }
  .center { text-align:center; }
  .warning {font-weight: bold; color: #ff0000;}
  .matched_category { color: #be202c; }
  .invisible { visibility: hidden; }
  .hidden { display: none; }
   .hiddenteaser { top: -5000px; left: -5000px; height: 0px !important; position:absolute;}
  #errorMsg { display: none; }

  a,
  a:visited    {color: #506ea0; text-decoration:none; padding: 0; background: none;}
    
  a:focus,
  a:hover,
  a:active {color:#506ea0; text-decoration: underline;}
    
  a.external {
    background: transparent url(/data/images/ext_link.png) no-repeat bottom right;
    padding-right: 1.0833em;
  }

  a.more {
    display: block;
  }
  
  #main_content a.external {
    padding-right: 1em;
  }

  a.pdf, li.pdf a, #main_content ul#search_result li.pdf h5 a {
      background: url(/data/images/pdf_link.jpg) no-repeat left 1px;
      padding-left: 1.5em;
  }
  
  a[href $='.pdf'] { 
      padding-right: 38px;
      background: transparent url(/data/images/pdf.png) no-repeat bottom right;
  }

      a.mediapdflink[href $='.pdf'] { 
        background:none;
        padding-right:0;
      }

      ul#news li a.mediapdflink img.mediapdflink { 
        display: inline;
        float:none;
        height:15px;
        margin:0 0 0 -3px;
        padding:0 0 1px 2px;
        vertical-align:bottom;
        width:36px !important;
      }

  a.movie,
  #main_content a.movie {
      display: block;
      background: none;
      text-decoration: none;
      padding: 0;
      margin: 0;
  }

  hr {
    color: #fff;
    background:transparent;
    margin: 0 0 0.5em 0;
    padding: 0 0 0.5em 0;
    border:0;
    border-bottom: 1px #5A5A5A solid;
  }  

  div.bgwhite {
      background-color: #ffffff !important;
  }


  
/*---------------------------------------------- Headlines ------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  h1,h2,h3,h4,h5,h6 {
      font-weight: normal;
    line-height: 1.5em;
      margin: 0 0 1em 0; 
  }
  
  /* Seitentitel-Balken */
  h1#pagetitle {
    color: #FFFFFF;
    font-family: "Times New Roman",Times,serif;
    font-size: 200%;
    font-style: italic;
    font-weight: normal;
    line-height: 1.2em;
    margin-bottom: 0.4167em;
    overflow: hidden;
    padding: 0.4167em 0.5em 0.5em 0.8333em;
    position: relative;
  }
  
  #main_content h3 {
    font-size: 123.08%; /*16px*/
    color: #3e3e3e;
    margin-top: -0.3125em;
    margin-bottom: 0.8125em;
    line-height: 1.7em;
  }
  
  #main_content h4 {
      font-size: 100%;
    color: #000;
  }
  
  #main_content h5 {
    font-size: 100%;
    color: #000;
    margin-bottom: 1em;
  }
  
  #main_content ul#media_db h5,
  #main_content ul#news h5 {
    color: #000;
    margin-top: -0.25em;
  }

  #main_content ul#search_result h5,
  #main_content ul#search_result h5 a,
  #main_content ul#news h5 a {
    color: #000;
    margin-bottom: 0.5em;
  }  

      #main_content ul#news h5 a {
        display:inline;
      }

  #main_content ul#search_result li ul li {
    border-bottom: 0;
    line-height: 1em;
    margin:0.5em 0.2727em 0 0;
    padding:0 0 0 1em;    
    float: left;
    background: url(/data/images/icon_breadcrumb.gif) no-repeat left 5px;
  }

#main_content ul#search_result li ul li.first {
    background: none;
    padding: 0;

}

#main_content ul#search_result li ul.pager li {
    background: none;
}


  ul#news p a, ul,
  ul#news p a:hover,
  ul#news p a:active {
    color: #5A5A5A; 
    text-decoration:none;
  }
  
  #main_content img[align="left"] {
    margin-right: 0.8333em;
  }

  #main_content h6 {
      font-size: 100%;
    line-height: 1.4em;
    color: #000;
    margin-top: -0.2307em;
    margin-bottom: 0;
  }

  #main_content #news h5,
  .float_img_paragraph h6 {
    display: inline;
    margin: 0;
  }

ul.info_list li.greybox {
    margin: 0;
    padding: 0;
}
  
ul.info_list li.greybox div {
    overflow: hidden;
    background-color: #f1f1f1;
    padding: 0.6923em ;
  }

  div.sectiontitle {
      overflow: hidden;
      background-color: #f1f1f1;
    padding: 0.1538em 0.6923em 0.2307em 0.6923em;
    margin: 0 0 0.4615em 0;
  }


  
  #main_content div.sectiontitle h3 {
      float: left;
      display: inline;
    color: #000;
    font-size: 100%;
    margin: 0;
  }
  
  #main_content div.sectiontitle h4 {
      float: right;
    display: inline;
    color: #5a5a5a;
    font-size: 100%;
    margin: 0;
  }
  
/*------------------------------------------------ Tables -------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  table {
      width: 100%;
    border-collapse: collapse;
    font-size: 92.3%;
    margin: 0 0 1.6666em 0;
  }

  ul#media_db table,
  ul#adress_db table,
  ul#search_result table,
  ul#news table {
    font-size: 100%;
  }
  
  thead th {
    color: #8c8c8c;
    font-weight: normal;
    padding: 0.0833em 0.1666em 0.5833em 0.1666em;
    vertical-align: top;
  }
  
  tbody td,
  tbody th {
      padding: 0.5833em 0.1666em 0.5833em 0.1666em;
    border-top: 1px solid #9c9c9c;
    vertical-align: top;
  }
  
  tbody th {
      font-weight: normal;
    color: #8c8c8c;
  }
  
  tbody td.first,
  tbody th.first,
  thead th.first {
      padding-left: 0.8333em;
  }
  
  tfoot td {
      padding: 0.5833em 0 0.5833em 0.8333em;
    border-top: 1px solid #9c9c9c;
    vertical-align: top;
  }
  
  tfoot td .legend {
      float: left;
    display: inline;
    padding: 0 0.75em 0 0;
  }
  
  tfoot td.border {
      padding: 0;
    border: none;
  }
  
  tfoot td.border img {
      width: 100%;
  }
  th.align_center, td.align_center {
        text-align: center;
    }
    th.align_left, td.align_left {
        text-align: left;
    }
    th.align_right, td.align_right {
        text-align: right;
    }

      li.form_row h4 {
        color:#000000;
        display: block;
        margin: 0 1em 0 0;
        font-size:108%;
    }
  
/*------------- Ergebnisstabelle Tandem Tours -------------*/
  table.tandem_results {
      font-size: 92%;
  }
  table.tandem_results th {
      background: #f4f4f4;
        color: #000;
        border: none;
        border-bottom: 2px solid #fff;
        padding: 0.5833em 0 0.5833em 0.75em;
        text-align: left;
  }
  
  table.tandem_results th.journey,
    table.tandem_results td.journey {
        width: 13em;
    }
    table.tandem_results th.dates,
    table.tandem_results td.dates {
        width: 9em;
    }
    table.tandem_results th.dateinfo,
    table.tandem_results td.dateinfo {
        padding: 0.9166em 0;
    }
  table.tandem_results th span.sort_off,
    table.tandem_results th span.sort_up,
    table.tandem_results th span.sort_down {
        float: left;
        width: 5px;
        height: 12px;
        background: url(/data/images/icon_sort.gif) no-repeat 0 -12px;
        margin: 2px 5px 0 0;
        overflow: hidden;
        cursor:pointer;
        text-align: left;
    }
    table.tandem_results th span.sort_up {
        background: url(/data/images/icon_sort.gif) no-repeat 0 0;
    }
    table.tandem_results th span.sort_down {
        background: url(/data/images/icon_sort.gif) no-repeat 0 -24px;
    }
    table.tandem_results td {
      background: #fff;
        color: #5a5a5a;
        border: none;
        border-bottom: 1px solid #b7b7b7;
        padding: 0;
        overflow: hidden;
  }

  table.tandem_results td.paging {
      background: #fff;
        color: #5a5a5a;
        border: none;
        padding: 0;
        padding-top: 1.6666em;
        overflow: hidden;
  }
    
    table.tandem_results tr:focus td,
    table.tandem_results tr:hover td,
    table.tandem_results tr:active td {
        background: #f4f4f4;
    }

    table.tandem_results tr.paging:focus td,
    table.tandem_results tr.paging:hover td,
    table.tandem_results tr.paging:active td {
        background: #ffffff;
    }

    table.tandem_results tr td a.celllink,
    table tr td a.celllink:focus, table tr td a.celllink:hover, table tr td a.celllink:active {
        display: block;
        color: #5a5a5a;
        padding: 0.8333em 0 0.8333em 0.75em;
        text-decoration: none;
        cursor: pointer;
    }
    table.tandem_results tr td a:focus, table tr td a:hover, table tr td a:active,
    #main_content table.tandem_results tr td a.celllink:focus h4, #main_content table tr td a.celllink:hover h4, #main_content table tr td a.celllink:active h4 {
        color: #506EA0;
        text-decoration: underline;
        cursor: pointer;
    }
    table.tandem_results tr td div.cell {
        width: 100%;
        height: 100%;
        padding: 0 0 1000px 0;
        margin: 0 0 -1000px 0;
        line-height: 1.5em;
    }
    table.tandem_results tr td span.cell {
        width: 100%;
        height: 100%;
        padding: 0 0 1000px 0;
        margin: 0 0 -1000px 0;
    }
    #main_content table.tandem_results tr td span.cell h4 {
        font-size: 100%;
        color: #506EA0;
        padding: 0;
        margin: 0;
    }
    
    table.tandem_results td.typecolor,
    table.tandem_results th.typecolor {
        width: 0.5em;
        padding: 0;
    }
    table.tandem_results td.typecolor a.celllink {
        padding: 0;
    }
    table.tandem_results td .img {
        width: 4.3077em;
    }
    span.currency {
        font-size: 75%;
        margin-right: 1em;
    }
    .linethrough {
        text-decoration: line-through;
        color: #999;
    }

  table.tandem_results td.dateinfo a {
   display:block;
   margin-bottom:0.25em;
 }

   li#booking_request fieldset legend {
        font-size: 100%;
        padding: 0 0 0 7px;
    }

    
/*---------------------- Normal Table -----------------------*/
    table.tandemtours {
      font-size: 92%;
  }
    .tabcontent table.tandemtours {
        margin-bottom: 0;
    }
    table.tandemtours th {
      background: #f4f4f4;
        color: #000;
        border: none;
        border-bottom: 2px solid #fff;
        padding: 0.5833em 0 0.5833em 0.75em;
  }
    table.tandemtours td {
      background: #fff;
        color: #5a5a5a;
        border: none;
        border-bottom: 1px solid #b7b7b7;
        padding: 0.8333em 0 0.8333em 0.75em;
        overflow: hidden;
  }
    table.tandemtours tfoot td {
        border: none;
    }  
/*------------------------------------------------ Pager --------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  ul.pager,
  ul#media_db ul.pager,
  ul#news ul.pager {
    float: right;
    display: inline;
    list-style: none;
    padding: 0;
    margin: 0 0 0.4615em 0;
  }
  
  ul.pager li,
  ul#media_db ul.pager li,
  #main_content ul#search_result ul.pager li,
  ul#news ul.pager li {
    float: left;
    display: inline;
    padding: 0 0.25em;
    margin: 0;
    background: none;
    border-bottom: none;
    white-space:nowrap;
  }
  
  ul.pager li a,
  ul#media_db ul.pager li a,
  #main_content ul#search_result li ul.pager li a,
  ul#news ul.pager li a {
    color: #5a5a5a;
    padding: 0;
    margin: 0;
  }
  
  ul.pager li a:focus,
  ul.pager li a:hover,
  ul.pager li a:active {
      color: #5a5a5a;
  }
  
  ul.pager li.current a,
  ul#media_db ul.pager li.current a,
  #main_content ul#search_result ul.pager li.current a,
  ul#news ul.pager li.current a {
      color: #000;
  }
  
  ul.pager li.prev,
  ul#media_db ul.pager li.prev,
  #main_content ul#search_result li ul.pager li.prev,
  ul#news ul.pager li.prev {
    border-right: 1px solid #5a5a5a;
    margin-right: 0.3333em;
  }
  
  ul.pager li.next,
  ul#media_db ul.pager li.next,
  #main_content ul#search_result li ul.pager li.next {
      border-left: 1px solid #5a5a5a;
      margin-left: 0.3333em !important;
  }
  
  ul.pager li.prev a,
  ul.pager li.next a,
  ul#media_db ul.pager li.prev a,
  ul#media_db ul.pager li.next a,
  #main_content ul#search_result ul.pager li.prev a,
  #main_content ul#search_result ul.pager li.next a {
    color: #506ea0;
    padding: 0 0.3333em;
  }

.yearpaging {
  display: block;
  float: left; 
  color: #5A5A5A; 

}

.yearpaging a, .yearpaging a:visited, .yearpaging a:focus, .yearpaging a:hover, .yearpaging a:active {
  color: #5A5A5A;
}

a.newsanc, a.newsanc:visited, a.newsanc:focus, a.newsanc:hover, a.newsanc:active {
  color: #000000;
  cursor:default;
  text-decoration:none;
}
  
  
/*-------------------------------------------- Subtemplates -----------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  .c25r img,
  .c25l img {
      width: 15em;
    display: block;
  }
  
  #main_content .c25r img,
  #main_content .c25l img {
      width: 13.8462em;
  }
  
  #main_content .subc_m {
      margin-right: 5px;
    padding-left: 5px;
  }
  
  .c33r img,
  .c33l img {
      width: 15em;
    display: block;
    margin-bottom: 0.4615em;
  }
  
  #main_content .c33r img,
  #main_content .c33l img {
      width: 18.6923em;
  }
  
  .c38r img,
  .c38l img {
      width: 22.9166em;
    display: block;
  }
  
  .c50r img,
  .c50l img {
      width: 30.8333em;
    display: block;
  }
  
  .c62r img,
  .c62l img {
      width: 38.75em;
    display: block;
  }

  .c75r img,
  .c75l img {
    width: 46.6666em;
  }
  .c75l #main_content .c75r img,
  .c75l #main_content .c75l img,
  .c75l #main_content img,
  .c75l #maincontent_footer img {
    width: auto;
  }
  .c100 img {
      width: 100%;
    display: block;
    margin: 0 0 0.8333em 0;
  }

.c20 {
    width: 20%;
}
.c10 {
    width: 10%;
}  
.c15 {
    width: 15%;
}
.c40 {
    width: 40%;
}
/*------------------------------------------------- Zweispaltige Liste Video-------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
.c50l_img{
    float:left;
    width:100px;
    padding-top:2px;
    height:100px;
}
.c50l_txt{
    float:left;
    width:170px; 
    padding-left:5px;
}  
  
/*------------------------------------------------- Login -------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  #login {
      background: #f0e6c8;
    margin: 0 0 0.8333em 0;
  }

  #simplylife {
    background: #ffffff;
    margin: 0 0 0.75em 0;
  }

  #simplylife img {
      width: 13.3333em;
  }

  
  #login .login_headline {
    font-weight: normal;
    line-height: 1em;
    padding: 0.3333em 0.8333em 0.4166em 0.8333em;
    margin: 0;
    color: #fff;
    background: #d2aa4b;
    height: 1em;
  }

   #login .login_content {
    margin: 0.3333em 0;
    min-height: 8em;
  }

  #login .login_content p {
    font-size: 133%;
    padding: 0;
    margin: 0 0 2.0833em 0;
  }
  
  #login ul {
      list-style: none;
    padding: 0;
    margin: 0;
    font-size: 75%;
    color: #585858;
  }
  
  #login ul li {
      padding: 0 1.1111em;
      margin: 0 0 0.4444em 0;
    height: 1%;
    background-image: none;
  }
  
  #login ul li.sendit {
      overflow: hidden;
    width: auto;
      margin-top: 0.7777em;
    margin-bottom: 0;
  }
  
  #login ul li label {
      display: block;
    line-height: 1.1111em;
  }
  
  #login ul li input.textinput {
      height: 1.2727em;
    width: 10.2727em;
  }
  
  #login ul li .btn {
      // font-size: 122.22%;
  }
  
  #login ul li a {
    line-height: 1.2222em;
    height: 1%;
  }

.loginfailuretext {
    font-weight: bold;
    color: #ff0000;
}

/*----- Login Failed ------*/

#loginfailed {
    margin: 0 0 0.8333em 0;
  }

  #loginfailed .login_content p {
    font-size: 133%;
    padding: 0;
    margin: 0 0 2.0833em 0;
  }
  
  #loginfailed ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #585858;
  }
  
  #loginfailed ul li {
    margin: 0 0 0.4444em 0;
    height: 1%;
    background-image: none;
  }
  
  #loginfailed ul li.sendit {
      overflow: hidden;
    width: auto;
      margin-top: 0.7777em;
    margin-bottom: 0;
  }
  
  #loginfailed ul li label {
      display: block;
    line-height: 1.1111em;
  }
  
  #loginfailed ul li input.textinput {
      height: 1.2727em;
    width: 14.6666em;
  }
  
  #loginfailed ul li .btn {
      font-size: 122.22%;
  }
  
  #loginfailed ul li a {
    line-height: 1.2222em;
    height: 1%;
  }

  
/*------------------------------------------------ Buttons ------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/ 
  div.btn_wrapper {
      overflow: hidden;
  }
  
  button {
      position: relative;
    overflow: visible;
      border: none;
    background: none;
    width: auto;
    padding: 3px 0 0 0;
    margin: 0 0 0 0.3846em;
    white-space: nowrap;
    line-height: 1.5em;
  }
  
  .btn {
    position: relative;
    float: left;
    display: block;
    background: #5a5a5a;
    padding: 1px 3px 3px 3px;
    font-size: 84.62%; /*11px*/
    color: #fff;
    font-weight: normal;
    text-decoration: none;
    cursor: pointer;
  }
  .btn * {
      font-style: normal;
    background-image: url(/data/images/btn.png);
    background-repeat: no-repeat;
    display: block;
    position: relative;
  }
  #login .btn * {
      background-image: url(/data/images/btn_login.png);
  }
  .btn:focus,
  .btn:hover,
  .btn:active {
      color: #fff;
    text-decoration: none;
  }
  .btn i {
      background-position: top left;
    position: absolute;
    margin-bottom: -6px;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
  }
  .btn span {
      background-position: bottom left;
    left: -3px;
    padding: 0 0 2px 6px;
    margin-bottom: -3px;
  }
  .btn span i {
      background-position: bottom right;
    margin-bottom: 0;
    position: absolute;
    left: 100%;
    width: 6px;
    height: 100%;
    top: 0;
  }
  .btn span span {
      background-position: top right;
    position: absolute;
    right: -6px;
    padding-bottom: 6px;
    top: -1px;
    height: 0;
  }
  
  .btn.lightgrey,
  .btn.lightgrey:hover {
      background: #9c9c9c;
  }
  .btn.login,
  .btn.login:hover {
      background: #d2aa4b;
  }
  li.tandem_row .btn * {
      background-image: url(/data/images/btn_white-edges.png);
  }
  
  
/*------------------------------------------------ Colors -------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  .hgf0 {
      background-color: #f1f1f1;
  }
  
  .hgf1 {
      background-color: #9b0f3c;
  }
  
  .hgf2 {
      background-color: #5f0f41;
  }
  
  .hgf3 {
      background-color: #6e50a0;
  }
  
  .hgf4 {
      background-color: #004182;
  }
  
  .hgf5 {
      background-color: #0064a0;
  }
  
  .hgf6 {
      background-color: #006e7d;
  }
  
  .hgf7 {
      background-color: #414614;
  }
  
  .hgf8 {
      background-color: #004123;
  }
  
  .hgf9 {
      background-color: #4b2d0f;
  }
  
  .hgf10 {
      background-color: #D2AA4B;
  }

  .hgf11 {
      background-color: #000000;
  }

 .hgf12, div.hgf12 {
      background: #cdc8d2;
  }

 .hgf13, div.hgf13 {
      background: #d2d7dc;
  }

 .hgf14, div.hgf14 {
      background: #d2d7d2;
  }  

 .hgf15, div.hgf15 {
      background: #cdd2cd;
  }

 .hgf16, div.hgf16 {
      background: #e6e1dc;
  }

 .hgf17, div.hgf17 {
      background: #ebe1d7;
  }  

 .hgf18, div.hgf18 {
      background: #e6e1d2;
  }

 .hgf19, div.hgf19 {
      background: #dcdcd2;
  } 

 .hgf20, div.hgf20 {
      background: #e6e1e1;
  }  

 .hgf21, div.hgf21 {
      background: #e8e8e8;
  }

 .hgf27, div.hgf27{
    background:#a02d19;
 }

 .hgf28, div.hgf28{
    background:#cfe870;
 }

/*--------------- Tandem Tours --------------*/
    .hgf22, div.hgf22 {
        background: #f3f3f3;
    }
    .hgf23, div.hgf23 {
        background: #003c8d !important;
    }
    .hgf24, div.hgf24 {
        background: #1a6717 !important;
    }
    .hgf25, div.hgf25 {
        background: #cb981a !important;
    }
    .hgf26, div.hgf26 {
        background: #6e197d !important;
    }

/*------------------------------------------------ Header -------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/  
  #cont_header {
      color: #fff;
  }
  
  #cont_header h1 {
      font-family: "Times New Roman", Times, serif;
    font-style: italic;
    font-size: 267%; /*32px*/
    font-weight: normal;
    line-height: 1em;
    margin: 0.4375em 0 0.1875em 0.71875em;
  }
  
  #cont_header h2 {
      font-family: "Times New Roman", Times, serif;
    font-style: italic;
    font-size: 167%; /*20px*/
    font-weight: normal;
    line-height: 1em;
    margin: 0 0 1em 4.75em;
  }
  
  #cont_header span.desc {
    background: none;
    display: block;
    color: #fff;
    font-size: 1.0833em; /*13px*/
    margin: 1.3077em 1.3077em 0 0;
  }

  #cont_header span.desc a {
    background: none;    
    color: #fff;
    padding-right: 0;
    text-decoration: underline;
  }

  #cont_header span.hgf1 a {
    color: #9b0f3c;
  }
  #cont_header span.hgf2 a {
    color: #5f0f41;
  }
  #cont_header span.hgf3 a {
    color: #6e50a0;
  }
  #cont_header span.hgf4 a {
    color: #004182;
  }
  #cont_header span.hgf5 a {
    color: #0064a0;
  }
  #cont_header span.hgf6 a {
    color: #006e7d;
  }
  #cont_header span.hgf7 a {
    color: #414614;
  }
  #cont_header span.hgf8 a {
    color: #004123;
  }
  #cont_header span.hgf9 a {
    color: #4b2d0f;
  }
  #cont_header span.hgf10 a {
    color: #D2AA4B;
  }
  #cont_header span.hgf11 a {
    color: #000000;
  }

  #cont_header a {
    color: #fff;
  }
  
  #cont_header a:focus,
  #cont_header a:hover,
  #cont_header a:active {
      text-decoration: none;
  }
  
  #cont_header.index h1,
  #cont_header.index h2,
  #cont_header.index .subcolumns {
      position: absolute;
    font-family: "Times New Roman", Times, serif;
  }
  
  #cont_header.index h1 {
      top: 0;
    left: 0;
  }
  
  #cont_header.index h2 {
      top: 2.6em;
    left: 0;
  }
  
  #cont_header.index .subcolumns {
      left: 0;
    bottom: 11px;
    font-family: Arial, Helvetica, sans-serif;
    color: #8c8c8c;
    font-size: 108.33%;
  }
  
  #cont_header.index .subcolumns .subcl {
      padding-left: 3.6923em;
    margin: 0;
  }
  #cont_header.index .subcolumns .subc {
      padding-left: 3.3077em;
    margin: 0;
  }
  #cont_header.index .subcolumns .subcr {
      padding-left: 3.1538em;
    margin: 0;
  }
  
  #cont_header.index .subcolumns h3 {
      font-family: "Times New Roman", Times, serif;
      color: #5a5a5a;
    text-transform: uppercase;
    font-size: 138.46%;
    line-height: 1.2777em;
    margin: 0;
  }
  
  #cont_header.index .subcolumns p {
      margin: 0 0 0.7692em 0;
  }
  
  #cont_header.index .subcolumns a {
      display: inline;
      color: #506ea0;
    text-decoration:none;
    font-size: 100%;
    padding: 0 0.8462em 0 0;
    margin: 0;
    /*background: url(/data/images/icon_indexheader_link.gif) no-repeat top right;*/
  }
  
  #cont_header.index .subcolumns a:focus,
  #cont_header.index .subcolumns a:hover,
  #cont_header.index .subcolumns a:active {
      color:#506ea0;
    text-decoration:underline;
  }
  
  
/*------------------------------------------- Startseite --------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/
  .teaser_blank,
  .teaser_index {
    padding: 0.9166em 0.8333em 0.8333em 0.8333em;
    margin-left: 0.4166em;
    margin-bottom: 1.25em;
  }
  
  .teaser_blank {
      border-top: 1px solid #e7840f;
    background: #fff;
  }
  
  .teaser_blank img,
  .teaser_index img {
      border: none;
    width: auto;
    margin: 0 0 0.8333em 0;
  }
  
  .teaser_index {
      background: #f1f1f1;
    border-top: 1px solid #979797;
    overflow: hidden;
  }
  
  .teaser_index img {
      border: none;
    width: auto;
    padding: 0;
    margin: 0;
  }
  
  .teaser_index ul {
      margin: 0;
  }
  
  .teaser_index a.secure {
      background-image: url(/data/images/icon_secure_small.png);
    background-repeat: no-repeat;
    background-position: top left;
    padding-left: 18px;
  }

  .myhapi a.secure {
      background-image: url(/data/images/icon_secure_small.png);
    background-repeat: no-repeat;
    background-position: top left;
    padding-left: 18px;
  }

  
/* Content */
  ul#index_list {
      list-style: none;
    padding: 0;
    margin: 0 0 0.7692em 0;
  }
  
  ul#index_list li {
      overflow: hidden;
    width: auto;
    padding: 0.7692em;
    margin: 0;
    background: none;
    border-bottom: 1px solid #b5b5b5;
  }
  
  ul#index_list li {
      border-bottom: 1px solid #DCBE78;
  }
  
  ul#index_list li.noborder {
      border: none;
  }
  
  ul#index_list li .c33l img,
  ul#index_list li .c33r img {
      width: 13.0769em;
    margin-bottom: 0.7692em;
  }
  
  ul#index_list p {
      margin-bottom: 1em;
  }
  
  ul#index_list ul li {
      background: url(/data/images/listimg.gif) no-repeat top left;
    padding: 0 0 0 0.8462em;
    margin: 0;
      border-bottom: none;
  }
  
  .list_title {
      overflow: hidden;
      background-color: #DCBE78;
    padding: 0 0.6923em 0 0.6923em;
    margin: 0 0 0.4615em 0;
  }
  
  #main_content .list_title h3 {
      font-family: "Times New Roman", Times, serif;
      float: left;
      display: inline;
    color: #fff;
    font-size: 150%;
    font-style: italic;
    font-weight: bold;
    margin: 0;
  }
  
  div.startpage_teaser {
      margin-top: 0.8333em;
  }
  div.startpage_teaser ul.subcolumns {
      font-size: 100.01% !important;
  }
  div.startpage_teaser div.mainteaser {
      margin-bottom: 0px;
  }

  #oneline_news {
      margin-top: 1em;
      color: #000000;
      padding: 0.4em;
      border-top: 2px dotted #EBEBEC;
      border-bottom: 2px dotted #EBEBEC;
  }
  .startpage_teaser h5 {
      color:#000000;
  }
  
/*--------------------------------------------------- Teaser ----------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  #teaser,
  #dbteaser {
      background: #f1f1f1;
      padding: 0 0.8333em 0.8333em 0.8333em;
      margin-left: 0.4166em;
      margin-bottom: 1.25em;
  }
  
  #dbteaser {
     height: 38.75em;
  }
  
  #teaser .teasersection,
  #dbteaser .teasersection {
      padding: 0.9166em 0 0.3333em 0;
      border-top: 1px solid #8c8c8c;
  }
div.teaser_text_subcr{
    height:92px;
}
#consultantfinder #land{
    width:145px;
}

#consultantfinder_teaser .form_submit{
position:absolute;
margin-left:100px;
margin-top:-28px;
}

#consultantfinder_teaser #land{
    width:155px;
}

.guest_submit_button{
    position:absolute;
    margin-top:-25px !important;
    margin-left:100px !important;
}

li.no_dot{
    background:none !important;
}
  .teaserHeadImage{
   padding-top:0.9166em;   
   border:none;
   margin:0;
  }
  .teaserHeadImage h2{
   font-weight:bold;
   margin-bottom:0.4em;
  }

  #consultantfinder ul li{
   background-image:none;
   margin-left: -9px;
  }

#consultantfinder_teaser ul li{
   background-image:none;
   margin-left: -9px;
  }

  #consultantfinder {
      height:70px;
      margin-left:150px;
  }

  * html #consultantfinder{
    position: relative; 
    top: -15px;  
  }
  
  #consultantfinder_teaser ul.form{
    position: relative; 
    top: -32px;
    left: +98px;
    width:62px;
  }

#consultantfinder ul.form{
    position: relative; 
    top: -25px;
    width:250px;    
    left:-90px;
  }

.consultant_form {
min-height: 70px;
}

  .consultant_form form ul{
    padding:0;
    margin:0;
  }
  .consultant_form form ul li{
    padding:0;
    margin:0;
    margin-bottom:5px;

  }

  #teaser .teasersection.noborder,
  #dbteaser .teasersection.noborder,
  .noborder {
      border: none;
      padding-bottom:3px;

  }
  #teaser h1,  #teaser h2,  #teaser h3,  #teaser h4,  #teaser h5,  #teaser h6{
font-size:12px;
 }

  #teaser_default h1,  #teaser_default h2,  #teaser_default h3,  #teaser_default h4,  #teaser_default h5,  #teaser_default h6,
#dbteaser h1,#dbteaser h2,#dbteaser h3,#dbteaser h4,#dbteaser h5,#dbteaser h6{
font-size:12px;
 }
#teaser{
font-size:12px;
}





  #teaser img {
     width: 13.3333em;
    border: 1px solid #8c8c8c;
    margin: 0 0 0.8333em 0;
  }

#dbteaser img { 
    width: auto;
    margin: 0;
}

#teaser .hc_widget_pic img{
    width:90px;
}

#dbteaser .teaserimg {    
    width: 13.3333em;
    border: 1px solid #8c8c8c;
    margin: 0 0 0.8333em 0;
  }

  #teaser img.noborder,
  #dbteaser img.noborder {
        border: none;
    }
  
  #teaser p,
  #dbteaser p,
  .teaser_blank p,
  .teaser_index p {
      padding: 0;
    margin: 0 0 0.6666em 0;
    color: #5a5a5a;
    line-height: 1.3em;
  }

  #teaser p.tt_available,
  #dbteaser p.tt_available,
  .teaser_blank p.tt_available,
  .teaser_index p.tt_available {
        margin-top: 2em;
    }
    
  #teaser p.tt_available span,
  #dbteaser p.tt_available span,
  .teaser_blank p.tt_available span,
  .teaser_index p.tt_available span {
        display: inline;
        background: url(/data/images/tt_batch.gif) no-repeat left 0;
        padding: 0.5em 0 0 2em;
    }
  
  #teaser h5,
  #dbteaser h5,
  .teaser_blank h5,
  .teaser_index h5 {
      position: relative;
      font-weight: normal;
    line-height: 1.5em;
      padding-top: 0.4166em;
    margin-bottom: -6px;
    color: #191919;
    font-size: 108.33%;
  }
  
  #teaser h6,
  #dbteaser h6,
  .teaser_blank h6,
  .teaser_index h6 {
      font-weight: normal;
      margin-bottom: 0.5833em;
    color: #000;
  }
  
  .teaser_blank h6,
  .teaser_index h6 {
      margin-bottom: 0.1666em;
  }
  
  #teaser ul,
  #dbteaser ul {
      margin-bottom: 0.5em;
  }
  
  #teaser li,
  #dbteaser li,
  .teaser_blank li,
  .teaser_index li {
      background: url(/data/images/listimg_teaser.gif) no-repeat top left;
  }

 #teaser ul.wether img{
    width: auto;
    margin: 0;
  }
  
 #teaser ul.wether li{
    background: none;
    font-size:100.01%;
  }

#b24-feedback-widget {
    margin: auto;
}
 
#b24-feedback-widget img {
    border: none;
    width: auto;
}

/* Fixed Teaser*/
.teasersection.fixed{
position:fixed;
}

.teasersection.top_left{
top:0;
left:10px;
}

.teasersection.top_right{
top:0;
right:10px;
}

.teasersection.bottom_right{
bottom:0;
right:10px;
}

.teasersection.bottom_left{
bottom:0;
left:10px;
}

/*------------------------------------------------ Main Content -------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/  
  #main_content {
      font-size: 108.33%; /*13px*/
  }
  
/*------ Textparagraphen ------*/
  .txt_paragraph {
      margin-top: 2.6154em;
      display: block;  
  }

  .txt_paragraph_nomargin {
      margin-top: -0.3em;
      display: block;  
  }

  
  .twocol_paragraph,
  .float_img_paragraph  {
      overflow: hidden;
    width: 100%;
      margin-top: 1.23em;
  }

  .tabcontent .float_img_paragraph {
      margin-top: 0;
  }
  
  .twocol_paragraph .subcr,
  .twocol_paragraph .subcl,
  .float_img_paragraph .subcr,
  .float_img_paragraph .subcr {
      margin-bottom: 0;
  }
  
  .float_img_paragraph img  {
      float: right;
    display: inline;
    margin-left: 0.7692em;
      width: 21.1538em;
  }
  
  .twocol_paragraph .c50l img,
  .twocol_paragraph .c50r img  {
      margin-left: 0;
    margin-bottom: 0.4615em;
    width: 100%;
  }
  
  .img_txt_paragraph {
      overflow: hidden;
    width: 100%;
    margin-bottom: 1.2307em;
  }
  
  .img_txt_paragraph .img_left {
      float: left;
    display: inline;
  }
  
  .img_txt_paragraph .img_left img {
      width: 13.8461em;
  }
  
  .img_txt_paragraph .txt_right {
      float: right;
    display: inline;
      width: 28em;
    margin-left: 0.3846em;
  }
  
  .img_txt_paragraph .txt_right p,
  .colored_paragraph .txt_left p {
      margin-bottom: 0;
  }
  
  .colored_paragraph {
      overflow: hidden;
      margin-top: 2.6154em;
    background: #f1f1f1;
    padding: 0.7692em;
  }
  
  .colored_paragraph .txt_left {
      float: left;
    display: inline;
  }
  
  .colored_paragraph .img_right {
      float: right;
    display: inline;
    margin-left: 0.3846em;
  }
  
  .colored_paragraph .img_right img {
      width: 13.0769em;
  }
  
  .table_paragraph {
      overflow: hidden;
    width: 100%;
      margin-top: 1.5384em;
  }
  
  .table_paragraph.first {
      margin: 0;
  }

  #main_content h5 a {
      text-decoration: none;
      color: #000000;
  }

  #main_content .floater_left {
      float:left;
      margin-right:1.4em;
  }

  #main_content .floater_right {
      float:right;
      margin-left:1.4em;
  }

  div.profiles input[readonly], div.profiles input[disabled], div.profiles select[disabled] {
      background: #E2E2E2;
  }

 
/*----------------------------------------------- Content Footer ------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  ul#maincontent_footer {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 1.5385em 0 0 0;
    width: 100%;
    overflow: hidden;
  }
  
  ul#maincontent_footer li {
      float: left;
    display: inline;
    padding: 2px 0 0;
    margin: 0;
    background: none;
  }
  
 
  ul#maincontent_footer li a {
    display: inline;
  }
  ul#maincontent_footer li.printpdf a {
      float: left;
  } 
  #footer_border {
    overflow: hidden;
    width: 100%;
    height: 0.4166em;
    margin: 0.1666em 0 0 0;
  }
  
  .edge_l {
    float: left;
    display: inline;
  }
  
  .edge_r {
    float: right;
    display: inline;
  }

.edge_l img, .edge_r img {
    width: 3px;
}
  
/*------------------------------------------------ List Content -------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  ul.info_list,
  ul#accordion_list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.7692em 0;
  }
  
  ul.info_list li,
  ul#accordion_list li {
    font-size: 92.31%;
    padding: 0;
    margin: 1.2307em 0;
    padding: 0 0.8333em;
    background: none;
  }

  ul.info_list li table {
    font-size: 100.01%;

}
  
  ul.info_list li p,
  ul#accordion_list li p {
    margin: 0;
  }
  
  /* Listen im Inhalt */
  ul.info_list li ul,
  ul#accordion_list li ul {
    padding: 0 9px;
    margin: 0 -0.8333em;
    overflow: hidden;
  }
  
  ul.info_list li ul li,
  ul#accordion_list li ul li {
    font-size: 108.33%;
    float: left;
    display: inline;
    width: 45%;
    padding-left: 0.8333em;
    margin: 0;
    background: url(/data/images/listimg_teaser.gif) no-repeat top left;
  }
  
  ul.info_list li ul li {
    padding-right: 1em;
  }

ul.info_list li ul li.float_right,
ul#accordion_list li ul li.float_right {
    float: right;
}
  
  ul.info_list li div.sectiontitle {
    font-size: 108.33%;
    margin: 0 -0.8333em 0.4615em;
  }

      div.accordion_child ul.accordeon-info {
         margin:1em 0;
         height: auto;
      }
    
      div.accordion_child ul.accordeon-info li {
         background:none repeat scroll 0 0 #F1F1F1;
         margin:0 0 1em 0;
         padding:0.2em 0 0.2em 0.8333em;
      }
        
      div.accordion_child ul.accordeon-info li span.accordeon-info-title {
         float:left;
         height:auto;
         padding:0;
         text-align:left;
         width:310px;
      }
    
      div.accordion_child ul.accordeon-info li span.accordeon-info-time {
         float:right;
         height:auto;
         padding:0 0.8333em 0 0;
         text-align:right;
         width:180px;
      }

div.backlink{
margin-bottom:10px;
text-align:right;
}
  
/*----------------------------------- Medien DB / Index Content List --------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  ul#media_db,
  ul#adress_db,
  ul#search_result,
  ul#news {
    font-size: 92.31%;
    list-style: none;
    padding: 0;
    margin: 0 0 0.8333em 0;
  }
  
  ul#media_db li,
  ul#adress_db li,
  ul#search_result li,
  ul#news li {
    overflow: hidden;
    width: auto;
    padding: 1em 0.8333em 0 0.8333em;
    margin: 0;
    background: none;
    border-bottom: 1px solid #b5b5b5;
  }

  ul#news li {
      padding-top: 0.5833em;
  }
  ul#news li.colimg p {
    margin-left: 15em;
  }
  
  ul#adress_db li {
      border-top: 1px solid #b5b5b5;
    border-bottom: none;
  }
  
  ul#index_list li {
      border-bottom: 1px solid #DCBE78;
  }
  
  ul#media_db li.noborder,
  ul#search_result li.noborder,
  ul#news li.noborder{
      border: none;
  }
  
  ul#media_db li .c33l img,
  ul#adress_db li .c25l img {
      width: 14.1667em;
    margin: 0;
  }
  
  ul#adress_db li .c25r .subcr {
      padding-left: 0.8333em;
  }
  
  ul#media_db ul li {
      background: url(/data/images/listimg.gif) no-repeat top left;
    padding: 0 0 0 0.8333em;
    margin: 0;
      border-bottom: none;
  }

  ul#search_result li a {
      display: block;
    margin: 0.0833em 0 0.25em 0;
  }
  
  ul#news li img {
      float: left;
    display: inline;
    margin: 0.25em 0.8333em 0.8333em 0;
    margin-right: 0.8333em;
    margin-bottom: 0.8333em;
    width: 14.1667em !important;
  }
  
/*------------------------------------------------ Wetherlist ---------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  ul.wether {
      list-style: none;
    padding: 0 0 0 3em;
    margin: 0;
    overflow: hidden;
    width: auto;
  }
  
  ul.wether li {
      float: left;
      display: inline;
    padding: 0 3.25em 0 0;
    margin: 0;
    font-size: 92.31%;
    background: none;
  }
  
  ul.wether li .date {
      display: block;
    margin-bottom: 0.5em;
    width: 5.3333em;
  }
  
  ul.wether li img {
      display: block;
    width: 5.3333em;
    margin-bottom: 0.5em;
  }
  
  ul.wether li .max {
      overflow: hidden;
    width: 5.3333em;
    color: #000;
    background: url(/data/images/dot_wether.gif) repeat-x bottom left;
  }
  
  ul.wether li .min {
      overflow: hidden;
    width: 5.3333em;
  }
  
  
    
/*---------------------------------------------- Formulare ------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
    
    
   

    form ul {
        overflow: hidden;
        list-style: none;
        padding: 0;
        margin: 0 0 1.5385em 0;
    }

    form ul ul {
        margin-bottom: 0;
    }
    
    form ul li {
        padding: 0;
        margin: 0;
        background: none;
    }

    img.infoleft {
        display: inline;
        margin-right: 2px;
    }
    
    li.form_row {
        overflow: hidden;
        width: auto;
        margin: 0 0 0.7692em 0;
    }

    li.form_row_nomargin {
        overflow: hidden;
        width: auto;
        margin: 0;
    }

 

  /* Tandem Tours */
    li.tandem_row {
        float: left;
        display: inline;
        width: 50%;
        height: 22px;
        padding: 0 0 0.7692em 0;
        margin: 0;
        overflow: hidden;
    }    
    li.tandem_row {
        float: left;
        display: inline;
        width: 50%;
        height: 22px;
        margin: 0 0 0.7692em 0;
        overflow: hidden;
    }
    li.right_row {
        float: right;
        width: auto;
        margin-left: 2em;
    }
    
    li.tandem_row div.form_col1 {
        width: 8.0769em;
    }
    
    li.tandem_row div.form_col2 input,
    li.tandem_row div.form_col2 input {
        width: 6.3077em;
    }
    
    li.tandem_row div.form_col2 input#period_to {
        margin-left: 0.8461em;
    }  
    li.tandem_row select {
        width: 14.2308em;
    }
   li.tandem_row div.price select {
        float: left;
        display: inline;
        margin-right: 0.7692em;
        width: 8.3846em;
    }
    
    li.tandembtn_row {
        float: right;
    }
    
    legend {
        color: #000;
        display: block;
        margin: 0 0 1em 0;
        font-size: 108%;
    }
    
    fieldset fieldset legend {
        font-size: 100%;
        padding: 0 0 0 7px;
    }
    
    div.form_col1 {
        float: left;
        display: inline;
        width: 11.5385em;
        padding: 0 0.5385em 0.0769em 0.5385em;
        background: #f1f1f1;
    }

    div.form_col1_neutral {
        float: left;
        display: inline;
        width: 11.5385em;
        padding: 0 0.5385em;
        margin: 0;
        background: #fff;
    }
    
    .profiles div.form_col1,
    .profiles div.form_col1_neutral,
    .profiles div.form_col2_neutral  {
        width: 12.3077em;
        float: left;
    }
    
    div.form_col1 label {
        float: left;
        display: inline;
        color: #5a5a5a;
        line-height: 1.3em;
    }
    
    div.form_col1 img.info {
        float: right;
        display: inline;
        width: 1.3333em;
    }
    
    div.form_col2 {
        float: left;
        display: inline;
        padding: 0;
        margin: 0 0 0 0.7692em;
    }
    
    div.form_col2 input,
    div.form_col2 textarea,
    div.form_col2 select,
    li.form_row input {
        border: 1px solid #5a5a5a;
        padding: 0 0.1538em;
        height: 1.2308em;
    }
    div.form_col2 select {
        padding-right: 0;
    }
    
    div.form_col2 input.long_input {
        width: 27.6923em;
    }
    div.form_col2 select.long_input {
        width: 28.1538em;
    }
    
    div.form_col2 input.medium_input {
        width: 21.8461em;
        margin: 0 0.7692em 0 0;
    }
    
    div.form_col2 input.short_input {
        width: 4.6154em;
        margin: 0 0.7692em 0 0;
    }

    div.form_col2 input.radio_input {
        width: 4.6154em;
        margin: -0.7692em  0.7692em 0 0.5385em !important;
        border: 1px solid #5A5A5A !important;
    }

    .eventdate {
        width: 7.5em;
        margin: 0 0.7692em 0 0;
        background-color:#fff; 
        border: 1px solid #9C9C9C;
    }
    input.eventdate {
        border: none;
    }
    input.textonly {
        color:#506EA0;
        cursor:pointer;
        text-decoration:none;
        background-color:#fff;
        border:0;
    }

    input.textonly:hover {
        text-decoration:underline;
    }

    .profiles div.form_col2 input {
        width: 12.6923em;
    }
    .profiles div.form_col2 select {
        width: 13.1em;
    }
    .profiles div.form_col2 input#plz,
    .profiles div.form_col2 input#plz2 {
        float: left;
        display: inline;
        width: 48px;
        margin-right: 5px;
    }
    .profiles div.form_col2 input#city,
    .profiles div.form_col2 input#city2 {
        float: left;
        display: inline;
        width: 106px;
    }
    .profiles div.form_col2 input#geb,
    .profiles div.form_col2 input#geb2 {
        width: 140px;
    }
  
    
    div.form_col2 textarea {
        width: 28.4615em;
        height: auto;
    }
    
    div.form_col2 select {
        height: auto;
    }
    
    li.form_row span.radio,
    li.tandem_row span.radio,
    li.tandem_row span.check input {
        float: left;
        display: inline;
        margin: 0 8px 0 0;
    }

    /*
    li.form_row span.newline {
        float: none !important;
        display: block !important;
        margin: 0 8px 0 0;
    }
    */

        li.form_row span.newline {
            float: none !important;
            display: block !important;
            margin: 0 8px 0 0;
            width:29em;
        }

        li.form_row span.radio.newline input.radio {
            float: left; 
            width: 1em;
        }

        li.form_row span.radio.newline label.newline {
            float: left;
            width: 27em;
        }        
    
    li.form_row span.radio input,
    li.tandem_row span.radio input,
    li.tandem_row span.check input,
    .profiles div.form_col2 input.radio {
        margin: 0.2308em 0.5385em -0.1538em 0;
        height: auto;
        border: none;
        width: auto;
    }

    /*
    li.form_row input.check {
        margin: 0 0.5385em 0 0;
        height: 1em;
        width: 1em;
        border: none;
    }
    */

        li.form_row input.check {
            margin:0.1538em 0.5385em 0 0;
            height: 1em;
            width: 1em;
            border: none;
            float:left;
         }
    
        li.form_row label.check {
            float:left; 
            width:41em;
            height:auto;
        }

    li.form_row div.placeholder {
        height: 1.4615em;
    }
    div.form_col2 input.file {
        border:1px solid #5A5A5A;
        height:auto;
        padding:0 0.1538em;
        background-color:#ffffff;
    }  
    /* Tooltips */
    div.tooltip,
    div.tooltip_img {
        visibility:hidden;
        display: block;
   }
    div.tooltip,
    div.tooltip_img {
        line-height: 1.3em;
        padding: 0.0769em 0.3846em 0.0769em 0.4615em;
        border: 1px solid #822832;
        background: #fff;
        width: 28.2077em;
        font-size: 108.33%;
        color: #822832;
        z-index: 10;
    }
    div.tooltip {
        visibility:hidden;
        display: block;
        position: absolute;
    }
    
    div.tooltip_img {
        width: 12.1666em;
    }


    /* Tooltips Boutique */
    .icon_tooltip {
        position: absolute;
        margin-top: -17px;
        display: none;
    }
    
    .icon_tooltip img {
        position: relative;
        z-index: 25;
    }
    
    .icon_tooltip .icon_tooltip_content {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 20;
        border: 1px solid #fff;
        background: #D2AA4B;
        color: #fff;
        padding: 0 5px;
    }
    
    /* Fehlermeldung */
   li.validation-advice {
        margin-top: -0.7692em;
        margin-bottom: 0.7692em;
        color: #822832;
    } 
    .validation-advice-col {
        color: #be0000;
        width:12.6923em;
    }

   div.validation-advice {
        margin-top: 0.7692em;
        margin-bottom: 0.7692em;
        color: #822832;
    } 

    
    

    
/*------------------------------------------- Rounded Corners ---------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  div.corner {
    position: absolute;
    width: 4px;
    height: 4px;
    font-size: 0;
  }
  
  div.corner-tl {
    top: 0;
    left: 0;
    background: transparent url('/data/images/corner-tl.gif') no-repeat top left;
  }
  
  div.corner-tr {
    top: 0;
    right: 0;
    background: url('/data/images/corner-tr.gif') no-repeat top left;
  }
  
  div.corner-bl {
    bottom: 0;
    left: 0;
    background-image: url('/data/images/corner-bl.gif');
  }
  
  div.corner-br {
    bottom: 0;
    right: 0;
    background-image: url('/data/images/corner-br.gif');
  }


/*---------------------------------------------- Shadowbox ------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
/**
 * The default CSS for Shadowbox.
 *
 * This file is part of Shadowbox.
 *
 * Shadowbox is an online media viewer application that supports all of the
 * web's most popular media publishing formats. Shadowbox is written entirely
 * in JavaScript and CSS and is highly customizable. Using Shadowbox, website
 * authors can showcase a wide assortment of media in all major browsers without
 * navigating users away from the linking page.
 *
 * You should have received a license with this distribution explaining the terms
 * under which Shadowbox may be used. If you did not, you may obtain a copy of the
 * license at http://shadowbox-js.com/license.txt
 *
 * @author      Michael J. I. Jackson <michael@mjijackson.com>
 * @copyright   2007-2009 Michael J. I. Jackson
 * @version     SVN: $Id: shadowbox.css 1 2009-04-12 22:47:49Z michael $
 */
/*_____________________________________________  container, overlay, & wrapper  */
#sb-container, #sb-wrapper {
  text-align: left; /* reset left alignment */
}
#sb-container, #sb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}
#sb-container {
  height: 100%;
  display: none;
  visibility: hidden;
  z-index: 999;
}
body > #sb-container {
  /* use position:fixed in modern browsers */
  position: fixed;
}
#sb-container > #sb-overlay {
  /* use for sb-container position:fixed */
  height: 100%;
}
/*_________________________________________________________________  wrapper  */
#sb-wrapper {
  position: relative;
  background: #fff;
}
#sb-wrapper img {
  border: none;
}
/*____________________________________________________________________  body  */
#sb-body {
  position: relative;
  margin: 0 20px;
  padding: 0;
  overflow: hidden;
}
#sb-body-inner {
  position: relative;
  height: 100%;
}
#sb-content.html {
  height: 100%;
  overflow: auto; /* make html content scrollable */
}
/*_________________________________________________________________  loading  */
#sb-loading {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding-top: 10px;
}
#sb-body, #sb-loading {
  background-color: #060606; /* should match loading image background color */
}
/*____________________________________________________________  title bar*/
#sb-title {
  position: relative;
  margin: 0; /* these must have no vertical margin or padding */
  padding: 0;
  overflow: hidden;
}
#sb-title-inner {
  position: relative;
  left:20px;
}
#sb-title {
  overflow: hidden;
  height: 36px;
}
#sb-title-dia {
  float: left;
  display: inline;
  height: 36px;
  padding: 12px 0 12px 21px;
}
/*____________________________________________________________  info bar  */
#sb-info, #sb-info-inner {
  height: 50px;
  overflow: hidden;
}
/*_____________________________________________________________________  nav bar with img title  */
#title {
  float: left;
  display: inline;
  padding: 15px 0 5px 21px;
}

#sb-nav {
  float: right;
  display: inline;
  padding: 1.25em 1.75em 0.4166em 0;
  margin-right:-25px;
}
#sb-nav a,
#sb-counter {
  float: left;
  display: inline;
}
#sb-nav-close {
  float: right;
  display: inline;
  padding: 0 1.75em 1em 0;
  margin: 1em;
  background-image: url(/data/images/close.gif);
  background-repeat: no-repeat;
  background-position: right 1px;
  cursor: pointer;
}
#sb-nav-next {
  padding-left: 0.3333em;
  cursor: pointer;

}
#sb-nav-previous {
  padding-right: 0.3333em;
  cursor: pointer;
}
#sb-nav-play {
  padding-left: 20px;
  background: url(/data/images/icon_dia.gif) no-repeat left 1px;
  cursor: pointer;
}
#sb-nav-pause {
  padding-left: 20px;
  background: url(/data/images/icon_pause.gif) no-repeat left 1px;
  cursor: pointer;
}/*________________________________________________________________  messages  */
div.sb-message {
  font-family: 'Lucida Grande', Tahoma, sans-serif;
  font-size: 12px;
  padding: 10px;
  text-align: center;
}
div.sb-message a:link, div.sb-message a:visited {
  color: #000;
  text-decoration: underline;
}
    




#sb-title-inner,#sb-info-inner,#sb-loading-inner,div.sb-message{font-family:"HelveticaNeue-Light","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:200;color:#000;}
#sb-container{position:fixed;margin:0;padding:0;top:0;left:0;z-index:999;text-align:left;visibility:hidden;display:none;}
#sb-overlay{position:relative;height:100%;width:100%;}
#sb-wrapper{position:absolute;visibility:hidden;width:100px;}
#sb-wrapper-inner{position:relative;border:0px solid #303030;overflow:hidden;height:100px;}
#sb-body{position:relative;height:100%;}
#sb-body-inner{position:absolute;height:100%;width:100%;}
#sb-player.html{height:100%;overflow:auto;}
#sb-body img{border:none;}
#sb-loading{position:relative;height:100%;}
#sb-loading-inner{position:absolute;font-size:14px;line-height:24px;height:24px;top:50%;margin-top:-12px;width:100%;text-align:center;}
#sb-loading-inner span{background:url(loading.gif) no-repeat;padding-left:34px;display:inline-block;}
#sb-body,#sb-loading{background-color:#060606;}
#sb-title,#sb-info{position:relative;margin:0;padding:0;overflow:hidden;}
#sb-title,#sb-title-inner{height:26px;line-height:26px;}
#sb-title-inner{font-size:16px;}
#sb-info,#sb-info-inner{height:20px;line-height:20px;}
#sb-info-inner{font-size:12px;}
#sb-nav{float:right;height:16px;padding:2px 0;width:45%;}
#sb-nav a{display:block;float:right;height:16px;width:16px;margin-left:3px;cursor:pointer;background-repeat:no-repeat;}
#sb-nav-close{background-image:url(/data/images/close.gif);}
#sb-nav-next{background-image:url(/data/images/icon_next.gif);visibility:hidden;}
#sb-nav-previous{background-image:url();visibility:hidden;}
#sb-nav-play{background-image:url(/data/images/icon_dia.gif);}
#sb-nav-pause{background-image:url(/data/images/icon_pause.gif);}
#sb-counter{
    float:left;
    width:45%;
    margin-left:20px;
}
#sb-counter a{padding:0 4px 0 0;text-decoration:none;cursor:pointer;color:#fff;}
#sb-counter a.sb-counter-current{text-decoration:underline;}
/*div.sb-message{font-size:12px;padding:10px;text-align:center;}*/
/*div.sb-message a:link,div.sb-message a:visited{color:#000;text-decoration:underline;}*/
#sb-nav-close{background-image:url(/data/images/close.gif); position: absolute; top: -3px; right: 0; width:15px; height:15px; cursor:pointer;}









/*----------------------------------------------- Accordion -----------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
#basic-accordion {
    margin: 1em 0 0;
}

  div.accordion_headings {
    display: block;
    background: #f1f1f1 url(/data/images/icon_plus.gif) no-repeat left top;
    padding: 0.1538em 0.6923em 0.2307em 2.2308em;
    cursor: pointer;
    width: auto;
  }
 
*+html div.accordion_headings_right {
    float:right; 
    margin-top:-19px; 
    margin-right:5px;
}
    
  div.header_active {
    background: #f1f1f1 url(/data/images/icon_minus.gif) no-repeat left top;
  }
        
  .accordion_child {
      padding: 0.7692em 0.6923em 0.7692em 2.2308em;
      width: auto;
  }  
  
  .accordian_link {
      background:transparent url(/data/images/listimg.gif) no-repeat scroll left top;
      line-height:1.5em;
       margin:0;
       overflow:hidden;
       padding:0 0 0 0.8333em;
  display:inline-block;
  }



 #teaser div.accordion_headings {
    display: block;
    cursor: pointer;
    color:#506EA0;
    width: auto;
    line-height: 1.5em;
    background:transparent url(/data/images/listimg_teaser.gif) no-repeat scroll top left;
    padding:0 0 0 0.8333em;
  }

 #teaser div.accordion_content {
     margin-left: 0.8333em;
  }

 #teaser div.accordion_content a {
     margin-left: 0.8333em;
  }
  
/*----------------------------------------------- Lebensstil ----------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  a.lebensstil {
      position: relative;
      display: block;
  }
  
  a.lebensstil:focus,
  a.lebensstil:hover,
  a.lebensstil:active {
      color: #000;
    text-decoration: none;
  }
  
  a.lebensstil:focus div.lebensstil_border,
  a.lebensstil:hover div.lebensstil_border,
  a.lebensstil:active div.lebensstil_border {
      display: block;
  }

  a.lebensstil_active div.lebensstil_border {
      display: block;
  }
  
  div.lebensstil_border {
      position: absolute;
    top: 0;
    left: 0;
    width: 18.3846em;
    height: 12.7692em;
    border: 2px solid #DCBE78;
    display: none;
    z-index: 50;
  }
  
/*----------------------------------------- Familienverhältnisse ------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  #familie_auswahl {
      float: left;
    display: inline;
    padding: 0;
    background: #f1f1f1;
  }
  
  #familie_auswahl ul {
      float: left;
    display: inline;
      list-style: none;
    padding: 0;
    margin: 0 3.0769em 0 0;
    width: 16.9231em;
  }
  
  #familie_auswahl ul li {
      float: left;
    display: inline;
    padding: 0.7692em 0 0 2.6923em;
    margin: 0;
    cursor: pointer;
  }
  
  #familie_auswahl ul li p {
      margin: 0;
    text-align: center;
  }
  
  img.familie_auswahl_arrow {
      float: left;
    display: inline;
  }
  
  #familie_felder {
      float: left;
    display: inline;
    border-top: 1px solid #adadad;
    border-right: 1px solid #adadad;
    border-bottom: 1px solid #adadad;
    padding: 0 1.0769em 0 0;
    height: 241px;
  }
  
  #familie_felder ul {
      list-style: none;
    padding: 0;
    margin: 0;
    width: 33.4615em;
  }
  
  #familie_felder ul li {
      float: left;
    display: inline;
    padding: 0.7692em 0 0 1.1538em;
    margin: 0;
  }
  
  #familie_felder ul li.cursor {
      cursor: pointer;
  }
  
  #familie_felder p {
      margin: 1.1538em 0 0.6154em 0;
  }
  
  
/*----------------------------------------------- Interessen ----------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
    ul#interessen {
        margin-bottom: 0;
    }
    ul#interessen li {
        float: left;
        display: inline;
        margin-right: 0.7692em;
        width: 13.2em;
    }
    
    ul#interessen li.last {
        margin-right: 0;
    }
    
    ul#interessen ul {
        float: left;
      margin-bottom: 0;
    }
    
    ul#interessen ul li {
        float: none;
        display: block;
        padding: 0;
        margin: 0;
    }
    
    ul#interessen ul li h5 {
        color: #000;
        font-weight: normal;
        font-size: 100%;
        margin: 0.3333em 0 1.5em 0;
    }
    
    ul#interessen ul li.form_row {
        margin-bottom: 0.2308em;
    }
    ul#interessen ul li img {
        float: left;
        display: inline;
        margin: 0 0.53em 0 0;
    }
    ul#interessen ul li label {
        float: left;
        display: inline;
        margin-top: -3px;
        width: 11.3em;
    }

    ul#interessen ul li span {
        float:left;
        margin-top: -3px;
        width: 11.5em;
    }

    ul#interessen ul li span.highlight,
    .highlight {
        color: #C81428;
    }
    
    
/*----------------------------------------------- Lebensraum ----------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  #lebensraum {
      position: relative;
  }
  
  .gegenstand {
      position: absolute;
    top: 0;
    left: 0;
  }
  
  ul.family_icons,
  ul.family_icons_inactive {
      position: absolute;
      list-style: none;
    top: 6px;
    right: 0.8333em;
    left: auto;
    overflow: hidden;
  }
  
  ul.family_icons li,
  ul.family_icons_inactive li {
      float: left;
      display: inline;
      padding: 0 0 0 0.2222em;
      margin: 0;
      background: none;
  }
  
  ul.family_icons li img {
      display: block;
  }
  
  

/*----------------------------------------------- Carousel ------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
.root {
    position:relative;
    padding: 10px;
    height:            85px;
}
a.close {
    padding: 0 0 0 17px;
    background: url(/data/images/teaser_close.gif) no-repeat left 1px;
}
.scrollContainer {
    top: 0;
    width: 135px;
}
#scrollContainer .scrollContent {
  float:left;
  display: inline;
  margin: 0.8333em 0;
  height: 4.5833em;
  overflow: hidden;
  
}
ul#adress_db li .scrollContent ul {
  padding-left: 0.5em; 
}

ul#adress_db li .scrollContent ul li {
  list-style:none;
  padding: 0pt 0pt 0pt 0.8333em;
  margin: 0;      
  border: none;
  background: url(/data/images/listimg_teaser.gif) no-repeat top left;
}
.thumb {
    position: absolute;
    width: 9px;
    height: 19px;
    left: 10px;
}
#main_content .c25r  .thumb img {
    width: 9px;
    height: 19px;
    margin: 0 2px;
}
.up, .dn {
    position: absolute;
    left: 10px;
    width: 13px;
    height: 13px;
}

.up img, .dn img  {
    width: 13px !important;
    height: 13px;
}

/*------------------------------------------------- Boutique ----------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
  /* Tabs */
  #tabnav {    
      position: relative;
      overflow: hidden;
      padding: 0;
    margin: 0;
    list-style: none;
    z-index: 5;
  }
  
  #tabnav li {
      float: left;
    display: inline;
    padding: 0 0 0 0.6923em;
    margin: 0 0 0 -1px;
    background-image: url(/data/images/tab-corner-l.gif);
    background-repeat: no-repeat;
    background-position: left top;
    background-color: #F1F1F1;
    border-bottom: 1px solid #5A5A5A;
  }
  
  #tabnav li span {
      float: left;
    display: inline;
    padding: 0.1538em 0.7692em 0.2308em 0;
    color: #000;
    text-decoration: none;
    background-image: url(/data/images/tab-corner-r.gif);
    background-repeat: no-repeat;
    background-position: right top;
    background-color: #F1F1F1;
    cursor: pointer;
  }
  
  #tabnav li.first {
      margin-left: 0;
  }
  
  #tabnav li.current {
      background-color: #fff;
    border-bottom: none;
    padding-bottom: 1px;
  }
  
  #tabnav li.current span {
      background-color: #fff;
  }
  
  .tabcontent {
      overflow: hidden;
      padding: 1em 0.6923em;
    margin: -1px 0 0 0;
    /* height: 28.8461em; */
    border-left: 1px solid #5A5A5A;
    border-bottom: 1px solid #5A5A5A;
    background: url(/data/images/tab-corner-r.gif) no-repeat right top;
    z-index: 4;
  }
  
  .tabcontent span.radio {
      display: block;
      overflow: hidden;
    margin: 0;
  }
  
  .tabcontent input.radio,
  .tabcontent input.check {
      float: left;
    display: inline;
    margin: 3px 0.5385em 0 0;
    border: none;
    width: auto;
  }
  
  .tabcontent .c33l .radio label,
  .tabcontent .c33r .radio label {
      float: left;
    display: inline;
    width: 16em;
  }

 .lebensart_title {
        position: absolute;
        margin-top: 10px;
        width: 100%;
        z-index: 10;
    }
    
    #main_content h2.replace,
    #main_content h3.replace {
        color: #fff;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    #main_content h2.type_3 {
        font-size: 48px;
        margin-top: 20px;
    }

    #main_content h3.type_3 {
        font-size: 18px;
        margin-top: 9px;
    }
    
    #main_content h2.type_5 {
        font-size: 42px;
        margin-top: 18px;
    }
    #main_content h3.type_5 {
        font-size: 16px;
        margin-top: 5px;
    }
    
    #main_content h2.type_4 {
        font-size: 52px;
        margin-top: 20px;
    }

    #main_content h3.type_4 {
        font-size: 20px;
        margin-top: 6px;
    }
    
    #main_content h2.type_1 {
        font-size: 54px;
        margin-top: 8px;
    }

    #main_content h3.type_1{
        font-size: 18px;
    }
    
    #main_content h2.type_2 {
        font-size: 52px;
        margin-top: 16px;
    }

    #main_content h3.type_2 {
        font-size: 18px;
    }

    #main_content h2.type_6 {
        font-size: 50px;
        margin-top: 20px;
    }

    #main_content h3.type_6 {
        font-size: 20px;
        margin-top: 5px;
    }

  .login_warning {background: #fdd; display:block; padding: 0.5em; border: 1px #dbb dotted; text-align:center;}


   /*--------------------------------------------- RedDots ---------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/   
  .RedDot {     
    color: #ff0000; 
    padding: 0.3em;
    margin: 0.5385em 0 0.5385em 0;
    display: block;
    background-color: #ffffcc;
}

  .RedDot img {  
    display: inline !important;
    border: 0 !important;
    width: auto !important;
    margin: 0;
    padding: 0;
}

  .RedDotSmall {     
    color: #ff0000; 
    padding: 0.3em;
    margin: 0.5385em 0 0.5385em 0;
    display: inline;
    background-color: #ffffcc;
}

  .RedDotDot, .RedDotDotSmall  {     
    color: #ff0000; 
    padding: 0;
    margin: 0;
    display: inline;
    float: left !important;
    background-color: transparent !important;
}


.RedDotDot img {     
    display: inline !important;
    border: 0 !important;
    width: auto !important;
    margin: 0;
    padding: 0;
}

.RedDotDotSmall img {     
    display: inline !important;
    border: 0 !important;
    width: auto !important;
    float: left;
    margin: 0;
    padding: 0;
}


.lang_nav_admin {
    width: 9.5em;
    margin-bottom: 2em;
}

.window {
    width: 43em;
}
h1, h2, h3, h4, h5, h6{
    font-size: 100%;
    /*font-weight:bold;*/
}
#searchbutton {
   float: left;
   margin-top: -3px;
}

.searchfield {
    float: left;
}

.highlighted {
    color: green;
}
/*------------------------------------------- Administration ----------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/


#content_admin a.helpitem {
    color: #000000;
    text-decoration: none;
}
#content_admin .teasersection {
    width: 160px;
    border: 1px solid #000;
    padding: 5px;
    background: #F1F1F1 none repeat scroll 0 0;
    height: auto;
}
#content_admin {
    margin-top: 1.8em;
    padding-left: 50px;
   width: 800px;
}
#page_margins_admin {  
     width: 90em; 
     background: #fff; 
}
#col1.admin {
    margin-top:10px;
    width: 16.6666em;
}
#logoadmin img {
    width:auto; 
    margin-left:auto; 
    margin-right:auto;
}

* + html  #page_margins_admin #col3 {
    position: static;
}

/*------------------------------------------- Sitemap -----------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/

ul#sitemap div.accordion_headings {
    background: #ffffff url(/data/images/icon_plus_text.gif) no-repeat;
    background-position: 0 0.5em; 
    padding: 0 0 0 0.9em; 
    margin: 0;
}

ul#sitemap div.header_active {
   background: #ffffff url(/data/images/icon_open_text.gif) no-repeat;
    background-position: 0 0.5em; 
}

ul#sitemap li {
    background: #ffffff url(/data/images/icon_minus_text.gif) no-repeat;
    background-position: 0 0.5em;
}

ul#sitemap div.accordion_child {
    padding: 0 0 0 1.5em;
}

ul#sitemap li.noimg {
    background-image: none;
    padding: 0;
}

ul#sitemap ul {
    margin: 0;
}

 /*----------------------------------------- Start-Folgeseiten --------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/

#main_content ul.subcolumns li.c33l img.mainteaserimg, #main_content ul.subcolumns li.c33r img.mainteaserimg {
    border:1px solid #fff;
    margin:0 0 0.8333em;
    width: 13.3333em;
}

ul.subcolumns li.mainteaser {
    margin-bottom: 2.6154em;
}

.mainteaser {
    margin-bottom: 22px;
    padding: 10px;
}

.mainteaser a.more {
    bottom:22px;
    position:absolute;
}
.equalize .subcl, 
.equalize .subcr, 
.equalize .subc {
    margin-bottom: -100em;
    padding-bottom: 100em;
}
.equalize .c33l .subcl {
    padding-right: 0;
    margin-right: 0.5833em;
}
.equalize .c33l .subc {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0.25em;
    margin-right: 0.25em;
}
.equalize .c33r .subcr {
    padding-left: 0;
    margin-left: 0.5833em;
}

.equalize .c25l .subcl {
    padding-right: 0;
    margin-right: 0.5833em;
}

.equalize .c50l .subc {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0.25em;
    margin-right: 0.25em;
}
.equalize .c25r .subcr {
    padding-left: 0;
    margin-left: 0.5833em;
}
.equalize .img {
    border: 1px solid #fff;
    overflow: hidden;
    margin-bottom: 0.8333em;
    overflow: hidden;
    width: auto;
}
.equalize .img img {
    width: 100% !important;
    border: 0 !important;
    margin: 0 !important;
    float: left;
}

#notfall {
    color: #be0000;
    padding: 0.4em;
    border-top: 2px dotted #8C8C8C;
    border-bottom: 2px dotted #8C8C8C;
    margin-bottom: 1em;
}

li.notfall {
    list-style-type: none;
    background-image: none;
    padding: 0;
}




/*-------------------------------------------- Tandem Tours --------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
    a.detaillink {
        display: block;
        margin-top: 0.5em;
    }
    
    ul.tandem_angebote {
        padding: 0 0 1.25em 0;
        margin: 0 0 1.25em 0;
        border-bottom: 1px solid #B5B5B5;
    }

    ul.tandem_angebote li {
        padding: 0;
        margin: 0;
        background: 0;
    }
    
    ul.tandem_angebote li.line {
        border-bottom:1px solid #B5B5B5; 
        margin-bottom: 2.5em;
    }

    .tandem_accordian {
        clear: left;
        width: 46.6667em;
        margin-bottom: 0.8333em;
        margin-left: -0.8333em;
    }
    .tandem_accordian div.accordion_headings {
        padding: 0.1667em 0.75em 0.25em 2.4167em;
    }
    .tandem_accordian .accontent {
        background: #F1F1F1;
    }
    .tandem_accordian .accordion_child {
        padding-left: 0.8333em;
        padding-right: 0.8333em;
        padding-bottom: 0;
    }
    ul#adress_db li .tandem_accordian .accordion_child ul {
        margin: 0;
    }
    ul#adress_db li .tandem_accordian .accordion_child ul li {
        padding-left: 0;
        padding-right: 0;
    }
    ul#adress_db li .tandem_accordian .accordion_child ul li.first {
        border: none;
    }
    ul#adress_db li .tandem_accordian .accordion_child ul li .c1l {
        float: left;
        width: 180px;
    }
    ul#adress_db li .tandem_accordian .accordion_child ul li .c2l {
        float: left;
        width: 355px;
    }
    
    .ttbatch_wrapper {
        position: relative;
    }
    
   div.tt_batch {
        position: absolute;
        top: 4px;
        left: 4px;
        width: 30px;
        height: 20px;
        background: url(/data/images/tt_batch.gif) no-repeat left top;
    }

  #main_content h6.tt, #dbteaser h6.tt  { 
     background: url(/data/images/tt_batch.gif) no-repeat left top; 
     padding-left: 27px; 
     line-height: 1.6667em; 
     margin-top: 0; 
}

/*----------------------------------------------- Datepicker ----------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
/* This is a very basic stylesheet for the date-picker. Feel free to create your own. */
/* Hide the input by using a className */
input.fd-hidden-input,
select.fd-hidden-input
        {
        display:none;
        }
/* Screen reader class - hides it from the visual display */
.fd-screen-reader
        {
        position:absolute;
        left:-999em;
        top:0;
        width:1px;
        height:1px;
        overflow:hidden; 
        outline: 0 none;
    -moz-outline: 0 none;
        } 
/* Disabled datePicker and activation button */
a.dp-disabled,
.dp-disabled table
        {
        opacity:.3 !important;           
        filter:alpha(opacity=40);           
        }
.dp-disabled,
.dp-disabled td,
.dp-disabled th,
.dp-disabled th span
        {
        cursor:default !important;          
        }
a.date-picker-control:focus,
div.datePicker table td:focus 
        {
        overflow:hidden;
        outline:0 none;
    -moz-outline: 0 none;
    color:rgb(100,130,170) !important;
        }
/* The wrapper div */
div.datePicker
        {
        position:absolute;        
        z-index:9999;
        text-align:center;
        /* Change the font-size to suit your design's CSS. The following line is for the demo that has a 12px font-size defined on the body tag */
        font:900 0.8em/1em Verdana, Sans-Serif;
        /* For Example: If using the YUI font CSS, uncomment the following line to get a 10px font-size within the datePicker */
        /* font:900 77%/77% Verdana, sans-serif; */
        
        /* Or, if you prefer a pixel precision */
        /* font:900 12px/12px Verdana, sans-serif; */
        
        background:transparent;
        /* Mozilla & Webkit extensions to stop text-selection. */
        -moz-user-select:none;
        -khtml-user-select:none;                 
        }  
/* Styles for the static datePickers */
div.static-datepicker
        {
        position:relative;        
        top:5px;
        left:0;
        }
div.datePicker table
        {
        width:auto;
        height:auto;         
        } 
/* Draggable datepickers */
div.datePicker tfoot th.drag-enabled,
div.datePicker thead th.drag-enabled,
div.datePicker thead th.drag-enabled span
        {
        cursor:move;
        }
/* The iframe hack to cover selectlists in Internet Explorer <= v6 */
iframe.iehack
        {
        position:absolute;
        background:#fff;
        z-index:9998;
        padding:0;
        border:0;
        display:none;
        margin:0;
        }
/* The "button" created beside each input for non-static datePickers */
a.date-picker-control,
a.date-picker-control:link,
a.date-picker-control:visited,
a.date-picker-control:hover,
a.date-picker-control:active,
a.date-picker-control:focus,
a.dp-button-active:link,
a.dp-button-active:visited,
a.dp-button-active:hover,
a.dp-button-active:active,
a.dp-button-active:focus
        {
        position:relative;
        /* Moz & FF */
        display: -moz-inline-stack;
        border:0 none;
        margin:0;
        padding:0.0769em 0 0 0.3846em;
        background:transparent url(/data/images/cal-grey.gif) no-repeat 50% 50%;
        min-width:16px;
        line-height:1;
        cursor:pointer;
        visibility:visible;
        text-decoration:none;
        vertical-align:top;
        overflow: hidden;
        }

/* Feed IE6 the following rule, IE7 should handle the min-width declared above */
* html a.date-picker-control
        {
        width:16px;
        }
/* IE, Safari & Opera. Seperate CSS rule seems to be required. */
a.date-picker-control
        {
        display:inline-block;
        }
a.date-picker-control span
        {
        display:block;
        width:16px;
        height:16px;
        margin:auto 0;
        }
/* Default "button" styles */
div.datePicker thead th span
        {
        display:block;
        padding:0;
        margin:0;
        text-align:center;
        line-height:1em;
        border:0 none;
        background:transparent;
        font-weight:bold;
        cursor:pointer;
        }
/* The "month, year" display */
div.datePicker th span.month-display,
div.datePicker th span.year-display
        {
        display:inline;
        text-transform:uppercase;
        letter-spacing:1px;
        font:normal 1.2em Verdana, Sans-Serif;
        cursor:default;          
        }
/* Next & Previous (month, year) buttons */
div.datePicker th span.prev-but,
div.datePicker th span.next-but
        {
        font-weight:lighter;
        font-size:2.4em;
        font-family: georgia, times new roman, palatino, times, bookman, serif;
        cursor:pointer !important;
        }
/* Hover effect for Next & Previous (month, year) buttons */
div.datePicker th span.prev-but:hover,
div.datePicker th span.next-but:hover,
div.datePicker th span.today-but:hover
        {
        color:#a84444;
        }
/* Today button */
div.datePicker th span.today-but
        {
        text-align:center;
        margin:0 auto;
        font:normal 1em Verdana, Sans-Serif;
        width:100%;
        text-decoration:none;
        padding-top:0.3em;
        text-transform:uppercase;
        vertical-align:middle;
        cursor:pointer !important          
        }
/* Disabled buttons */ 
div.dp-disabled th span.prev-but,
div.dp-disabled th span.next-but,
div.dp-disabled th span.today-but,
div.dp-disabled th span.prev-but:hover,
div.dp-disabled th span.next-but:hover,
div.dp-disabled th span.today-but:hover,
div.datePicker th span.prev-but.fd-disabled:hover,
div.datePicker th span.next-but.fd-disabled:hover,
div.datePicker thead th span.fd-disabled,
div.datePicker th span.fd-disabled:hover
        {
        color:#aaa;
        cursor:default !important;         
        }   
/* The mon, tue, wed etc day buttons */
div.datePicker th span.fd-day-header
        {
        text-align:center;
        margin:0 auto;
        font:900 1em Verdana, Sans-Serif;
        text-decoration:none;
        text-transform:lowercase;
        cursor:pointer;          
        }
/* The table */
div.datePicker table
        {               
        margin:0;
        padding:0px;
        border:1px solid #ccc;        
        background:#fff url(/data/images/gradient-e5e5e5-ffffff.gif) repeat-x 0 -20px;
        text-align:center;
        border-spacing:2px;
        padding:0.3em; 
        width:auto;             
        empty-cells:show;               
        -moz-border-radius:0.8em;
        border-radius:0.8em;        
        }
/* Common TD & TH styling */
div.datePicker table td,
div.datePicker table tbody th
        {                 
        border:0 none;
        padding:0;
        text-align:center;
        vertical-align:middle;               
        cursor:pointer;
        background:#fff url(/data/images/gradient-e5e5e5-ffffff.gif) repeat-x 0 -40px;
        width:3em;
        height:3em;   
        overflow:hidden;      
        outline:transparent none 0px;        
        border:1px solid #ccc;
        text-transform:none;         
        -moz-border-radius:2px;         
        border-radius:2px;
        }
div.datePicker table td:focus,
div.datePicker table td:active
        {
        outline:0 none red;
        }
div.datePicker table th
        {
        border:0 none;
        padding:0;        
        font-weight:bold;
        color:#222;
        text-align:center;
        vertical-align:middle; 
        text-transform:none;        
        }
div.datePicker table thead th
        {
        height:auto !important;
        }
div.datePicker table tbody th
        {                          
        border:1px solid #dcdcdc;        
        }
/* Week number display */
div.datePicker table thead th.date-picker-week-header,
div.datePicker table tbody th.date-picker-week-header
        {
        font-style:oblique;  
        background:transparent;
        cursor:default;         
        }
div.datePicker table thead th.date-picker-week-header
        {
        cursor:help;
        border:0 none;
        padding:0 0 0.2em 0;
        }
/* tfoot status bar */
div.datePicker tfoot th
        {
        cursor:default;
        font-weight:normal;
        text-transform:uppercase;
        letter-spacing:0.1em;
        border:0 none;
        background:#fff;
        height:2.8em;
        }
/* TD cell that is _not_ used to display a day of the month */
div.datePicker table tbody td.date-picker-unused
        {
        background:#fff url(/data/images/backstripes.gif);
        border-color:#dcdcdc;          
        cursor:default !important;
        }
/* The TH cell used to display the "month, year" title */
div.datePicker table thead th.date-picker-title
        {
        width:auto;
        height:auto;
        padding:0.4em 0;
        }
/* The "mon tue wed etc" day header styles */
div.datePicker table thead th.date-picker-day-header
        {
        text-transform:lowercase;
        cursor:help;
        height:auto;
        }
/* The "todays date" style */
div.datePicker table tbody td.date-picker-today
        {
        background:#fff url(/data/images/bullet2.gif) no-repeat 0 0;
        color:rgb(100,100,100) !important;
        }
div.datePicker table tbody td.month-out.date-picker-highlight 
        {
        color:#aa8866 !important;
        }
/* The "highlight days" style */
div.datePicker table tbody td.date-picker-highlight,
div.datePicker table thead th.date-picker-highlight
        {
        color:#a86666 !important;
        }
/* The "active cursor" style */
div.datePicker table tbody td.date-picker-hover
        {
        background:#fff url(/data/images/bg_header.jpg) no-repeat 0 0;
        cursor:pointer;
        border-color:rgb(100,130,170) !important;
        color:rgb(100,130,170); 
        text-shadow: 0px 1px 1px #fff;                
        }
/* The "disabled days" style */
div.datePicker table tbody td.day-disabled
        {          
        background:#fff url(/data/images/backstripes.gif) no-repeat 0 0;
        color:#aaa !important;
        cursor:default;
        text-decoration:line-through;
        } 
div.datePicker table tbody td.month-out 
        {
        border-color:#ddd;
        color:#aaa !important;
        background:#fff url(/data/images/gradient-e5e5e5-ffffff.gif) repeat-x 0 -40px;                             
        } 
/* The "selected date" style */
div.datePicker table tbody td.date-picker-selected-date
        {
        color:#333 !important;
        border-color:#333 !important;
        }
/* The date "out of range" style */
div.datePicker table tbody td.out-of-range,
div.datePicker table tbody td.not-selectable
        {           
        color:#ccc !important;
        font-style:oblique;
        background:#fcfcfc !important;
        cursor:default !important;              
        } 
/* Week number "out of range" && "month-out" styles */
div.datePicker table tbody th.month-out,
div.datePicker table tbody th.out-of-range
        {
        color:#aaa !important;
        font-style:oblique;
        background:#fcfcfc !important;          
        }
/* week numbers "out of range" */
div.datePicker table tbody th.out-of-range
        {
        opacity:0.6;
        filter:alpha(opacity=60);
        }  
/* Used when the entire grid is full but the next/prev months dates cannot be selected */
div.datePicker table tbody td.not-selectable
        {         
        opacity:0.8;
        filter:alpha(opacity=80);        
        }
div.datePicker table tbody tr
        {
        display:table-row;
        }
div.datePicker table tfoot sup
        {
        font-size:0.86em;
        letter-spacing:normal;
        text-transform:none;
        height: 0;
    line-height: 1;
    position: relative;
    top: -0.2em;    
    vertical-align: baseline !important;
    vertical-align: top;  
        }
div.datePicker table thead th.date-picker-day-header,
div.datePicker table thead span.month-display,
div.datePicker table thead span.year-display
        {            
        text-shadow: 0px 1px 1px #fff;                            
        }
/* You can add focus effects (for everything but IE6) like so: */
div.datepicker-focus
        {
        /* Naughty, naughty - but we add a highlight using the table's border colour */
        outline:none;
        }
div.datepicker-focus table.datePickerTable
        {
        border-color:#999 !important;         
        }
div.datePicker table tbody tr td:focus 
        {
        overflow:hidden;
        outline:0 none;
    -moz-outline: 0 none;
    color:rgb(100,130,170) !important;    
        }
/* INTERNET EXPLORER WOES
   ======================
   
   Hover Effects
   -------------
   
   IE cannot deal with :focus on the TR so the datePicker script adds the class "dp-row-highlight" to the
   row currently being hovered over. This should enable you to add hover effects if desired.
   
   e.g. the following rule will highlight the cell borders in another colour when a row is moused over,
   it looks like crap though so I didn't include the rule within the demo:
   
div.datePicker table tbody tr.dp-row-highlight td
        {
        border-color:#aaa;
        }
*/
/* Remove the images for Internet Explorer <= v6 using the "* html" hack  
   This is a workaround for a nasty IE6 bug that never caches background images on dynamically created DOM nodes
   which means that they are downloaded for every cell for every table - nasty! */    
* html div.datePicker table td
        {
        background-image:none;
        }
* html div.datePicker table td.date-picker-unused
        {
        background:#f2f2f2;
        }
/* Chrome has problems with the -webkit-box-shadow and -webkit-border-radius styles together 
   Remove one or the other to get things looking less ugly */       
@media screen and (-webkit-min-device-pixel-ratio:0) {
        div.datePicker table
                {
                border-spacing:0.3em;
                /* Naughty, naughty */
                -webkit-box-shadow:0px 0px 5px #aaa;                 
                -webkit-border-radius:0.8em;                
                }          
        div.static-datepicker table
                {
                -webkit-box-shadow:0 0 0 transparent;
                }
        div.static-datepicker:focus table
                {
                -webkit-box-shadow:0px 0px 5px #aaa;
                }
        div.datePicker table td,
        div.datePicker table tbody th
                {
                padding:0.1em;
                -webkit-border-radius:2px;
                }
        div.datePicker table tbody td.date-picker-hover
                {                
                -webkit-box-shadow:0px 0px 1px rgb(100,130,170);
                }       
}
/* Untested webkit rules for fading out the disabled buttons - fingers crossed */
@-webkit-keyframes fadeout {
        to {                           
                opacity: 0.4;                         
        }                 
        from {
                opacity: 1.0;
                color:#222;
        }
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
        div.datePicker table thead th span.fd-disabled {                              
                -webkit-animation-name: fadeout;
                -webkit-animation-duration: 3s;
                -webkit-animation-timing-function: ease-in-out;
        }
} 

/*-------------------------------------- Trailer Replacement ----------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/

#FlashTrailersReplacement {
    width: 750px;
    height: 500px;
    margin: 0;
}

#FlashTrailersReplacement h1, #FlashTrailersReplacement h3 {
    text-indent: -5000px;
    margin: 0;
    padding: 0;
}

#FlashTrailersReplacement ul {
    list-style: none;    
    margin: -10px 25px 0px 25px;
    padding: 0;
}

#FlashTrailersReplacement ul li {
    overflow: visible;
}

#FlashTrailersReplacement ul li a {
    width: 295px;
    height: 25px;
    margin: 0;
    padding: 0;
    text-indent: -5000px;
    white-space: nowrap;
    clear: none;    
    display: block;
    background-position: left top;    
    background-repeat: no-repeat;
}

#FlashTrailersReplacement ul li.known a {
    float: left;
}

#FlashTrailersReplacement ul li.unknown a {
    float: right;
    margin-top: 0px;
}

* + html #FlashTrailersReplacement ul li.unknown a {
    margin-top: -20px;
}

* html #FlashTrailersReplacement ul li.unknown a {
    margin-top: -20px;
}

#FlashTrailersReplacement ul li a:hover {
    background-position: left bottom;
}

/*-------------------------------------- Trailer Replacement Intro ----------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/

#FlashTrailersReplacement.intro {
    width: 750px;
    height: 500px;
    margin: 0;
}

#FlashTrailersReplacement.intro h1, #FlashTrailersReplacement.intro h3 {
    text-indent: -5000px;
    margin: 0;
    padding: 0;
}

#FlashTrailersReplacement.intro ul {
    list-style: none;    
    margin: 0;
    padding: 20px 0 0 0;
}

#FlashTrailersReplacement.intro ul li a {
    width: 310px;
    height: 25px;
    margin: 0;
    padding: 0;
    text-indent: -5000px;
    white-space: nowrap;
    clear: none;    
    display: block;
    float:left;
    background-position: left top;    
    background-repeat: no-repeat;
}

#FlashTrailersReplacement.intro ul li.btnleft a {
    margin: 0 90px 0 20px;
}

#FlashTrailersReplacement.intro ul li.btnleft_3buttons a {
    width: 210px;
    margin: 0 10px 0 20px;
}

#FlashTrailersReplacement.intro ul li.btnmiddle_3buttons a {
    width: 210px;
    margin: 0 10px 0 0;
}

#FlashTrailersReplacement.intro ul li.btnright a {
}

#FlashTrailersReplacement.intro ul li.btnright_3buttons a {
    width: 270px;
}

* + html #FlashTrailersReplacement.intro ul li.btnright a {
    margin-top: -20px;
}
* html #FlashTrailersReplacement.intro ul li.btnright a {
    margin-top: -20px;
}

#FlashTrailersReplacement.intro ul li a:hover {
    background-position: left bottom;
}

#introform {
    margin-top: 10px;
}

/*---------------------------------------------- Season --------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
.season, div.season 
{
   border-right: 1px solid white; 
   width: 24.19%;
   float: left;
   padding: 0 0.4166em 0 0;  
   cursor:pointer;
}
div.season.inactive {
  background: #D2D7D2;
}
             
.season_img {
     float: left;
}
.season_img img{
    width:37px;
    height:32px;
}
.season_text{
   padding-top:8px;
   color:#000000;
   font-weight: bold; 
   margin-bottom:10px;
}
.season.active .subcl_season .season_text{
  color:#ffffff;
  font-weight: bold;
}
.hgfseason {
  background: #D2D7D2;
}

.season_texts{
    width:99.8%;
    margin-bottom:10px;
}

#season1_text,
#season2_text,
#season3_text,
#season4_text {
    color: #FFFFFF;
    padding:1.5em 0.5em;
    margin-bottom:0px;
}

/*---------------------------------------------- AddThis --------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
div.addthis_toolbox a.external {
    background-image:none;
}

div.addthis_toolbox a.addthis_button_facebook_like {
    background-image:none;
}

/*
   Quirksmode necessity?
   ---------------------
   If your HTML document renders in quirksmode (i.e. has no doctype declaration)
   then uncomment the following CSS rule to set a less drastic font-size in IE
div.datePicker table th,
div.datePicker table td
        {
        font-size:100%;
        }
*/
 
/* closing bracket for @media -> see opening bracket in custom-nav.css */
}
 
/*---------------------------------------- Map quickselect ----------------------------------------------*/
.overview{
padding-bottom:10px;
}

/*--------------------------------------- Text colors -------------------------------*/
.text_black{
color:#000000;
}

.text_white{
color:#FFFFFF;
}

.text_blue{
color:#506EA0;
}
/* import further styles | Weitere Styles einbinden */

