
	/* remove the list style */
	#nav1 {
		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 */
		#nav1 li {
			float:left; 
			display:block; 
			min-width:70px;
			position:relative;
			z-index:500; 
			margin:0 0px;


			white-space:nowrap;
		}
		
		/* this is the parent menu */
		#nav1 li a {
			display:block; 

			1margin-top:48px;
			wfont-weight:700;  
			1height:23px; 
			text-decoration:none; 
			color:#fff; 
			text-align:center; 

			1border-top:solid 1px white;
			font-family: Verdana,Helvetica,Arial,sans-serif;
			font-size: 11px;
			font-weight:bold;
			margin:0;
			line-height:130%;
		}
		#nav1 .TopLink{
			height:53px;
			1width:auto;
			float:left;
			clear:both;
			1display:block;
			border-left:solid 1px white;
			background-color:red;
		}
		.BotLink{
			clear:both;
			display:block;
			padding:0px 10px 0px 10px;
			margin:0;
		}
		#nav1 li a:hover {
			color:#ffaf1c;
			1background-color:#BA1819;
		}
	
		/* you can make a different style for default selected value */
		#nav1 a.selected {
			1color:#ffaf1c;
			color:black;
			
		}

		#nav1 a.selected .BotLink {
			background-color:white;
		}
		/* submenu, it's hidden by default */
		#nav1 ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
			width:150px;
		}
		
		#nav1 ul li {
			2width:100px; 
			width:100%;
			float:left; 
			border-top:1px solid #fff;
			height:auto;
			background-color:#BA1819;
		}
		
		#nav1 ul ul li{
			1border-left:1px solid white;
		}
		/* display block will make the link fill the whole area of LI */
		#nav1 ul a {
			display:block;  
			height:15px;
			padding: 0px 3px 3px 3px; 
			color: white;
			margin:0;
		}
		
		#nav1 ul a:hover {
			qtext-decoration:underline;	
		}

		#nav1 #nav2 li{
			2width:150px;
			min-width:100px;
			text-align:left;
			border-left:solid 1px white;
			border-top:0;
		}
		#nav1 #nav2 li a{
			text-align:left;
			border-top:1px solid #fff;
			padding: 3px 3px 3px 10px; 
		}

		#nav1 #nav2 .selected{
			background-color:white;
		}

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

