/* CSS Style-Definitionen fuer www.forsten-online.de */

body {font-family:Verdana,Arial,sans-serif; font-size:small;
    color:#000000; background-color:#ffffff; text-align:justify; }

/* habsch: Abschnittüberschriften                        */
/* zugs:   Abschlußzeile ("Zugschluß")                   */


.habsch {font-size:medium; font-weight:bold;
    text-align:left; vertical-align:middle;
    color:#000000; background-color:#f0f0f0; }

.habsch2 {font-size:small; font-weight:bold;
    text-align:left; vertical-align:middle;
    color:#000000; background-color:#f0f0f0; }

.zugs {font-size:small;
       text-align:right; vertical-align:middle;
       color:#000000; background-color:#ffffff; }

A:link{text-decoration: underline; color: #0000dd; font-weight: normal}
A:visited{text-decoration: underline; color: #000000; font-weight: normal}
A:active{text-decoration: underline; color: #000000; font-weight: normal}
A:hover{text-decoration: underline; color: #000000; font-weight: normal}

/* Klasse Menu-Box für Menüseiten mit Bildern */

.menu-box {
 color: #000000;
 background-color: #f0f0f0;
 float: left;
 margin: 10px;  /* Lücke zwischen den Thumbboxen */
 width: 200px; /* Einheitliche Breite passend für Image */
 border: 1px solid #ddd; /* Gray border */
 border-radius: 4px;  /* Rounded border */
 padding: 5px ;

}

.menu-box:hover {
    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}

.menu-box h3 {
 text-align: center; /* Formatierung für Bildunterschrift */
 font-size: small;
 font-weight: normal;
}

.menu-box img {
 max-width: 100%;
 height: 133px;      /* Einheitlich auf DSLR-Proportionen abschneiden */
 display: block;     /* Image zentrieren */
 margin-left: auto;  /* Image zentrieren */
 margin-right: auto; /* Image zentrieren */
}

/* Klasse Gallery für Bildergalerien */

.gallery {
 color: #000000;
 background-color: #f0f0f0;
 float: left;
 margin: 10px;  /* Lücke zwischen den Bildern */
 width: 200px; /* Einheitliche Breite passend für Image */
 border: 1px solid #ddd; /* Gray border */
 border-radius: 4px;  /* Rounded border */
 padding: 5px ;
}

.gallery:hover {
    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}

.gallery img {
 max-width: 100%;
 display: block;     /* Image zentrieren */
 margin-left: auto;  /* Image zentrieren */
 margin-right: auto; /* Image zentrieren */
}


/* CSS-Eintraege fuer Lightbox 2    */

#lightbox{    position: absolute;    left: 0; width: 100%; z-index: 100; text-align: center; line-height: 0;}
#lightbox img{ width: auto; height: auto;}
#lightbox a img{ border: none; }

#outerImageContainer{ position: relative; background-color: #ccc; width: 250px; height: 250px; margin: 0 auto; }
#imageContainer{ padding: 10px; }

#loading{ position: absolute; top: 40%; left: 0%; height: 25%; width: 100%; text-align: center; line-height: 0; }
#hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 10; }
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{ width: 49%; height: 100%; background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */ display: block; }
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(../div/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(../div/nextlabel.gif) right 15% no-repeat; }

#imageDataContainer{ font: 10px Verdana, Helvetica, sans-serif; background-color: #ccc; margin: 0 auto; line-height: 1.4em; overflow: auto; width: 100%    ; }

#imageData{    padding:0 10px; color: #000; }
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }
#imageData #caption{ font-weight: bold;    }
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;    }
#imageData #bottomNavClose{ width: 66px; float: right;  padding-bottom: 0.7em; outline: none;}

#overlay{ position: absolute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #fff; }

/* CSS-Eintraege fuer Flyout-Navigation */

/* We remove the margin, padding, and list style of UL and LI components */
#menuwrapper ul, #menuwrapper ul li{
    margin:0;
    padding:0;
    text-align:left;
    list-style:none;
}

/* We apply background color and border bottom white and width to 150px */
#menuwrapper ul li{
    background-color:#ffffff;
    border-bottom:solid 2px white;
    width:190px;
    cursor: pointer;
}

/* We apply the background hover color when user hover the mouse over of the li component */
#menuwrapper ul li:hover{
    background-color:#f0f0f0;
    position:relative;

}

/* We apply the link style */
#menuwrapper ul li a{
    padding:3px 5px;
    color:#000000;
    display:inline-block;
    text-decoration:none;
}

/**** SECOND LEVEL MENU ****/
/* We make the position to absolute for flyout menu and hidden the ul until the user hover the parent li item */
#menuwrapper ul li ul{
    position:absolute;
    display:none;
}

/* When user has hovered the li item, we show the ul list by applying display:block, note: 150px is the individual menu width.  */
#menuwrapper ul li:hover ul{
    left:180px;
    top:0px;
    display:block;
    text-align:left;
    opacity: 0.95;
}

/* we apply different background color to 2nd level menu items*/
#menuwrapper ul li ul li{
    background-color:#f0f0f0;
    border-bottom:solid 2px white;
}

/* We change the background color for the level 2 submenu when hovering the menu */
#menuwrapper ul li:hover ul li:hover{
    background-color:#c0c0c0;
}

/* We style the color of level 2 links */
#menuwrapper ul li ul li a{
    padding:3px 5px;
    color:#000000;
    display:inline-block;
    width:180px;
}

/**** THIRD LEVEL MENU ****/
/* We need to hide the 3rd menu, when hovering the first level menu */
#menuwrapper ul li:hover ul li ul{
    position:absolute;
    display:none;
}

/* We show the third level menu only when they hover the second level menu parent */
#menuwrapper ul li:hover ul li:hover ul{
    padding:3px 5px;
    display:block;
    left:180px;
    top:-3px;
    opacity: 0.95;
}

/* We change the background color for the level 3 submenu*/
#menuwrapper ul li:hover ul li:hover ul li{
    background:#f0f0f0;
}

/* We change the background color for the level 3 submenu when hovering the menu */

#menuwrapper ul li:hover ul li:hover ul li:hover{
    background:#c0c0c0;
}

/* We change the level 3 link color */
#menuwrapper ul li:hover ul li:hover ul li a{
    color:#000000;
}

/* Clear float */
.clear{
    clear:both;
}


/* Und hiermit klemmen wir das blöde Pop-Up vom Google-Translator ab */

 .goog-tooltip {
        display: none !important;
 }

 .goog-tooltip:hover {
        display: none !important;
 }

 .goog-text-highlight {
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
 }