/*
To disable multiline nav links, set white-space: nowrap in
a.navbutton and a.navbutton_f2, and remove the display: block from the
a.navbutton(_f2) span classes

To have different settings for hoofdnav/top menu items and
subnav/submenu items, first do the settings for top menu items, and
then do submenu items as more-specific overrides. See below for an
example.
*/

/* 
	BASIC REQUIREMENTS FOR THE DROPDOWN MENU
	Generally you do not have to edit this
*/
nav.nav-dropdown {
	float: right;
	margin-right: 0px;
	margin-top: 25px;
	font-size: 13px;
	font-weight: bold;
	z-index: 9000000;
}
ul.dropdownmenu {
	display: block;
	margin:0px;
	padding: 0px;

}
ul.dropdownmenu li {
	display: block;
	float: left;
	position: relative;
	z-index:1;
	top: 0px;
	left: 0px;
	padding: 0px;
	margin: 0px;
	background-image: url(../images/intermobiel/nav-down.png);
	background-repeat: no-repeat;
	background-position: center right;
	border: 0px solid red;
	margin-right: 15px;
	padding-right: 15px;
}
ul.dropdownmenu li ul {
	position: absolute;
	right: 0px;
	z-index: 1;
	display: none;
	margin:0;
	padding:0;
	/*
	background-image: url(../images/intermobiel/subnav-arrow.png);
	background-repeat: no-repeat;
	background-position: top right;
	*/
}
ul.dropdownmenu li:hover {
	background-image: url(../images/intermobiel/nav-up.png);
}
ul.dropdownmenu li ul li:hover, ul.dropdownmenu li.filler {
	background-image: none;
}
ul.dropdownmenu li:hover > ul {
	display: block;
}
ul.dropdownmenu li ul li {
	width:150px;
	background-image: none;
	margin-right: 0px;
	padding-right: 0px;
	margin-left: 2px;
	
	/*margin-bottom: 2px;*/
	border-bottom: 2px solid transparent;
}
ul.dropdownmenu li ul li a:hover {
	opacity: 1.0;
    filter: alpha(opacity=100); /* For IE8 and earlier */
	background-color:#00ACE7;
}
ul.dropdownmenu li ul li a {
	font-size: 12px;
	color: #FFF;
	font-weight: normal;
	opacity: 0.85;
    filter: alpha(opacity=85); /* For IE8 and earlier */
	background-color:#00ACE7;
}
ul.dropdownmenu a {
	white-space: nowrap;
	margin: 0px;
	width: auto;
}

/*	TOP-MENU FILLER AREA THAT ENABLES TOUCH-TO-CLOSE ON IPADS */

ul.dropdownmenu > li.filler {
	float: none;
	overflow: hidden;
	min-width: 1px;
	margin: 0px;
	padding-right: 0px;
}

ul.dropdownmenu > li.filler > a {
	padding-left: 0px;
	padding-right: 0px;
	border-left: 0px;
	border-right: 0px;
}

ul.dropdownmenu > li.filler:hover > a {
	background-color: transparent !important;
}


/*
	CUSTOM STYLE ATTRIBUTES FOR THE DROPDOWN MENU
	change this to style the dropdown menu to your liking
*/

/*
	MAIN MENU
*/
nav {
}

ul.dropdownmenu {
	
}

ul.dropdownmenu > li {
	
}
ul.dropdownmenu > li:hover {
	
}
ul.dropdownmenu > li a { 
	padding: 5px 10px;
}

ul.dropdownmenu > li:hover > a {

}
	
/*
	SUB MENU
*/

/* set styles specific for NON-selected nav-items here */
/* you can set the style on the li or a element, depending on the type of style you want to apply */
ul.dropdownmenu li ul {
	/* dropdown menu element: apply styles like backround-color and borders */
	padding-top: 7px;
	background-image: url(../images/intermobiel/subnav-arrow.png);
	background-repeat: no-repeat;
	background-position: 125px 0px;
	right: -10px;
}

ul.dropdownmenu li ul li a {
	min-width: 130px;
	width:auto !important;
	width:130px;
	padding: 10px;
}


/* set styles specific for hover nav-items here */
/* you can set the style on the li or a element, depending on the type of style you want to apply */
ul.dropdownmenu li ul li:hover {
	/* hover menu item element: apply styles like background-color */
	/*background-color: #00ACE7;*/
}
ul.dropdownmenu li ul li:hover > a {
	/* hover link element: apply styles like background-color, color, font-weight, text-decoration */
	color:#000000;
}

/*
	SUB-SUB MENU
*/
ul.dropdownmenu li li ul {
	left: 100%;
	top: 0px;
  padding-top: 0px;
	/*background-color:#00ACE7;*/
}
