/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/dd_valid.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* common styling */
/* Anpassung an kk4you: menu durch dropdown ersetzt, width:750px entfernt, height:100px wegen Browserdarstellung Opera entfernt
Hintergrund 1te Ebene dunkelgrau und weitere Farbanpassungen  
Versionsbeschreibung:
1.0.1   Breite auf 1100px
1.0.2   Breite auf max 1100px
1.0.3   2.2.10  Breite vom max-width auf width gesetzt, sonst Verschiebung bei kleinem Bildschirm
1.1     6.8.10  In Header eingebaut
1.1.1   8.9.10  Breite von 119 auf 105 wegen kleiner Bildschirme mit 1024x768 reduziert
**/
.dropdown {
    font-family: arial, sans-serif; 
    /** width: 1100px; **/
    position:relative; 
    font-size:11px; 
    z-index:100;
    /**margin-left: 4px;**/
    }

.dropdown ul li a, .dropdown ul li a:visited {
    display:block; 
    text-decoration:none; 
    color:#000;
    width:105px; 
    min-height:20px;    /** NEU statt height --> min-height ab Vers 1.1 **/ 
    text-align:center; 
    color:#fff; 
    border: 1px solid #fff;
    background:#666; 
    line-height:20px; 
    font-size:11px; 
    overflow:hidden;
    }

.dropdown ul {
    padding:0; 
    margin:0; 
    list-style: none;
    }

.dropdown ul li {
    float:left; 
    position:relative;
    }

.dropdown ul li ul {
    display: none;
    }

/* specific to non IE browsers */
.dropdown ul li:hover a {
    color:#fff; background:#999999;} /** Hover 1te Ebene grau, Schrift weiss**/
.dropdown ul li:hover ul {
    display:block; position:absolute; top:21px; left:0; width:106px;}
.dropdown ul li:hover ul li a.hide {
    background:#6a3; color:#fff;}
.dropdown ul li:hover ul li:hover a.hide {
    background:#6fc; color:#000;}
.dropdown ul li:hover ul li ul {
    display: none;}
.dropdown ul li:hover ul li a {
    display:block; background:#ddd; color:#000;}
.dropdown ul li:hover ul li a:hover {
    background:#ddd; color:#cc9900;} /**Hover 2te Ebene--> Hintergrund hellgrau, Schrift orange**/
.dropdown ul li:hover ul li:hover ul {
    display:block; position:absolute; left:106px; top:0;}
.dropdown ul li:hover ul li:hover ul.left {
    left:-120px;}
