﻿/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
	color:#fff !important;
    font-weight:bold;
	font-family: Tahoma, Arial;	

}
.sf-menu li {
	position: relative;
	min-height:20px;
	padding: 5px 5px ;
	line-height: auto;
	font-weight:bold;
}
.sf-menu ul {
	/* neu */
	display: block;
	border-top: 1px solid #fff;
	/*
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
	*/
}

.sf-menu a {
	display: block;
	position: relative;
	font-weight: 300;
	font-size: 1.2em;
	color: white;
}

.sf-menu > li {
	background-color: #0d9aff;
	border-radius: 20px;
	width:175px;
    text-align:left;
	margin-left: 17px;
	padding-left:15px;
	padding-top: 5px;
	padding-bottom: 8px;
	border-bottom: 2px solid #fff;
	cursor: pointer;
	font-family: Tahoma, Arial;	
}

/*
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
	border-top: 1px solid #fff;
}
*/

.sf-menu > li:hover, .sf-menu > li.active {
	background-color: #007DD6;
	text-decoration:none;
}

/* Hier nun die zweite Ebene */

.sf-menu > li > ul > li {
	text-align:left;
	cursor: pointer;
}

.sf-menu > li > ul > li:hover, .sf-menu > li > ul > li.active {
	background-color: darkblue;
}



/*
.sf-menu ul ul {
	top: 0;
	left: 100%;
}
*/


/* dieser ganze Bereich kommt nicht zum Tragen, weil in diesem Projekt nirgends die Klassenbefehle drin sind, die Pfeile für Submenüs erzeugen sollen */

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
	padding-right: 0em;
	*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: 0em;
	margin-top: -3px;
	height: 0;
	width: 0;
	/* order of following 3 rules important for fallbacks to work */
	border-top-color: 2px solid #fff;
	border-top-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-top-color: rgba(255,255,255,.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: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-left-color: rgba(255,255,255,.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;
}