#lava {
		/* you must set it to relative, so that you can use absolute position for children elements */
		position:relative; 
		text-align:right;
		width:725px; 
		height:40px;

	}
	
	#lava ul {
		/* remove the list style and spaces*/
		margin:0; 

		padding:0; 
		list-style:none; 
		display:inline;
		left:65px;
				
		/* position absolute so that z-index can be defined */
		position:absolute; 
		
		/* center the menu, depend on the width of you menu*/
		top:0; 
		
		/* should be higher than #box */
		z-index:100;

	}
	
	#lava ul li {
		
		/* give some spaces between the list items */
		margin:0 5px; 
		
		/* display the list item in single row */
		float:left;
		height:40px;
		padding-top:15px;
		padding-right:20px;
		
	}
	
	#lava #box {
		
		/* position absolute so that z-index can be defined and able to move this item using javascript */
		position:absolute; 
		left:0; 
		top:0px; 
		
		/* should be lower than the list menu */
		z-index:100; 

		/* image of the right rounded corner */
		
		height:2px;
		
		/* add padding 8px so that the tail would appear */
		padding-right:0px;
		
		/* self-adjust negative margin to make sure the box display in the center of the item */
		margin-left:-5px;
	}
	
	#lava #box .head {
		/* image of the left rounded corner */
		background:#000000;
		height:2px;

		/* self-adjust left padding to make sure the box display in the center of the item */
		padding-left:10px;
	}