#lava {
	/* you must set it to relative, so that you can use absolute position for children elements */
		position:relative;
	background:url(bar.gif) no-repeat center bottom;
	text-align:center;
	height:40px;
	width: 550px;
	}
	
	#lava ul {
		/* remove the list style and spaces*/
		margin:0; 
		padding:0; 
		list-style:none; 
		display:inline;
				
		/* position absolute so that z-index can be defined */
		position:absolute; 
		
		/* center the menu, depend on the width of you menu*/
		left:110px; 
		top:0; 
		
		/* should be higher than #box */
		z-index:100;

	}
	
	#lava ul li {
	/* display the list item in single row */
		float:left;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 10px;
	}
	
	#lava #box {
	/* position absolute so that z-index can be defined and able to move this item using javascript */
		position:absolute;
	left:0;
	top:0;
	/* should be lower than the list menu */
		z-index:50;
	height:20px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
	background-repeat: no-repeat;
	background-position: right center;
	}
	
	#lava #box .head {
	height:20px;
	background-repeat: no-repeat;
	background-position: 0 0;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
	}
#lava li a {
	text-decoration: none;
	color: #6D7F85;
}
#lava .selected a {
	color: #000000;
}


	
	
	#container {
	text-align:left;
	width:583px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 20px;
	float: right;
	}
#lava li a:hover {
	text-decoration: none;
	color: #333333;
}

