





body {font-family:arial; font-size:11px;}
	
	/* 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:145px; 
			background:url(/files/menu/images/bg.jpg) repeat-x; 
			position:relative;
			z-index:500; 
			margin:0;
			border-right:1px solid #dbdbdb;
			height:34px;
			line-height:34px;
		}
		
		/* this is the parent menu */
		#nav li a {
			display:block; 
			padding:0px 10px;
			font-size:12px;
			font-weight:bold;  
			color:#b1b1b1;
			text-transform:uppercase;
			text-decoration:none; 
			color:rgb(50,100,50);
			text-align:center; 
			
			
		}

		#nav li a:hover {
			color:#747474;
			background:url(/files/menu/images/h.jpg) repeat-x;
			color:#0094D6;
		}
	
		/* 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:145px; 
			float:left;
			border-right:1px solid #dbdbdb;
			border-left:1px solid #dbdbdb;
			border-bottom:1px solid #dbdbdb;
			background:url(/files/menu/images/bg.jpg) repeat-x; 
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			padding:0 10px; 
			color:#b1b1b1;
			color:rgb(50,100,50);
		}
		
		#nav ul a:hover {
			
			color:#747474;
			background:url(/files/menu/images/bg.jpg) repeat-x;
			color:#0094D6;
		}

		/* 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;
		}

