/* Mobiel Menu */
.mobielmenu {
	width: 100%;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	margin-top: 5px !important;
}

.mobielmenu i {
	color: black;
	margin-top: 5px;
	font-size: 30px;
	margin-right: 15px;
}

.dropdown .dropdown-menu li a {
	color: white;
	z-index: 999;
	text-align: left;
	padding-left: 30px;
	font-weight: 900;
	font-size: 25px;
	color: rgba(0, 0, 135, 0.6);
	padding-top: 20px;
	padding-bottom: 20px;
	background: rgba(255, 255, 255, 0.79);
	border-bottom: none;
	margin-bottom: 1px;
}

.dropdown .dropdown-menu {
	border-radius: 0;
	margin-top: 65px;
}

.dropdown .subdropdown-menu {
	margin-top: 0;
}

.dropdown .dropdown-menu li ul {
	border-radius: 0;
} 

.dropdown .dropdown-menu li a:hover {
	color: white;
	background: rgba(0, 0, 135, 0.6);
}

/* Desktop Menu */
nav {
	float: right;
	width: 67%;
	font-size: 21px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 300;
	margin-top: 50px;
	text-align: right;
}

nav ul {
	z-index: 100;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*Top level list items*/
nav ul li {
	position: relative;
	display: inline;
}

/*Top level menu link items style*/
nav ul li a {
	width: 20%;
	color: #292929;
	padding-top: 10px;
	padding-bottom: 10px;
	text-decoration: none !important;
	padding-left: 16px;
	padding-right: 16px;
	margin-left: 12px;
	margin-right: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0);
	-webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

* html nav ul li a { /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
}

/*nav ul li a:link, nav ul li a:visited {
	color: #292929;
}*/

nav ul li a.selected { /*CSS class that's dynamically added to the currently active menu items' LI A element*/ 
	color: #292929;
}

nav ul li .active, nav ul li a:hover {
	color: rgb(0, 0, 135);
}
	
/* sub menus */
nav ul li ul {
	text-align: left;
	position: absolute;
	left: -3000px;
	margin-top: 16px;
	margin-left: 20px;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
}

/*Sub level menu list items (alters style from Top level List Items)*/
nav ul li ul li {
	display: list-item;
	float: none;
	background-color: rgba(0, 0, 135, 0.6);
	-webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
nav ul li ul li ul {
	top: 0;
}

/* Sub level menu links style */
nav ul li ul li a {
	display: block;
	font-weight: 900;
	font-size: 16px;
	text-align: left;
	width: 170px; /*width of sub menus*/
	padding-top: 10px;
	padding-bottom: 10px;
	margin: 0;
	color: white !important;
	border-top-width: 0;
	margin-top: 1px !important;
	border-bottom: none !important;
}

nav ul li ul li:first-child {
}

nav ul li ul li:last-child {
}

nav ul li ul li:hover {
	background-color: rgba(103, 190, 56, 0.5);	
}

nav ul li ul li a:hover {
	color: white !important;
}

/* Holly Hack for IE \*/
* html nav{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
	position: absolute;
	top: 12px;
	right: 7px;
}

.rightarrowclass{
	position: absolute;
	top: 6px;
	right: 5px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{ 
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	/*background-color: #ccc;*/ /* generally should be just a little lighter than the box-shadow color for CSS3 capable browsers */
}

.toplevelshadow{
	margin: 5px 0 0 5px; /* in NON CSS3 capable browsers gives the offset of the shadow */
	/* opacity: 0.8; shadow opacity mostly for NON CSS3 capable browsers. Doesn't work in IE */
}

.ddcss3support .ddshadow.toplevelshadow {
	margin: 0; /* in CSS3 capable browsers overrides offset from NON CSS3 capable browsers, allowing the box-shadow values in the next selector to govern that */
	/* opacity: 1; */ /* optionally uncomment this to remove partial opacity for browsers supporting a box-shadow property which has its own slight gradient opacity */
}

.ddcss3support .ddshadow {
	
}

@media only screen and (max-width: 1100px) {	
	nav {
		font-size: 19px;
	}
	
	nav ul li a {
		padding-left: 12px;
		padding-right: 12px;
	}
}

@media only screen and (max-width: 959px) {	
	nav {
		margin-top: 20px;
		font-size: 17px;
	}

	nav ul li a {
		padding-left: 3px;
		padding-right: 3px;
	}
}

@media only screen and (max-width: 479px) {
	.dropdown .dropdown-menu {
		margin-top: 40px;
	}
}