	
	/* remove the list style */
	#nav {
		margin:0; 
		padding:0; 
		list-style:none;
		float:right;
		margin-top:25px;
		width:505px;
		background-color:#FAF8CC;
		border-top:1px solid #999;
		border-left:1px solid #999;
		border-bottom:1px solid #999;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav li {
			float:left; 
			display:block; 
			width:120px; 
			position:relative;
			z-index:500;
			background-color:#FAF8CC;
		}
		
		/* this is the parent menu */
		#nav li a
		{
			display:block; 
			padding:8px 5px 0 5px; 
			font-weight:700;  
			height:23px; 
			text-decoration:none; 
			text-align:center; 
			color:#000;
		}

		#nav li a:hover {
			background-color:#FFE87C;
		}
	
		/* submenu, it's hidden by default */
		#nav ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
		}
		
		#nav ul li {
			width:120px; 
			float:left; 
			border-top:1px solid #999;
			font-size:12px;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			height:15px;
			padding: 8px 5px; 
			color:#000;
		}
		
		#nav ul a:hover {
				
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #nav ul {
			margin:0 0 0 -2px;
		}
