/* The following CSS is only for the demo */
		
	/****************************************************************************************
	* 	LAYOUT CSS FOR THE MENU
	****************************************************************************************/
	#lista a{	/* Main menu items */		
		text-decoration:none;
	}
	#lista ul li a{	/* Sub menu */		
		font-weight:normal;	
		color:red;	
		background:transparent;
	}	
		
	/*
	No bullets
	*/	
	#lista li{
		list-style-type:none;	
		line-height:15px;
	}
	
	/*
	No margin and padding
	*/
	#lista, #lista ul{
		margin:0px;
		padding:0px;
	}

	/* Margin of sub menu items */
	#lista ul{
		display:block;
		line-height:5px;
		margin:5px 0 0 5px;		
	}
	
	#lista ul li a{
		color:red;
		background:transparent;
		
	}
