	/* remove the list style */
	#nav {
		
		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: inline;
			position:relative;
			z-index:500; 
		}
		
		/* this is the parent menu */
		#nav li a {
		}
		



		

	
		/* 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; 
			top: 32px;
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
			font-size: .9em;
		}
		
		#divMainMenu #nav ul li {
			width:205px;
			float:left; 
			background-color: #388bda;
			margin: 0;
			padding: 0 0 3px 0;
			border: none;
		}
		
		/* display block will make the link fill the whole area of LI */
	#divMainMenu #nav ul a {
			display:block;
			background-image: none;
			height:1.3em;
			line-height: 1.3em;
			padding: 8px 5px; 
			color:#FFFFFF;
			text-align: left;
			margin: 0 10px;
			text-transform: none;
			width: 175px;
			border-bottom: 1px solid #fff;
		}
		
	#divMainMenu #nav ul a:hover {
			color: #133E69;
		}

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