	
	/* 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:183px; 
			background:#ccc; 
			position:relative;
			z-index:500; 
			margin:0 1px;
			border-bottom:1px solid #FFF;
			background-repeat:no-repeat;
			background-color:#194A8D;
			
		}
		
		/* this is the parent menu */
		#nav li a {
			display:block; 
			padding:16px 5px 15px 5px; 
			font-weight:700;  
			text-decoration:none; 
			color:#fff; 
			text-align:center; 
			border-right:2px solid #EA1F23;
		}

		#nav li a:hover {
			color:#fff;
			background-color:#032e69;
		}
	
		/* 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:184px; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
			top:0;
		}
		
		#nav ul li {
		
			float:left; 
			
			background-image:none;
			
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			font-size:12px;
			padding:5px 5px; 
			color:#fff;
		}
		
		#nav ul a:hover {
			text-decoration:underline;	
		}

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


		
		
		
		
		
		