
/*** ESSENTIAL STYLES ***/
#inhalt #cmenu.sf-menu, #inhalt #cmenu.sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
#inhalt #cmenu.sf-menu li {
	position: relative;
}
#inhalt #cmenu.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
    background-color: #EFEFEF;
    border-color: #424242;
    border-style: solid;
    border-width: 1px;
    margin: 4px 0 0;
    padding: 5px;
	
}

#inhalt #cmenu.sf-menu ul.wsub {
	white-space: normal;
	top: -2px;
	left: 133px;
	/* border: 1px solid #000; */
}
#inhalt #cmenu.sf-menu ul.wsub li ul.wsub li{
	width: 350px;
	white-space: normal;
}

#inhalt #cmenu.sf-menu > li {
	float: left;
}
#inhalt #cmenu.sf-menu li:hover > ul,
#inhalt #cmenu.sf-menu li.sfHover > ul {
	display: block;
}

#inhalt #cmenu.sf-menu a {
	display: block;
	position: relative;
}
#inhalt #cmenu.sf-menu li {
	display: block;
}

#inhalt #cmenu.sf-menu ul ul {
	top: 0;
	left: 100%;
}


/*** WCP SKIN ***/

#inhalt #cmenu.sf-menu {
	float: left;
}
#inhalt #cmenu.sf-menu ul {
	box-shadow: 2px 2px 6px rgba(0,0,0,.2);
	min-width: 12em; /* allow long menu items to determine submenu width */
	*width: 12em; /* no auto sub width for IE7, see white-space comment below */
}

#inhalt #cmenu.sf-menu a {
    font-size: 0.85em;
	/* font-weight: bold; */
	color:#000;
	padding: 3px 25px 3px 3px;
	text-decoration:none;
	zoom: 1; /* IE7 */
}
#inhalt #cmenu.sf-menu a.cmstart {
    font-size: 0.85em;
	/* font-weight: bold; */
	color:#000;
	width:64px;
	background-color: #EFEFEF;
	padding: 3px 8px 3px 5px;
	text-decoration:none;
	zoom: 1; /* IE7 */
}

#inhalt #cmenu.sf-menu li {
    /* border-right: 1px solid #BD2E38; */
	background: #E4E4E4;
	/* background-color: #E4E4E4; */
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
	-webkit-transition: background .2s;
	transition: background .2s;
}

#inhalt #cmenu.sf-menu ul li {
	background: #E4E4E4;
}

#inhalt #cmenu.sf-menu li a span {
	/* display: block; */
    padding: 0 0 0 5px;
}

#inhalt #cmenu.sf-menu li ul li {
	display: block;
	border-top: 1px solid white;
}

#inhalt #cmenu.sf-menu li ul li:first-child {
	border-top: none;
} 

#inhalt #cmenu.sf-menu li ul li a {
	display: block;
	/* height: 34px; */
	font-size: 0.9em;
}

#inhalt #cmenu.sf-menu li ul li a span {
	/* display: block; 
    padding: 10px 18px 0.3em 10px; */
}

/* #inhalt #cmenu.sf-menu ul ul li {
	background: #9AAEDB;
} */


#inhalt #cmenu.sf-menu a:hover {/*,  #inhalt #cmenu.sf-menu li.sfHover { */
	background: #BD2E38;
	color:#fff;
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
}


/*** arrows **/
#inhalt #cmenu.sf-menu a.sf-with-ul {
	/* padding-right: 2.25em; */
	min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */
}
/*** arrows (for all except IE7) **/
#inhalt #cmenu.sf-menu .sf-arrows .sf-with-ul {
	/* padding-right: 2.5em;
	*padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}
/* styling for both css and generated arrows */ 

.sf-arrows .sf-with-ul:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	margin-top: -3px;
	height: 0;
	width: 0;
	/* order of following 3 rules important for fallbacks to work */
	border: 5px solid transparent;
	border-top-color: #000; /* edit this to suit design (no rgba in IE8) */
	border-top-color: rgba(0,0,0,.5);
}

.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
	border-top-color: white; /* IE8 fallback colour */
}

/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
	margin-top: -5px;
	margin-right: -3px;
	border-color: transparent;
	border-left-color: #000; /* edit this to suit design (no rgba in IE8) */
	border-left-color: rgba(0,0,0,.5);
}
.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
	border-left-color: white;
}