/* ===== Hauptnavigation ====== */

.selectnav {
	display: none;
	cursor: pointer;
	width: 100%;
	padding: 8px;
	height: 37px;
	float: left;
	font-size: 14px;
	margin: 15px 0;
	}

#navigation {
	height: 55px;
	background-color: #f2f2f2;
	text-align: center;
	font-size: 0; /* important ! */
	z-index: 999;
	}

#navigation:before, #navigation:after {
	content:'';
	display: table;
	width: 100%;
	clear: both;
	}

.nav-menu {
	display: inline-block;
	list-style-type: none;
	padding:0;
	margin:0;
	}

.nav-item {
	float:left;
	}

.nav-item a, .nav-item a:visited, .nav-item a:link {
	display: block;
	font-family: "Raleway", sans-serif;
	line-height: 55px;
	font-size: 15px; 
	color: #333;
	text-transform: uppercase;
	padding: 0 11px;
	border-left: 0px solid #e9e9e9;			
	}

#navigation > .nav-menu > li:nth-child(1) a {
	border: none;
	}

.nav-item.has-children {
	position: relative;
	}

.nav-item.has-children > a:after{
	content: '▾';
	display: inline-block;
	padding-left: 5px;
	line-height: 1; /* important */
	vertical-align: baseline;
	}

.subnav-dropdown {
	width: 190px;
	display: none;
	position: absolute;

	top: 100%;
	left: 50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	-moz-transform: translate(-50%,0);
	}

.nav-item.subnav-item {
	float: none;
	padding: 0 0px;
	}

.nav-item.subnav-item a {
	text-align: center;
	line-height: 20px;
	color: #fff;

	border-left: 0;
	padding: 20px 25px;
	}

	.subnav-dropdown > .nav-item.subnav-item:nth-last-child(1) a{
		border: none;
		}

.nav-item:hover > a {
        }
		
.nav-item.subnav-item:hover > a {
	color: #ff0000;
	}

.nav-item.has-children:hover .subnav-dropdown {
	color: #ff0000;
	display: block;
	}

.nav-item.has-children:hover a:after {
	padding-left: 0;
	padding-right: 5px;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	}

/* All Mobile Sizes (devices and browser)
====================================================================== */
@media only screen and (max-width: 700px) {

	#navigation {float: none; height: auto; padding: 0 20px;}
	.js .selectnav {display: block;}	
	.js #nav-resp, #navigation ul li a {display: none;}

}