
#wfmenubox {
        padding-right: 0px;
        float: left;
}

#artikelmenu, #produktpalette {
        margin-top: 1.25em;
        margin-bottom: 0;
}

.wfmenu {
        margin: 0;
        padding: 0;
}


/* remove all the bullets, borders and padding from the default list styling */
.wfmenu ul {
	list-style-type:none;
        z-index: 1;
}

.wfmenu li {
        list-style: none;
        font-size: 15px;
        line-height: 1.1em;
	display:block; 
	border:2px solid #fff;
	border-color:#def #8a8 #575 #cde;
	padding:0.25em;
	margin:0;
	background: #acbec8;
	background: -webkit-linear-gradient(top,  #cedfea,  #9badb7);
	background: -moz-linear-gradient(top,  #cedfea,  #9badb7);
	background: -o-linear-gradient(top,  #cedfea,  #9badb7);
	background: -ms-linear-gradient(top,  #cedfea,  #9badb7);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#cedfea', endColorstr='#9badb7');  
	position:relative;
}

/* get rid of the table */
.wfmenu table {position:absolute; top:0; left:0; z-index:100; font-size:1em;}


/* style the links */
.wfmenu a, .wfmenu a:visited {
	display: block; 
	text-decoration:none;
	color:#3d3d3d;
        height:25px;
        line-height:25px;
        white-space: nowrap;
}

.wfmenu li.active a {
        color: #fff;
}

.wfmenu li a:hover {
        text-decoration:underline;
	color: #006666;
        background: #acbec8;
	background: -webkit-linear-gradient(top,  #cedfea,  #9badb7);
	background: -moz-linear-gradient(top,  #cedfea,  #9badb7);
	background: -o-linear-gradient(top,  #cedfea,  #9badb7);
	background: -ms-linear-gradient(top,  #cedfea,  #9badb7);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#cedfea', endColorstr='#9badb7');
}


/*     Submenu     */
/* hide the sub levels and give them a positon absolute so that they take up no room */
.wfmenu ul ul {
visibility:hidden;
position:absolute;
top: 0;
}
/* make the second level visible when hover on first level list OR link */
.wfmenu ul :hover ul{
visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.wfmenu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.wfmenu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.wfmenu ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.wfmenu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}

