/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.sf-menu li {
	position: relative;
}
.sf-menu ul {
	position: absolute;
	display: none;
	top: 65px;
	left: 0;
	z-index: 99;
}

ul.sf-menu li:hover > ul,
ul.sf-menu li.sfHover > ul {
	top: 67px;
}

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

.sf-menu a {
	display: block;
	position: relative;
}
.sf-menu ul ul {
	top: 0;
	left: 100%;
}


/*** DEMO SKIN ***/
.sf-menu {
	float: left;
	margin-bottom: 0;
}
.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 */
}
.sf-menu a {
	border-left: 1px solid #fff;
	border-top: 1px solid #dFeEFF; /* fallback colour must use full shorthand */
	border-top: 1px solid rgba(255,255,255,.5);
	border: none;
	padding: .75em 1em;
	text-decoration: none;
	zoom: 1; /* IE7 */
	font-size: 1.2em;
}
.sf-menu a {
	color: #fff;
}

.sf-menu a:hover,
.sf-menu li li a:hover,
.sf-menu a.is-active {
	color: #b19401;
}

.sf-menu li {
	background: none;
	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;
}

.sf-menu li li a {
	color: #002f5f;
	font-size: 1.1em;
	display: block;
	border-bottom: 1px solid #b1b1bb;
	padding-bottom: 5px;
}


.sf-menu ul li {
	background: none;
}


.sf-menu li ul {
	background: #FFFFFF;
	background: -webkit-linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(177, 177, 187, 1) 100%);
	background: -moz-linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(177, 177, 187, 1) 100%);
	background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(177, 177, 187, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
	  startColorstr="#FFFFFF",
	  endColorstr="#B1B1BB",
	  GradientType=0
	);
}

.sf-menu ul ul li {
	background: none;
}
.sf-menu li:hover,
.sf-menu li.sfHover {
	background: none;
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
}

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
	padding-right: 2.5em;
	*padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}

ul.sf-menu .sf-sub-indicator {
	width: 25px;
	opacity: 1;
}

/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after,
ul.sf-menu .sf-sub-indicator::after {
	content: '' !important;
	position: absolute;
	top: 33%;
	right: 10px;
	margin-top: -3px;
	height: 15px;
	width: 25px;
	/* order of following 3 rules important for fallbacks to work */
	border: none;
	border-top-color: none; /* edit this to suit design (no rgba in IE8) */
	border-top-color: none;
	background: url('../img/1_Weiser_Pfeil_nach_unten.png')0 0 no-repeat;
	background: url('../img/1_Weiser_Pfeil_nach_unten.svg')0 0 no-repeat;
}
.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: none; /* IE8 fallback colour */
	background: url('../img/1_Goldner_Pfeil_nach_unten.png')0 0 no-repeat;
	background: url('../img/1_Goldner_Pfeil_nach_unten.svg')0 0 no-repeat;
}
/* 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;
}

@media only screen and (max-width: 1130px) {
	.sf-menu li ul {
		background: none;
	}
	
	.sf-menu li li a {
		color: #fff;
	}
}
