/* General menu styling */
.drop_menu {
	position: relative;
	margin: 0;
	padding: 0;
	/*line-height: 22px;*/
	
	z-index: 100;
}
/* The main navigation link containers */
.drop_menu>li {
	display: block;
	float: left; /* Displaying them on the same line */
	margin: 0;
	padding: 0;
}
/* The main navigation links */
.drop_menu>li>a {
	/* Layout */
	display: block;
	position: relative;
	padding: 10px 20px;
	/* Text */
	/* Text Größe für die Menüs */
	font-size: 14px;
	color: #e2a300;
	text-decoration: none;
	/* Background */
	/* background: black; /* For older browsers */
	/* background: rgba(0, 0, 0, .6); /* Transparent background for modern browsers */
	/* Making the color to change on hover with a transition */
	-webkit-transition: color .3s ease-in;
	-moz-transition: color .3s ease-in;
	-o-transition: color .3s ease-in;
	-ms-transition: color .3s ease-in;
}
/* Changing the color on hover */
.drop_menu>li>a:hover, .drop_menu>li:hover>a {
	/*color: #0fd0f9;*/
}
/* The links which contain dropdowns menu are wider, because they have a little arrow */
.drop_menu>.dropdownMenu>a {
	padding: 10px 30px 10px 20px;
}
/* The arrow indicating the dropdown */
.dropdownMenu>a::after {
	content: "";
	position: absolute;
	top: 17px;
	right: 10px;
	width: 7px;
	height: 7px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	/*
border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
*/

}
/* Changing the color of the arrow on hover */	
.dropdownMenu>a:hover::after, .dropdownMenu:hover>a::after {
	/* border-color: #0fd0f9; */
}
/* The submenus */
.drop_menu ul {
	position: absolute;
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
	
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.175);
}
/* General layout settings for the link containers of the submenus */
.drop_menu ul li {
	position: absolute;
	top: -9999px; /* Hiding them */
	height: 0px;
	display: block;
	margin: 0;
	padding: 0;
	/* Making them to expand their height with a transition, for a slide effect */
	-webkit-transition: height .2s ease-in;
	-moz-transition: height .2s ease-in;
	-o-transition: height .2s ease-in;
	-ms-transition: height .2s ease-in;
}
/* Displays the submenu links, by expading their containers (with a transition, previously defined) and by repositioning them */
.dropdownMenu:hover>ul>li {
	height: 47px;
	position: relative;
	top: auto;
	
	border-bottom: 1px solid #f4f4f4;
}
/* The submenu links */
.drop_menu ul li a {
	/* Layout */
	padding: 4px 20px;
	width: 300px;
	display: block;
	position: relative;
	/* Text */
	color: #4b4339 !important;
	text-decoration: none;
	/* Text Größe für die Submenüs */
	font-size: 15px;
	/* Background & effects */
	background: black;
	background: rgba(255, 255, 255, 1);
	-webkit-transition: color .3s ease-in, background .3s ease-in;
	-moz-transition: color .3s ease-in, background .3s ease-in;
	-o-transition: color .3s ease-in, background .3s ease-in;
	-ms-transition: color .3s ease-in, background .3s ease-in;
	
	font-size: 15px !important;
	padding: 12px !important;
	
	
}

/* Menühintergrund */
.drop_menu ul li:hover>a, .drop_menu ul li a:hover {
	color: #e2a300 !important;
	background: rgba(255, 255, 255, 1);
}
/* Making the level 2 (or higher) submenus to appear at the right of their parent */
.drop_menu ul .dropdownMenu:hover ul {
	left: 210px;
	top: 0px;
}
/* The submenu links have a different arrow which indicates another dropdown submenu */
.drop_menu ul .dropdownMenu a::after {
	width: 6px;
	height: 6px;
	border-bottom: 0;
	border-right: 1px solid #fff;
	border-top: 1px solid #fff;
	top: 15px;
}
/* Changing the color of the arrow on hover */
.drop_menu ul .dropdownMenu:hover>a::after, .drop_menu ul .dropdownMenu>a:hover::after {
	/*
border-right: 1px solid #0fd0f9;
	border-top: 1px solid #0fd0f9;
*/
}






