/*First of all, some basic styling to the ul and li elements to remove bullet points and other list styles. The inline-block and float:left attributes make the list display horizontally.

/*Strip the ul of padding and list styling*/
#menu ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

/*Create a horizontal list with spacing*/
#menu li {
	display:inline-block;
	float: left;
	margin-right: 1px;
}

/*The following attributes are almost exclusively for aesthetic appeal. If you intend to style this menu to your liking then this is the section of code to fiddle about with.

/*Style for menu links*/
#menu li a {
	display:block;
	min-width:120px;
	height: 50px;
	text-align: center;
	line-height: 50px;

	text-decoration: none;
}



/*Next up, some styling for the dropdown links. The first class defines that the dropdown will not be visible by default. And the final class says that the dropdown element will become visible on top level link hover.

/*Hide dropdown links until they are needed*/
 li ul {
	display: none;
}

/*Make dropdown links vertical*/
#menu  li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
 li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
 ul li a:hover + .hidden, .hidden:hover {
	display: block;
    background-color:white;
    
}

   /*Per aspxfilemanager per visualizzare le sottocartelle nel treeview*/
 .dxtvControl li ul {
	display: block;
	float: none;
}
