﻿@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" for Drupal
 *
 * (en) Uniform design of standard content elements
 * (de) Einheitliche Standardformatierungen für die wichtigten Inhalts-Elemente
 *
 * @copyright       Copyright 2006-2010, Alexander Hass
 * @license         http://www.yaml-fuer-drupal.de/en/terms-of-use
 * @link            http://www.yaml-for-drupal.com
 * @package         yaml-for-drupal
 * @version         6.x-3.2.1.13
 * @lastmodified    2010-05-14
 */


@media all
{
 /**
  * Fonts
  *
  * (en) global settings of font-families and font-sizes
  * (de) Globale Einstellungen für Zeichensatz und Schriftgrößen
  *
  * @section content-global-settings
  */

  /* (en) reset font size for all elements to standard (16 Pixel) */
  /* (de) Alle Schriftgrößen auf Standardgröße (16 Pixel) zurücksetzen */
  html * { font-size: 100.01%; }

 /**
  * (en) reset monospaced elements to font size 16px in all browsers
  * (de) Schriftgröße von monospaced Elemente in allen Browsern auf 16 Pixel setzen
  *
  * @see: http://webkit.org/blog/67/strange-medium/
  */

  textarea, pre, code, kbd, samp, var, tt {
    font-family: Verdana, Arial;
  }

  /* (en) Drupal form elements */
  /* (de) Drupal Formular Elemente */
  input.form-file, input.form-text, textarea.form-textarea, select.form-select {
    font-family:Verdana, Arial;
  }

  /* (en) base layout gets standard font size 12px */
  /* (de) Basis-Layout erhält Standardschriftgröße von 12 Pixeln */
  body {
    font-family:Verdana, Arial;
    font-size: 81.25%;
    color: #444;}
  body.admin-menu {
    margin-top:0!important;
  }
#admin-menu ul a {
    border-bottom: medium none;
    border-right: 1px solid #323232;
    color: #EEEEEE;
    display: block;
    font-weight: normal;
    padding: 2px 8px;
    text-align: left;
    text-decoration: none;
}
#admin-menu ul a img {
    height:12px!important
}
  /* --- Headings | Überschriften ------------------------------------------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-family:Verdana, Arial;
    font-weight: normal;
    color: #222;
    margin: 0 0 0.25em 0;
  }

  h1 { font-size: 26px !important; }                       /* 30px */
  h2 { font-size: 200%; }                       /* 24px */
  h3 { font-size: 150%; }                       /* 18px */
  h4 { font-size: 133.33%; }                    /* 16px */
  h5 { font-size: 116.67%; }                    /* 14px */
  h6 { font-size: 116.67%; }                    /* 14px */

  /* --- Lists | Listen  -------------------------------------------------------------------------------- */

  ul, ol, dl { line-height: 1.5em; margin: 0 0 1em 1em; }
  ul { list-style-type: disc; }
  ul ul { list-style-type: circle; margin-bottom: 0; }

  ol { list-style-type: decimal; }
  ol ol { list-style-type: lower-latin; margin-bottom: 0; }

  li { margin-left: 0.8em; line-height: 1.5em; }

  dt { font-weight: bold; }
  dd { margin: 0 0 1em 0.8em; }

  /* --- general text formatting | Allgemeine Textauszeichnung ------------------------------------------ */

  p { line-height: 1.5em; margin: 0 0 1em 0; }

  blockquote, cite, q {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
  }
  blockquote { margin: 0 0 1em 1.6em; color: #666; }

  strong,b { font-weight: bold; }
  em,i { font-style: italic; }

  big { font-size: 116.667%; }
  small { font-size: 91.667%; }
 
  pre { line-height: 1.5em; margin: 0 0 1em 0; }
  pre, code, kbd, tt, samp, var { font-size: 100%; }
  pre, code { color: #800; }
  kbd, samp, var, tt { color:#666; font-weight:bold; }
  var, dfn { font-style: italic; }

  acronym, abbr {
    border-bottom: 1px #aaa dotted;
    font-variant: small-caps;
    letter-spacing: .07em;
    cursor: help;
  }

  sub, sup { font-size: 91.6667%; line-height: 0; }

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

  /* --- Links ----------------------------------------------------------------------------------------- */

  a { color: #4D87C7; background: transparent; text-decoration: none; }
  a:visited  { color: #036; }

  /* (en) maximum constrast for tab focus - change with great care */
  /* (en) Maximaler Kontrast für Tab Focus - Ändern Sie diese Regel mit Bedacht */
  a:focus { text-decoration: underline; color: #000; background: #fff;  }
  a:hover,
  a:active { color: #182E7A; text-decoration: underline; outline: 0 none; }

  /* --- images (with optional captions) | Bilder (mit optionaler Bildunterschrift) ------------------ */

  p.icaption_left { float: left; display:inline; margin: 0 1em 0.15em 0; }
  p.icaption_right { float: right; display:inline; margin: 0 0 0.15em 1em; }

  p.icaption_left img,
  p.icaption_right img { padding: 0; border: 1px #888 solid; }

  p.icaption_left strong,
  p.icaption_right strong { display: block; overflow: hidden; margin-top: 2px; padding: 0.3em 0.5em; background: #eee; font-weight: normal; font-size: 91.667%; }

 /**
  * ------------------------------------------------------------------------------------------------- #
  *
  * Generic Content Classes for Drupal
  *
  * (en) standard classes for positioning and highlighting
  * (de) Standardklassen zur Positionierung und Hervorhebung
  *
  * @section content-generic-classes
  */

  .content .highlight { color: #c30; }
  .content .dimmed { color: #888; }

  .content .info { background: #f8f8f8; color: #666; padding: 10px; margin-bottom: 0.5em; font-size: 91.7%; }

  .content .note { background: #efe; color: #040; border: 2px #484 solid; padding: 10px; margin-bottom: 1em; }
  .content .important { background: #ffe; color: #440; border: 2px #884 solid; padding: 10px; margin-bottom: 1em; }
  .content .warning { background: #fee; color: #400; border: 2px #844 solid; padding: 10px; margin-bottom: 1em; }

  .content .float_left { float: left; display: inline; margin-right: 1em; margin-bottom: 0.15em; }
  .content .float_right { float: right; display: inline; margin-left: 1em; margin-bottom: 0.15em; }
  .content .center { display: block; text-align: center; margin: 0.5em auto; }

 /**
  * ------------------------------------------------------------------------------------------------- #
  *
  * Tables | Tabellen
  *
  * (en) Generic classes for table-width and design definition
  * (de) Generische Klassen für die Tabellenbreite und Gestaltungsvorschriften für Tabellen
  *
  * @section content-tables
  */

  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0.5em;
    /*
    border-top: 2px #888 solid;
    border-bottom: 2px #888 solid;
    */
  }
  table caption { font-variant: small-caps; }
  table.auto { width: auto; }
  table.fixed { table-layout: fixed; }

  th, td { padding: .3em .5em; }
  /*
  th,td { padding: 0.5em; }
  thead th { color: #000; border-bottom: 2px #800 solid; }
  tbody th { background: #e0e0e0; color: #333; }
  tbody th[scope="row"], tbody th.sub { background: #f0f0f0; }

  tbody th { border-bottom: 1px solid #fff; text-align: left; }
  tbody td { border-bottom: 1px solid #eee; }

  tbody tr:hover th[scope="row"],
  tbody tr:hover tbody th.sub { background: #f0e8e8; }
  tbody tr:hover td { background: #fff8f8; }
  */

 /**
  * ------------------------------------------------------------------------------------------------- #
  *
  * Miscellaneous | Sonstiges
  *
  * @section content-misc
  */

 /**
  * (en) Emphasizing external Hyperlinks via CSS
  * (de) Hervorhebung externer Hyperlinks mit CSS
  *
  * @section             content-external-links
  * @app-yaml-default    disabled
  */

  /*
  #main a[href^="http://www.my-domain.com"],
  #main a[href^="https://www.my-domain.com"]
  {
    padding-left: 12px;
    background-image: url('your_image.gif');
    background-repeat: no-repeat;
    background-position: 0 0.45em;
  }
  */

#col1 {
margin-left:-230px;
width:230px;
}
  #col1_inside td {width: 100%!important}
  div.tabs {left:750px;position:absolute;width:150px;}
  div.tabs ul li {display: block}
#col3_content {padding:0;padding-top:45px;}
.node .content, .comment .content {padding:0;}

  /* Eigene Styles */
    .page, .page_margins, #header,  #main {background: none;padding:0;color:#4f3410}
    body {background: transparent url(/themes/yaml/images/background_all.jpg) repeat-x; background-color:  #dac39f;padding:0;margin: 0;}
    #nav-bar {font-size:11px;height:20px;margin-top:86px;}
    #site-logo {margin:0 15px 0 0;}
    #nav-bar .breadcrumb {color: #4e310b;float:left;padding:0.25em 0 0.4em 1em;margin-right: 5px;letter-spacing: -1px;}
    #nav-bar p, #nav-bar .breadcrumb a, #nav-bar .breadcrumb a:visited, #nav-bar .breadcrumb a:hover{color: #4e310b!important;}
    #nav-bar p{padding-top:3px;}
    #nav-bar {border-bottom:1px solid #725630;}
    .note .meta {display: none}
    h1, h2 {color: #4F3410;font-family: times new roman;font-size: 24px;font-weight: bolder;margin-bottom: 15px;}
    .panel-col-last h3 {color: #4F3410;display: block !important;font-size: 14px;font-weight: bolder;margin-bottom: 15px;}    
    #admin-menu li{display:inline}
#admin-menu li.expandable, #admin-menu li.admin-menu-tab, #admin-menu li ul, #admin-menu li ul li {display:inline}
.cke_dialog_background_cover {display:none}
 .panel-panel .Newsbox p, .panel-panel .Newsbox a{color:#4F3410!important}
 #block-block-1{border: 1px dotted #4F3410;
    font-size: 14px;
    font-weight: bold;
    height: 14px;
    padding: 5px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 75px;
    width: 304px;}
 #block-block-1 h3{display:none;}
.Newsbox{padding:65px 65px 0 65px;background:url("/themes/yaml/images/bg_newsbox.jpg") -10px 0 no-repeat;margin-top:-10px;margin-bottom:20px;color:#4F3410!important}
 .Newsboxbottom{background:url("/themes/yaml/images/newsbox2.png") no-repeat;height:80px;width:980px;margin:20px -65px 0 -65px}
 .Newsbox object, .Newsbox embed{height: 60px !important;margin: -70px 0 0 -10px !important;width: 315px !important;}
 #crime h2 {font-size:21px!important}
 
/* hauptnav */
#header #block-menu-primary-links h3, #nav, #block-locale-0 h3{display: none!important}
#header #block-menu-primary-links {position: absolute;left: 0;top:114px;margin:0;border: none}
#header ul.menu li{text-align: center;background: none;clear:none;height:54px;border: none;float: left;width:auto}
#header ul.menu li a{text-decoration:none!important;display:block;text-align: center;margin-right:6px;text-align: center;padding-top:7px;padding-left:7px;padding-right:7px;height:44px;color: #fff; text-transform: uppercase;font-weight: bold;font-size: 14px;border: none;background: none}
#header table.menu li.first a{padding-top:16px;height:39px}
#header ul.menu {border:0 none;list-style-type:none;margin:0;overflow:hidden;padding:0;width:100%;}
#header ul.menu li {margin:0;padding:0;}
#header ul.menu  {border:none;}
#header ul.menu li a#home, #header ul.menu li a#home.active{padding-top:16px!important;width:52px;}
#header ul.menu li a#home_fr, #header ul.menu li a#home_fr.active{padding-top:16px!important;width:82px;}
#header ul.menu li a#unterarten, #header ul.menu li a#unterarten.active{width: 175px!important;}
#header ul.menu li a#wissenswertes, #header ul.menu li a#wissenswertes.active{width:195px!important;}
#header ul.menu li a#wissenswertes_fr, #header ul.menu li a#wissenswertes_fr.active{width:195px!important;padding:7px 10px;}
#header ul.menu li a#wissenswertes_en, #header ul.menu li a#wissenswertes_en.active{width:220px!important;}
#header ul.menu li a#info, #header ul.menu li a#info.active{width:150px!important;}
#header ul.menu li a#info_fr, #header ul.menu li a#info_fr.active{width:95px!important;padding:7px 12px;}
#header ul.menu li a#info_en, #header ul.menu li a#info_en.active{width:126px!important;}
#header ul.menu li a#galerie, #header ul.menu li a#galerie.active{width: 85px!important;}
#header ul.menu li a#galerie_fr, #header ul.menu li a#galerie_fr.active{width: 95px!important;padding-top: 16px !important;}
#header ul.menu li a#abzugeben, #header ul.menu li a#abzugeben.active{width:104px!important;background: transparent url(/themes/yaml/images/hauptnav_red.jpg) repeat-x;}
#header ul.menu li a#kontakt, #header ul.menu li a#kontakt.active{padding-top:16px!important;width:84px!important;margin-right: 0!important;}
#header ul.menu li a#news {text-transform: uppercase;position: absolute;top:-114px;width: 180px;height: 63px;padding: 0 20px 0 40px;text-align: center;right:325px;background: transparent url(/themes/yaml/images/news_button.jpg) 6px 0px no-repeat;font-size: 13px;}
#header ul.menu li a#news:hover, #header ul.menu li a#news.active {text-transform: uppercase;background: transparent url(/themes/yaml/images/news_button_active.jpg) 6px 0px no-repeat!important;}
#header ul.menu li.expanded.active-trail a, #header ul.menu li a:hover, #header ul.menu li a.active, #header ul.menu li a#abzugeben.active, #header ul.menu li a#abzugeben:hover{text-decoration: none;background: transparent url(/themes/yaml/images/hauptnav_active.jpg) repeat-x;}

/* language */
#block-locale-0 {float: right;text-align: center;padding:10px 0 6px 0;border-bottom: 1px solid #725630}
#block-locale-0 ul {padding:0;margin:0 20px;}
#block-locale-0 li {float: left; list-style: none;margin-left:0;}
#block-locale-0 li a {color:#725630!important;font-weight:bold;background-position: 6px 0;background-repeat: no-repeat;padding-left:32px;padding-right:6px;/*filter:alpha(opacity=50); -moz-opacity: 0.50; opacity: 0.50;*/text-decoration:none;}
/*#block-locale-0 li.active a, #block-locale-0 li a:hover {filter:alpha(opacity=100); -moz-opacity: 1; opacity: 1;}*/
#block-locale-0 li.de a{background-image: url(/themes/yaml/images/de.jpg);background-position: left;padding-left:26px;}
#block-locale-0 li.en a{background-image: url(/themes/yaml/images/en.jpg)}
#block-locale-0 li.fr a{background-image: url(/themes/yaml/images/fr.jpg);padding-right: 0;}
#block-locale-0 {width: 323px;}

/* Suche Header */
#block-search-0 {position:absolute;right:0;top:80px;width:315px;}
#block-search-0 .container-inline {left:50%;margin-left:-92px;position:absolute;width:184px;}
#block-search-0 div {text-align: center;}
#edit-search-block-form-1-wrapper {width: 160px;float: left;margin: 0;}
#block-search-0 input {background: url(/themes/yaml/images/headinput.jpg);border:1px solid #725630;height: 22px;width:160px;margin-right:-6px;}
#block-search-0 input.form-submit {background:url("/themes/yaml/images/headbutton.jpg") no-repeat;height:24px;width:24px;}
#block-search-0 h3, #block-search-0 label {display: none}

/* Sekundärlinks */
#block-menu-secondary-links{display: none;}
#header #topnav {position:absolute;right:0;top:42px;/*width:315px;*/text-align:center;color:#614621;width:330px;}
#header #topnav a{text-decoration:none!important;color:#614621!important;margin:0 4px;}
#header #topnav a:hover{text-decoration: underline}
.i18n-fr #header #topnav {
    color: #614621;
    position: absolute;
    right: -8px;
    text-align: center;
    top: 42px;
    width: 340px;
}



/* subnav */
#header ul.menu li ul {padding:4px 0 10px 0; position: absolute;left:0;top:100px;border: 1px solid #9e7f55;width: 214px;background: transparent url(/themes/yaml/images/subnav_all.jpg) repeat-y;}
#header ul.menu li ul li  {height:auto;padding:0px 6px;}
#header ul.menu li ul li a {text-decoration:none!important;margin-top:3px;font-size: 12px;text-transform: none;display:block;padding:6px 4px 10px 4px;height:auto!important;width: 196px;text-align: left;background:url("/themes/yaml/images/subnav_bottom.jpg") bottom repeat-x!important}
#header ul.menu li ul li a.abzugeben:hover, #header ul.menu li ul li a:hover, #header ul.menu li ul li a.active , #header ul.menu li ul li a.abzugeben.active {background:url("/themes/yaml/images/subnav_hover.jpg") bottom repeat-x!important}
#header ul.menu li ul li a.abzugeben {background:url("/themes/yaml/images/subnav_abzugeben.jpg") repeat-x bottom !important;text-align: center;}
/* subsubnav */
#header ul.menu li ul li ul{position:relative;background:none;border:none;left: 0;padding:0;top:0}
#header ul.menu li ul li ul li{padding:0px;}
#header ul.menu li ul li ul li a{padding-left: 20px;width: 174px;}
#header ul.menu li ul li ul li ul li a{padding-left: 40px!important;width: 154px!important;}
#header ul.menu li ul li ul li ul li ul li a{padding-left: 60px!important;width: 134px!important;}


/* content */
p {line-height: 1.1em;margin-bottom: .8em}
#col3 h2, #col3 .meta, ul.links.inline {display: none}
/*.panel-display.panel-2col h2{display: block !important;position:absolute;}
.panel-display.panel-2col .pane-content{padding-top:40px}*/
h1, .content h2 {display:block!important;color:#4F3410;font-family: times new roman;font-size: 24px;font-weight: bolder;margin-bottom:15px;}
.content h3, .content h4 {display:block!important;color:#4F3410;font-family: times new roman;font-size: 20px;font-weight: bolder;margin-bottom:15px;}
.center-wrapper{min-height: 490px;}
hr {border-bottom:1px solid #FFFFFF;border-top:1px solid #4F3410;margin:15px 0;padding:0;}
.panel-col-first h2, .panel-col-first h3 {display: none!important}
.gallery_assist.item-box{width:127px!important;height:87px!important;margin:0!important;padding:0!important;border: none!important;}
.gallery_assist.image-box{padding:0!important;border: none!important;background:url("/themes/yaml/images/bg_galerie_klein.jpg") no-repeat}
.gallery_assist .image-box {border:none}
.gallery_assist.image-box img{margin-top: 0!important;width: 100px!important;}
.gallery_assist.image-sheet {height: auto!important;padding:6px 7px!important;background:url("/themes/yaml/images/bg_galerie_klein2.jpg") bottom no-repeat}
.content a, .content a:visited, .content a:link{color:#4f3410;text-decoration:underline}
.content a:hover{color:#4f3410;text-decoration:none}
.pane-content h2 {display:block!important}

/* galerie */
.gallery-images-list {width:430px;float: left;min-height: 1450px;}
.gallery-images-list .item-list .image-title {display:none}
.gallery-images-list .item-list ul li {background:url("/themes/yaml/images/gallery_bg.png") no-repeat;padding:10px 5px 3px 17px;margin:0;float:left;width:105px;height:74px;}
.gallery-images-list .item-list ul li.first {float:none;background:url("/themes/yaml/images/gallery_first_bg.jpg") no-repeat;    height: 240px;margin: 0;padding: 21px;width: 385px;}
.gallery-images-list .item-list ul li img{max-height:68px;max-width:103px;border:1px solid #9e7f55;}
.gallery-images-list .item-list ul li.first img{max-height:240px;max-width:370px;border:1px solid #9e7f55;}
.item-list ul li {background:none}
.cover-image img  {border:1px solid #9e7f55;max-height:68px;max-width:103px;margin-right:10px;float:left}
.cover-image{background: url("/themes/yaml/images/gallery_bg.png") no-repeat scroll 0 0 transparent;float: left;height: 71px;margin: 0;padding: 10px 15px 3px 17px;width: 105px;}
.gallery-cover-view h4 {font-size:12px;display: inline;}
.gallery-cover-view h4 a{margin-top:10px;}
.gallery-cover-list li{height:90px}
.panel-2col-bricks .panel-col-first p {display: none;}
/*.field-type-nodereference {display: block !important;left: -230px;position: absolute;top: 55px;}*/

/* galerie2 */
.gallery-teaser {width:430px;}
.gallery-teaser ul li {background:url("/themes/yaml/images/gallery_bg.png") no-repeat;padding:10px 5px 8px 17px;margin:0;float:left;width:105px;height:74px;}
.gallery-teaser ul li.first {float:none;background:url("/themes/yaml/images/gallery_first_bg.jpg") no-repeat;    height: 228px;margin: 0;padding: 21px;width: 385px;}
.gallery-teaser ul li img{max-height:68px;max-width:103px;border:1px solid #9e7f55;}
.gallery-teaser ul li.first .image-thumbnail-view img{max-height:228px;max-width: 350px;width: 370px !important;border:1px solid #9e7f55;}
.gallery-teaser .item-list a, .gallery-teaser .item-list a:hover, .gallery-teaser .item-list a:visited {display:none!important;}
.gallery-teaser .item-list .image-thumbnail a, .gallery-teaser .item-list .image-thumbnail a:visited, .gallery-teaser .item-list .image-thumbnail a:hover {display:block!important;background:none!important;padding:0;}
/*.panel-panel ul.links a, .panel-panel ul.links a:hover, .panel-panel ul.links li.update {display:none!important}*/
.panel-2col-bricks .panel-col-first p {display: block;}
.field-field-giden, .field-field-gidfr {display: none;}
.i18n-en .gidfr, .i18n-fr .giden, .i18n-de .gidfr, .i18n-de .giden, .i18n-en .image-navigator-right .gallery-operations, .i18n-fr .image-navigator-right .gallery-operations, .i18n-fr .image-navigator-right .gallery-operations{display: none;}
.gallery-operations.backlink {left: -230px;position: absolute;top: 0;}

/* galerie3 */
.image-preview {height: 486px;background:url("/themes/yaml/images/img.png") no-repeat;margin:0;padding:18px 0 5px 0;text-align: center;width: 748px;} 
.image-preview img{max-height: 470px;max-width: 710px;border:1px solid #9e7f55;}
.submitted {display:none;}
.image-navigator {position:absolute;z-index: 9999;}
.node-gallery_image p {padding-left:12px}
.image-navigator-mid {width:70%;border:none!important;}
.image-navigator-left, .image-navigator-right {width:15%;border:none!important;display:none}
.image-navigator, .image-navigator tr {background:none!important;border:none!important;}
.image-navigator {margin-left:19px;width: 710px !important;position:absolute;top:250px}
.image-navigator-mid a {display: block;float: left;height:90px;width:49.7%;background:none!important;}
.image-navigator-mid:hover,.image-navigator-mid:focus,.image-navigator-mid:active  {background:url("/themes/yaml/images/gallery.png") 0 -50px no-repeat!important;cursor:inherit;}
.image-navigator-mid a:hover,.image-navigator-mid a:focus,.image-navigator-mid a:active  {background:none!important;}
.field-field-gallery {display:none}
.node-node_gallery-image.node-gallery_image:hover {background:url("/themes/yaml/images/zoom.png") no-repeat!important;}
.panel-2col-bricks .panel-col-first.gallerypanel p, .panel-2col-bricks .panel-col-first.gallerypanel p hr, .gallerypanel .field-field-infotext {display: none!important}
.gallery-images-list .item-list ul li p {display: none}
.i18n-de .field-field-infotext .info_fr, .i18n-de .field-field-infotext .info_en,
.i18n-en .field-field-infotext .info_fr, .i18n-en .field-field-infotext .info_de,
.i18n-fr .field-field-infotext .info_de, .i18n-fr .field-field-infotext .info_en  {display: none}
.i18n-de .field-field-infotext2 .info_fr, .i18n-de .field-field-infotext2 .info_en,
.i18n-en .field-field-infotext2 .info_fr, .i18n-en .field-field-infotext2 .info_de,
.i18n-fr .field-field-infotext2 .info_de, .i18n-fr .field-field-infotext2 .info_en  {display: none}
.node-type-gallery #main .content {min-height: 1380px;padding: 10px 0 0 0;}
.node-type-gallery #main .content p, .node-type-gallery #main .content hr,
.node-type-gallery #main .content dl,.node-type-gallery #main .content div,
.node-type-gallery #main .content h1,.node-type-gallery #main .content h2,
.node-type-gallery #main .content h3,.node-type-gallery #main .content h4,
.node-type-gallery #main .content h5,.node-type-gallery #main .content h6,
.node-type-gallery #main .content address{margin-left: 410px;}
.node-type-gallery #main .content ol {margin-left: 422px;}
.node-type-gallery #main .content ul {margin-left: 417px;}

/* archiv */
.archiveimagecontainer div{display:inline}
.archiveimagecontainer .views-row {background: url("/themes/yaml/images/gallery_bg.png") no-repeat scroll 0 0 transparent;float: left;height: 74px;margin: 0;padding: 10px 5px 8px 17px;width: 105px;text-align:center}
.archiveimagecontainer img {border: 1px solid #9E7F55;height: 68px!important;width: 103px!important;}
.archiveimagecontainer a {background:none!important;margin-top: 0!important;padding: 0!important;}
.field-field-upload .field-label {display: none}
#caption {display:none!important;}

.item-list ul.pager {border-top: 1px dotted #9E7F55;font-size: 14px;font-weight: bold;padding-top: 10px;margin-left: 12px;margin-top:10px;width: 622px;}
.item-list .pager li {display: block;float: left;width: 552px;background: none!important;border: none!important;color:#9E7F55!important;}
.item-list .pager li.first {border:none;padding: 2px 0px;text-align: left;width: 24px}
.item-list .pager li.last {border:none;padding: 2px 0px;text-align: right;width: 24px}
.item-list .pager li a {display:block;width: 24px;height: 24px;text-decoration: none!important;font-size: 22px;background: none!important;}
.item-list .pager li.first a {background: url("/themes/yaml/images/back.jpg") no-repeat left top!important;}
.item-list .pager li.last a {background: url("/themes/yaml/images/next.jpg") no-repeat left top!important;}
.field-field-upload .archiveimagecontainer {width: 113px; float: left}

.field-type-nodereference.field-field-nachzuchten {margin-left: 410px;margin-top:20px}
.node-type-gallery #main .content .gallery-images-list{position: absolute;top: 0;}
.node-type-gallery #main .content .gallery-images-list ul,
.node-type-gallery #main .content ul address,.node-type-gallery #main .content ol address,
.node-type-gallery #main .content ul p,.node-type-gallery #main .content ol p,
.node-type-gallery #main .content .gallery-images-list div,
.node-type-gallery #main .content div.gallery-images-list,
.node-type-gallery #main .content dl,.node-type-gallery #main .content div div{margin-left: 0px;margin-bottom: 5px;}

/* gallerylist */
#gallerylist .item-list li, #gallerylist h3 {display:none}
#gallerylist table.views-view-grid{width:700px!important}
#gallerylist td{width:100%!important}
#gallerylist .item-list li.first {display:block!important;background:url("/themes/yaml/images/gallery_bg.png") no-repeat;padding:10px 15px 3px 17px;margin:0;float:left;width:105px;height:74px;}
#gallerylist .item-list li.first img{max-height:68px;max-width:103px;border:1px solid #9e7f55;}

/* Galerie Admin */
.gallery-upload-thumb img {height: auto;width: 100px;}


/* Link Panel */
.panel-panel table td a, .panel-panel table td a:link, .panel-panel table td a:hover, .panel-panel table td a:active, .panel-panel table td a:visited {background:url("/themes/yaml/images/links_bg.png") no-repeat;text-decoration:none!important;color: #4F3410;display: block;font-weight: bold;min-height: 20px;padding: 4px 0 0 28px;width: 165px;}
.panel-panel table.linklist td a(text-align:center)
.panel-panel table td a:hover {background:url("/themes/yaml/images/links_bg2.png") no-repeat;}
.center-wrapper.top b, .center-wrapper.top strong{display:block}
.panel-col-last .pane-content table {border:none!important;min-height:183px;margin:3px 0 6px 0;background:url("/themes/yaml/images/karte.png") no-repeat;}
.panel-col-last .pane-content table td {padding:0 0 0 160px;background:none;border:none!important}
.ctools-dropdown-container-wrapper a, .ctools-dropdown-container-wrapper a:hover, .ctools-dropdown-container-wrapper a:visited{background:none;}

/* guestbook */
#edit-anonname-wrapper, #edit-anonemail-wrapper, #edit-anonwebsite-wrapper {width:40%}
#edit-message-wrapper{float: right;left: 40%;position: absolute;top: 0;width: 58%;margin-top:0;}
#edit-message-wrapper textarea{max-height: 100px;}
#guestbook-form-entry-form #edit-submit, .webform-client-form #edit-submit{background:transparent url("/themes/yaml/images/button_bg.jpg") no-repeat;border: medium none;color: #4F3410;float: right;font-weight: bold;height: 25px;margin-right: 25px;padding: 0 0 4px 28px;text-align: left;width: 110px;}
#guestbook-form-entry-form{position:relative;margin-bottom: 70px;}
.guestbook-message {margin:10px 0;}
.guestbook-entry b, .guestbook-entry .submitted {display:block;color:#fff!important;padding:3px;background:url("/themes/yaml/images/thead.jpg");}
.guestbook-entry a {color:#fff!important;}
.guestbook {min-height:400px;}
.admin-menu #edit-message-wrapper {left:0%;position: relative;width: 100%;}
.guestbook-links a {color:#4F3410!important}
div.backlink_container {position:absolute;left: -230px;}
div.backlink_container a {color:#4F3410!important;background: url("/themes/yaml/images/button_back.jpg") no-repeat scroll 0 0 transparent;display: block;font-size: 12px;font-weight: bold;padding: 4px 10px 5px 30px;text-decoration: none !important;white-space: nowrap;}
div.backlink_container.old a{top: 60px;background: url("/themes/yaml/images/contentnav.jpg") no-repeat scroll 0 0 transparent;}
/* CAPTCHA */
.captcha {border:none;padding:0;margin:80px 0 1em 0;width:34.5%}
.captcha img {width:100%}
.captcha input {width:100%;margin-top:.5em}
.captcha legend, .captcha div.description {display:none;}


/* kontakt */
.webform-client-form{background:#dac39f;margin-top: -15px ;padding: 20px;position:relative;}
.webform-client-form input, .webform-client-form textarea{width:90%;}
.webform-client-form textarea{height:348px;width:93%}
.webform-client-form .webform-component{width:40%}
.webform-client-form .webform-component-textarea{margin-top:20px;float: right;left: 40%;position: absolute;top: 0;width: 58%;margin-top:20px;}
.webform-confirmation p{background: url("/themes/yaml/images/text.png") no-repeat scroll 0 0 transparent;color: green;font-size: 16px;font-weight: bold;padding: 70px 25px;line-height:20px}

/* footer */
#footer {border: medium none;margin-top: 20px;padding: 0 0 20px 0;line-height: 1.2em;}
#footer a {text-decoration:none;font-size:9px!important;}
#footer h3 {display: none}
#footer p {font-size: 14px;text-align:left;width: 980px;color: #725630;font-weight: bold;text-align: left;left: 50%;margin-left: -470px;position: absolute;top:20px;}
#footer ul {width: 100%;margin-top:50px!important;text-align:left;list-style:none;margin:0;top:40px;left: 50%;margin-left: -470px;position: absolute;}
#footer ul li{float:left;}
#footer ul li.first{margin-left:0}
#footer ul li.last{margin-right:0}
#footer a, #footer a:visited{font-size: 12px;color: #725630;background: url("/themes/yaml/images/footerlink.jpg") 0 2px no-repeat;padding-left:8px; }
#footer .inner {background: url("/themes/yaml/images/footer.jpg") repeat-x scroll 0 0 #CDAD82;position:relative;border: medium none;padding: 15px 20px;text-align: center;width: 940px}
.footermap{position:relative}
#footer {background: url("/themes/yaml/images/footer.jpg") repeat-x scroll 0 0 #CDAD82;border: medium none;float: none;margin-top: 20px;padding: 0;position: relative;width: 100%;}
#footer .inner {background: url("/themes/yaml/images/footer.jpg") repeat-x scroll 0 0 #CDAD82;border: medium none;left: 50%;margin-left: -490px;padding: 15px 20px;position: relative;text-align: center;width: 980px;}
#footer p {margin-left: -490px;top:30px;}
#footer ul {margin-left: -490px;margin-top: 30px !important;position: relative;top: 0;}
.block-site_map {width:980px;}
.block-site_map h2, .site-map-taxonomys, .block-site_map .leaf {display:none!important}
.block-site_map li ul .leaf {display:block!important}
.block-site_map li.expanded {width:14%;margin-right:2%}
.block-site_map li.expanded li {width:100%;float:none!important}
#footer li.expanded ul {margin-left:0px;left:0;margin-top:0px !important;}
#site-map .site-map-box {clear:both;}
#site-map li.expanded {list-style-image:none;list-style-type:none;}
#site-map .site-map-box ul {padding-left:0;}
#site-map .site-map-box ul ul {padding-left:10px;}
#site-map .site-map-box ul ul ul{display:none;}

/* Panels */
.panel-col-last h2, .panel-col-last h1 {margin-top:6px;}
.panel-2col-bricks .panel-col-last {width:47%}
.panel-2col-bricks .panel-col-first{width:48%;margin-right:5%}
.panel-panel.panel-col-middle table {margin-left:2%;}
.panel-2col-bricks .panel-col-first p {margin-left:4%;}
.pane-content .gallery-teaser p, .pane-content .gallery-teaser h2, .pane-content .gallery-teaser h1 {display:none}
td.firsttd{width: 200px;}

#abzugebencontent {background:url("/themes/yaml/images/text.png") no-repeat scroll 0 0 transparent !important}
#abzugebencontent .center-wrapper {min-height: 200px;}
#abzugebencontent div.rightdiv {padding-left: 5px;margin-top:5px;margin-bottom: 30px;}
#abzugebencontent div.leftdiv {padding-left: 30px;margin-bottom: 30px;}
#abzugebencontent .panel-col-first div.leftdiv{margin-top:5px;}

#node-33 .panel-2col-bricks .panel-col-first, #node-34 .panel-2col-bricks .panel-col-first, #node-35 .panel-2col-bricks .panel-col-first {margin-right: 0;}
#node-33 .panel-2col-bricks .panel-col-first p, #node-34 .panel-2col-bricks .panel-col-first p, #node-35 .panel-2col-bricks .panel-col-first p {margin-left:0;}
#node-33 .panel-2col-bricks img, #node-34 .panel-2col-bricks img, #node-35 .panel-2col-bricks img{border:none;height: auto !important;width: auto !important;}
 #node-34 .panel-col-top, #node-35 .panel-col-top {height: 430px;}
div.leftdiv{  background:#DAC39F;margin-top: -15px;padding-left:15px;}
div.rightdiv{  background:#DAC39F;margin-left: -15px;margin-top: -15px;padding-left: 20px;padding-right: 15px;}



.panel-panel p {text-align:left!important;color: #4F3410!important;font-size:12px!important;line-height: 130% !important;}
.panel-panel p a, .panel-panel p a:link, .panel-panel p a:hover, .panel-panel p a:active, .panel-panel p a:visited {background:none!important;text-decoration:underline!important;display:inline;font-weight:normal!important;margin:0;padding:0;}
.panel-panel p.numberone{text-align:center!important;}

.panel-2col, .guestbook, .textbg {background:url("/themes/yaml/images/text.png") no-repeat;padding:50px 15px 0 15px;}
.linkdiv {background:url("/themes/yaml/images/text.png") no-repeat!important;padding:50px 15px 0 15px!important;}
.panel-2col em, .panel-2col-bricks em {border: 1px dotted #4F3410;border-top:none;display: block;font-size: 11px;margin: 0 0 10px 0;padding: 10px;width:313px;}
.panel-2col img, .panel-2col-bricks img, .panel-2col-stacked img {width:333px!important;height:auto!important;border: 1px solid #4F3410;}
.panel-2col .panel-col-first {float: left;width: 47.5%;}
.panel-2col .panel-col-last {float: right;width: 47.5%;}
.content h3, .content h4, .content h5, .content h6 {color: #4F3410;display: block;font-family: times new roman;font-size: 18px;font-weight: bolder;margin-bottom: 15px;margin-left:15px}

/*table.linklist td {text-align:center;padding:3px 0!imortant;border:none!important;border-bottom:5px solid #dac39f!important;background:#ccaa7d;color:#fff!important}
table.linklist td p{margin:0!important}
table.linklist td a{font-size:12px!important;font-weight:bold!important;display:block!important}*/

table.linklist td {padding: 0 0 4px!important;text-align:center;padding:3px 0!important;border:none!important;border-bottom:5px solid #dac39f!important;background:none #ccaa7d!important;color:#fff!important;}
.panel-col-last .pane-content table.linklist td {border-bottom:5px solid #dac39f!important;}

table.linklist td p{margin:0!important;text-align:center;}
table.linklist td a{width: 338px !important;font-size:12px!important;font-weight:bold!important;display:block!important;padding-left:4px !important;display:block;}
table.linklist td a img{max-width:338px;height: auto;}

table.books a{display:inline!important;background:none!important;padding:0!important;text-decoration:underline!important}
table.books img{width:200px!important;height:auto!important;}
table.books td{padding:15px;}
table.books {background:url("/themes/yaml/images/text.png") no-repeat;}
table.books tr.firsttr td{padding-top:50px;border-top:none!important;padding-bottom:5px!important}

object, embed{width:335px!important;height:280px!important}

#node-33 .panel-2col-bricks div.hometeaser p img, #node-34 .panel-2col-bricks div.hometeaser p img, #node-35 .panel-2col-bricks div.hometeaser p img {width:140px!important;height:93px!important;}
a.infohome {position:absolute!important;top:13px!important;left:9px!important}

/* Tabellen */
table {margin-bottom:10px;width:98%!important;border:none!important;border-spacing:0!important;border-collapse:inherit!important;border-bottom:1px solid #fff!important;}
th, td {margin:0!important;border:none!important;}
table thead th, .panel-panel table thead th p  {vertical-align:middle;background:url("/themes/yaml/images/thead.jpg");color:#fff!important;text-align:left;border:none!important;font-weight:normal;}
table tbody td {vertical-align:top;border-bottom:1px solid #9e7f55!important;border-top:1px solid #fff!important;}
table tbody td b, table tbody td strong{display:block}

/* views */
.view-tracker .views-row {border:1px dotted #4F3410;margin-bottom:10px;background:#dac39f;padding-top:10px;}
.view-tracker .views-row div {margin-bottom:5px;padding:0 10px;}
.views-field-timestamp, .views-label-title,.views-field-timestamp,label.views-label-teaser, .views-field-language-1, .views-label-view-node {display:none}
.views-field-title {font-size:14px;font-weight:bold;}
.view-tracker .views-row div.views-field-view-node{margin:0;padding:0;}
.view-tracker .views-row div.views-field-view-node span{display:block;background:url("/themes/yaml/images/bgtracker.jpg") repeat-x scroll 0 5px transparent;}
.view-tracker .views-row div.views-field-view-node span a{padding:5px 10px 5px 20px;background:url("/themes/yaml/images/pfeil.jpg") no-repeat 0 0;display:block;text-decoration:none;color:#fff!important;border:5px solid #DAC39F;}
.view-tracker .views-row div.views-field-teaser .field-content {padding:0}

/* home */
.hometeaser p img {border: 1px solid #7E5B2B !important;float: none;margin:0 16px 13px 13px;margin-bottom: 13px;text-decoration:none!important}
.panel-panel .hometeaser a, .panel-panel .hometeaser a:visited, .panel-panel .hometeaser a:link, .panel-panel .hometeaser a:hover, .panel-panel .hometeaser a:active {text-decoration:none!important}
.panel-panel .hometeaser p{text-align: center!important}

/* links */
.panel-2col-bricks .panel-col-first.gallerypanel table.linklist p {
    display: block !important;
}
.panel-2col table.linklist img, .panel-2col-bricks table.linklist img {
   width:auto!important;
}
.field-field-infopage4{margin-left:15px;width:45%}
.field-field-infopage4 div.field-label{display:block}
.panel-panel p a.backlink{background: url("/themes/yaml/images/links_bg.png") no-repeat scroll 0 0 transparent!important;
clear: both;
display: block;
font-size: 12px;
font-weight: bold!important;
margin-top: 5px;
padding: 4px 10px 5px 30px;
text-decoration: none !important;
white-space: nowrap;
color: #4F3410!important;}

/* Galerie Details */
.node.node-node_gallery-image.node-gallery_image p {width: 700px;position: absolute;top: 560px;border: 1px dotted #9e7f55; padding: 10px;margin:0 12px;line-height: 20px; font-size:14px;font-weight:bold;text-align: center }
table.image-navigator td.image-navigator-right {top:0;display: block;left: -200px;padding: 0; position: absolute;width: 1%;}
.gallery-operations li a {margin-top:35px;background:url("/themes/yaml/images/button_back.jpg") no-repeat;display: block;font-size: 12px;font-weight: bold;padding:2px 10px  5px 30px;position: absolute;text-decoration: none !important;white-space: nowrap;}
.gallery-operations li{background:none;}
table.image-navigator td.image-navigator-mid {text-align: center;width: 100%;}
#outerImageContainer {padding: 10px;background: transparent url("/themes/yaml/images/imagecontainer.jpg")}
#imageDataContainer {padding: 4px 10px;background: transparent url("/themes/yaml/images/imagecontainerdata.jpg")}
#imageData #bottomNav {height: auto;}
#bottomNavClose {margin-top: 0;}
#bottomNavClose{background-color: transparent !important;}
#lightboxImage {border: 1px solid #9E7F55;}
#imageData #numberDisplay {padding-top: 1em;padding-bottom:0;}
.image-preview:hover{background: transparent url("/themes/yaml/images/zoom.png") no-repeat}
.image-preview:hover img{-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";filter: alpha(opacity=30);-moz-opacity:0.3;-khtml-opacity: 0.3;opacity: 0.3;}
.image-preview a.lightbox-processed {display: block;height: 486px;background: none!important;}
.image-preview {margin: 0 0 250px;}
.panel-panel .pane-content a.lightbox-processed, .panel-panel .pane-content a.lightbox-processed:visited,
.panel-panel .pane-content a.lightbox-processed:hover, .panel-panel .pane-content a.lightbox-processed:link{display: block!important;background: url("/themes/yaml/images/zoom2.png") 50% 50% no-repeat !important;}
.pane-content a.lightbox-processed:hover img.zoom {-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";filter: alpha(opacity=50);-moz-opacity:0.5;-khtml-opacity: 0.5;opacity: 0.5;}
.field-label {float: left}
.field-items {margin-bottom: 5px;}
.field-item.odd a, .field-item.even a {background:url("/themes/yaml/images/links_bg.png") no-repeat;display: block;font-size: 12px;font-weight: bold;padding:4px 10px  5px 30px;clear:both;text-decoration: none !important;white-space: nowrap;margin-top: 5px;}
.field-field-infopageback {position: absolute;left:-228px;top: 70px;}

.node-gallery_image .field-item.odd a, .node-gallery_image .field-item.even a {white-space:normal;max-width:180px;background:url("/themes/yaml/images/links_bg_bild.png") no-repeat;}
.node-gallery_image .field-field-nzabzugeben {left:-228px;position:absolute;top:260px;}
.field-field-infotext2{left:-205px;position:absolute;top:445px;width:215px;}
.image-preview p {font-weight: bold;text-align: center}

ul.gallery-operations {    margin: 0 0 1em -28px;}
.gallerypanel .field-type-nodereference {display:none}
td.image-navigator-right {vertical-align: top}
#switch_edit-body {display:block!important;}
.field-field-infotext2 .field-label, .field-field-infotext .field-label{display: none;}
.field-field-infotext2 p {border: none!important;}
.field-field-infotext{margin-left:410px;margin-top:20px;padding-top:18px;border-top:1px dotted #4F3410}

.i18n-de .field-field-beschreibung-en, .i18n-de .field-field-beschreibung-fr {display:none}
.i18n-de .field-field-beschreibung-gallery-en, .i18n-de .field-field-beschreibung-gallery-fr {display:none}

.i18n-en .field-field-beschreibung-fr, .i18n-en .node-node_gallery-image .content p {display:none}
.i18n-en .node-node_gallery-image .content .field-field-beschreibung-en p{display:block}
.i18n-en .i18n-de .field-field-beschreibung-gallery-fr {display:none}

.i18n-fr .field-field-beschreibung-en, .i18n-fr .node-node_gallery-image .content p {display:none}
.i18n-fr .node-node_gallery-image .content .field-field-beschreibung-fr p{display:block}
.i18n-fr .field-field-beschreibung-gallery-en {display:none}

.field-label {display:none}

.panel-panel .pane-content a.lightbox-processed, .panel-panel .pane-content a.lightbox-processed:visited, .panel-panel .pane-content a.lightbox-processed:hover, .panel-panel .pane-content a.lightbox-processed:link {
    width: 333px;
}
.panel-panel .pane-content .view-id-view_archiv a{width:105px!important;}


.field.field-type-nodereference.field-field-infopage .field-label,
.field.field-type-nodereference.field-field-nachzuchten .field-label {display:block;}

#node-gallery-edit-images-form table.cke_editor {width: 70%;}
#node-gallery-edit-images-form .cke_skin_kama {width: 62% !important;}

/* Topwords */
.panel-2col .panel-pane.pane-custom {margin-top:107px}
.panel-2col .panel-pane.pane-custom.bigfont2col {margin-top:0px}
.bigfont p, .bigfont2col p{text-align:justify !important;border-bottom: 1px dotted #86683F;border-top: 1px dotted #86683F;color: #86683F !important;font-size: 15px !important;margin-left: 15px;margin-right: 5px;margin-bottom:30px;padding-bottom: 10px;padding-top: 10px;font-weight:bold;}
.bigfont2col p{font-size: 13px !important;}
.bigfont2col {position:absolute;top:145px;left:0;width:738px;}
.bigfont.home p {margin-left:0;}

.content .panel-2col h2, .content .panel-2col h3, .content .panel-2col h4, .content .panel-2col h5, .content .panel-2col h6 {margin-left:0px;}

/* facebook */
a.connect_widget_like_button {background: none;border:none;}
.fb_button_small, .fb_button_small_rtl {font-size: 11px!important;}
.connect_widget_like_button .liketext {color: #705031!important;font-family: "times New Roman"!important;background: none;font-size: 17px;font-weight: bold;}

.block-fb_social_like {position:absolute;right:130px;top: 200px;width: 245px;height: 35px;z-index: 1000;background: url("/themes/yaml/images/like.jpg") no-repeat scroll 0 0 transparent}
.block-fb_social_like h3 {display:none}
.block-fb_social_share {position:absolute;right:0;top: 200px;width: 245px;height: 38px;z-index: 999;background: url("/themes/yaml/images/fb.jpg") no-repeat scroll 0 5px transparent}
.block-fb_social_share h3 {display:none}

.fb_button, .fb_button_rtl {background: url("/themes/yaml/images/share.jpg") repeat scroll 0 0 transparent !important;
    cursor: pointer;
    height: 25px !important;
    padding-left: 60px !important;
    text-decoration: none !important;
    width: 70px !important;margin-left: 120px;}
.fb_button .fb_button_text, .fb_button_rtl .fb_button_text {border-bottom:none!important;
    background: none!important;
    border-top: none!important;
    color: #705031!important;
    font-family: "times New Roman"!important;
    font-size: 17px;
    font-weight: bold;
    margin:6px 1px 0 12px !important;
    padding: 2px 6px 3px;
    text-decoration: none !important;
    text-shadow: none;}
.fb_button_small, .fb_button_small_rtl {font-size: 11px!important;}

.block-fb_social_like {
   background: url("/themes/yaml/images/like.png") no-repeat scroll 5px 4px transparent;
    height: 40px;
    position: absolute;
    right: 135px;
    top: 199px;
    width: 245px;
    z-index: 1111;
}

#block-block-2 {
    position: absolute;
    right: 127px;
    text-align: center;
    text-decoration: none !important;
    top: 194px;
    width: 120px;
    z-index: 1112;
}

#block-block-2 p{
    width:120px;
    height:40px;
    text-align: center;
    text-decoration: none !important;
}

#block-block-2 p a{
    display: block;
    width:120px;
    height:40px;
    text-align: center;
    text-decoration: none !important;
    font-size:11px;
}


#block-block-2 h3, .i18n-de .fb_link_en, .i18n-en .fb_link_de, .i18n-fr .fb_link_de{display: none;}

/* abzugeben neu */

.abzugeben_neu{
    background: url("/themes/yaml/images/abzugeben_neu.jpg") no-repeat scroll 0 0 transparent;
    color: #4F3410 !important;
    margin-bottom: 20px;
    margin-top: -10px;
    padding: 115px 75px 0 55px;
    margin-left: 20px;
}
.abzugeben_neu img{
    border:none !important;
    width:auto !important;
    margin-left:-55px !important;
}

.neu,.panel-2col img.neu, .panel-2col-bricks img.neu, .panel-2col-stacked img.neu {display: block;
    float: none;
    height: auto !important;
    width: 145px!important;border:none!important;margin-bottom: 10px;}


/* counter */
.i18n-en .counter_de, .i18n-fr .counter_de, .i18n-de .counter_en {display:none!important}


div.error {
    color: #C52020;
    display: none;
}

.i18n-en .image-navigator-right ul.gallery-operations {display:none}


.gallerypanel .field-type-nodereference, td.image-navigator-right {display:none}

#node-gallery-edit-images-form .sticky-enabled.tabledrag-processed.sticky-table .cke_skin_kama{width:100%!important;}

.cke_skin_kama .cke_toolgroup {background: none repeat scroll 0 0 #FFFFFF;display: block;height: 44px!important;}

.guestbook-comment{background: none repeat scroll 0 0 #CFAE7B;
    margin-bottom: 5px;
    padding: 10px;}

.item-list ul.pager {overflow: hidden;width: 100%;margin-left: 0;}
.item-list .pager li {width: 24px;}

/* Preisliste */

.node-unpublished {background:none}
#preisliste {background: url("/themes/yaml/images/text.png") no-repeat scroll 0 0 transparent !important;padding: 50px 15px 0 !important;}
#preisliste th td {font-weight:bold;font-size:14px;}
#preisliste table .ausverkauft {color:#a57e40;}
#preisliste table {margin-bottom:20px;}
#preisliste .panel-col-last .pane-content table {background:none;margin:0 0 20px 0}
#preisliste  table td{border-bottom: 1px solid #9E7F55 !important;border-top: 1px solid #FFFFFF !important;vertical-align: top;padding: 0.3em 0.5em;}

/* opera */

head:first-child+body .hometeaser p {width: 194px;}

.fb_iframe_widget iframe{height:80px!important;width:330px!important}

.cke_dialog_ui_vbox_child .cke_dialog_ui_hbox_first {width:50px!important}

/*

@media (max-width: 991px) { 



#header ul.menu li {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border: medium none;
    clear: none;
    float: none;
    height: 54px;
    text-align: left;
    width: 100%;
}


#header ul.menu li a#news, #header ul.menu li a {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border: medium none;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    margin-right: 6px;
    padding-left: 7px;
    padding-right: 7px;
    padding-top: 7px;
    position: relative;
    text-align: left;
    text-decoration: none !important;
    text-transform: uppercase;
    width: 100% !important;
}
#header #topnav {
    color: #614621;
    position: relative;
    right: 0;
    text-align: center;
    top: 42px;
    width: 100%;
}

#header ul.menu li ul {
    background: url("/themes/yaml/images/subnav_all.jpg") repeat-y scroll 0 0 transparent;
    border: 1px solid #9e7f55;
    left: 0;
    padding: 4px 0 10px 55px;
    position: relative;
    top: 0;
    width: 100%;
}

#header {padding-top:110px;}

#header #block-menu-primary-links {
    position: relative;
    border: medium none;
    float: left !important;
    left: 0;
    margin: 0;
    top: 0;
}

#header #block-menu-primary-links div {
    float:left!important;
}

.homeleft,#nav-bar{
    display: none;
  }
  .homeright{
    float: none;
    width:100%!important;
    margin:0 auto;
  }
  .homeright p{
    margin:0;
  }

  .page_margins{width:100%;padding: 0;}

  #header div {float: right}

#header a:last-child {
    display: block;
    float: left;
    height: 100px;
    position: absolute;
    text-align: center;
    width: 100%;
    top:0;
}
  #site-logo {
    margin: 0 auto;
    float: none;
  }

  #block-locale-0 {
      border:none;
      float: none;
      position: relative;
      width: 100%;
  }

  .bigfont p, .bigfont2col p {
      clear: both;
      width: 100%;
  }

  .hometeaser {
      background-color: #cba97c;
      border: 0 none;
      clear: both;
      display: block;
      height: auto;
      overflow: hidden;
      padding: 10px 20px;
      text-align: center;
  }


  .hometeaser div {
      text-align: center; 
  }

  .hometeaser p {
    height: auto;
  }
  .front .center-wrapper.top {
    display: none;
  }

  .front .panel-col-first, .front .panel-col-last {
    margin-right: 5%;
    padding: 0 20px;
    width: 100%;
    float: none !important;
    margin: 0 !important;
  }

  .front .panel-col-first h6, .front .panel-col-last h6 {
    margin-left:0;
  }

  #col3 {margin:0!important;}

}
*/
}
