
	
	/* remove the list style */
	#nav {
		margin:0; 
		padding:0; 
		list-style:none;
	}	
	
		/* 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:204px; 
			background:#372124; 
	        position;relative;
			z-index:500; 
			font-size:14px;
			font-weight: normal;
		}

	
		#nav li ul li{
			
			display:block; 
			width:190px; 
			background:#fefefe; 
			border-left:1px #ddd solid;
			border-right:1px #ddd solid;
			border-bottom:1px #ddd solid;
		    float:left;
			z-index:500; 
			font-size:13px;
			
			
		}
		
		/* this is the parent menu */
		#nav li a {
			display:block; 
			padding:0px 5px 10px 5px; 
			
			height:18px; 
			text-decoration:none; 
			text-align:center; 
			color:#b3ada6;
		}

		#nav li a:hover {
			color:#f4a348;
		}
	
		/* you can make a different style for default selected value */
		#nav a.selected {
			color:#f00;
		}
	
		/* 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:204px; 
			float:left; 
					}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			height:auto;
			padding: 8px 5px; 
			color:#666;
		}
		
		#nav ul a:hover {
			text-decoration:none;	
		}

		/* 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 0px;
		}

