/*==============================================================================

	GRC multi-level script-free pure-CSS menuing system stylesheet.
   This code is hereby placed into the public domain by its author
   Steve Gibson. It may be freely used for any purpose whatsoever.

	Computed Geometries:	with a default 12px font, 1.0em == 12px and
	1px == 0.08333em.
	Thus, our 98px wide Freeware & Research buttons are 8.166666em wide.

==============================================================================*/

/*====== GLOBAL OVERRIDES FOR MAJOR ITEMS AND DIFFERING BROWSER DEFAULTS =====*/

body, table, img, button, iframe, ul, li  { margin:0; padding:0; border:0; }
table { text-align:left; }
iframe { width:0; height:0 }

ul { margin-left:20px; }       /* kill default 50px left padding and set 20px */
li { margin-bottom:1em; }          /* set default inter-item vertical spacing */



 /*========================= TOP OF THE MENU CASCADE =========================*/

.menu {
	position:relative;        /* establish a menu-relative positioning context */
	float:left;                                     /* play nicely with others */
	margin:0;
	padding:0;
	border:0;
	height:18px;                                  /* the menu's overall height */
	width:350px;         /* we always want our menu to fill the available space */
}

.menu img {
	vertical-align: top;      /* prevent images from being pushed down by text */
}

.menu ul {
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:1.5em;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

.menu li {
	float:left;    /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
	margin:0;
}



.menu ul li table {
	margin:0 0;              /* IE5 needs -1px top and bottom table margins */ 
	m\argin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
}



/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

.menu ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
}

.menu ul li a,
.menu ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	text-decoration:none;
}

.menu ul li:hover a,
.menu ul li a:hover {                        /* selected top-level menu items */
	height:14px;
	float:left; 
    width:auto; 
}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

.menu ul li:hover ul,
.menu ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0;
	left:0px;
	top:14px;              /* place us just up underneath the top-level images */
	background: #ebf4f9;         /* this sets our menu's effective "border" color */
	width:105px;
	height:140px;
 } 

.menu ul li:hover ul li,
.menu ul li a:hover ul li{
	clear: both;
	width: 100%;
}

.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {                   /* 2nd level unselected items */
	clear: both;
	width: 100%;
	border:0;
	margin:0;
    padding-top:12px;
	background:#ebf4f9;       /* this sets the drop-down menu background color */

}
.menu ul li:hover #SubMusic,
.menu ul li:hover #SubMusik,
.menu ul li a:hover #SubMusic, 
.menu ul li a:hover #SubMusik{
	width:105px;
	height:165px;
}


/*======================== 3RD LEVEL MENU DEFINITIONS ========================*/

.menu ul li:hover ul li ul,
.menu ul li a:hover ul li a ul {             /* hide inactive 3rd-level menus */
	visibility:hidden;
}

.menu ul li:hover ul li:hover ul,
.menu ul li a:hover ul li a:hover ul {             /* 3rd level drop-down box */
	visibility:visible;
	position:absolute;
	top:0;
}

.menu ul li:hover ul li:hover ul li a,
.menu ul li a:hover ul li a:hover ul li a {     /* 3rd level unselected items */
	background:#ebf4f9;
}

#SubLadiesShoes{
	left: 105px;
	width:105px;
	height:140px;
    border-left: 2px solid #FFF;
}

#SubDamenSchuhe{
	left: 105px;
	width:111px;
	height:140px;
    border-left: 2px solid #FFF;
}

#SubLadiesClothes{
	left: 105px;
	width:155px;
	height:140px;
    border-left: 2px solid #FFF;
}

#SubDamenKleidung{
	left: 105px;
	width:123px;
	height:140px;
    border-left: 2px solid #FFF;
}


#SubTango{
	left: -165px;
	width:163px;
	height:165px;
    border-right: 2px solid #FFF;
}


