/*
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
*/
ul.dropdownmenu {
	display: block;
	margin:0px;
	padding: 0px;
}
ul.dropdownmenu li {
	display: block;
	float: left;
	position: relative;
	top: 0px;
	left: 0px;
	padding: 0px;
	margin: 0px;
}
ul.dropdownmenu li ul {
	position: absolute;
	left: 0px;
	z-index: 1;
	display: none;
	margin:0;
	padding:0;
}
ul.dropdownmenu li:hover > ul {
	display: block;
}
ul.dropdownmenu li ul li {
	width:100%;
}
ul.dropdownmenu a {
	white-space: nowrap;
	margin: 0px;
	width: auto;
}


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

/*
	MAIN MENU
*/
nav {
	float:left;
	height:50px;
}

ul.dropdownmenu {
	
}

ul.dropdownmenu > li {
	
}
ul.dropdownmenu > li:hover {
	
}
ul.dropdownmenu > li a { 
	padding: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 */
	background-color:#C1C1C1;
}

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


/* 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: #F0F0F0;
}
ul.dropdownmenu li ul li:hover > a {
	/* hover link element: apply styles like background-color, color, font-weight, text-decoration */
	color:#FFF;
}

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