#nav {
		margin:0; 
		padding:0; 
		list-style:none;
		position: relative;
		top:34px;
		left:110px;
		z-index:10; 
	}	
	
		/* 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:110px;
			position:relative;
			margin:0 1px;
			font-size:12px;
		}
		
		#nav li .head {
			font-size:12px;
			font-weight:500;
			border-right:1px solid #f00;}
			
		#nav li .headno {font-weight:500;
			font-size:12px;}	
		
		/* this is the parent menu */
		#nav li a {
			display:block; 
			padding:8px 5px 5px 5px;  
			height:20px; 
			text-decoration:none; 
			text-align:center; 
			color:#fff;
		}

		#nav li a:hover {
			color:#f00;
		}
	
		/* 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:110px; 
			float:left; 
			background-color:#CCC;
		}
		
		#nav ul li a:hover {
			width:auto; 
			background-color:#fff;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			height:15px;
			padding: 10px 5px; 
			color:#666;
			text-align:left;
		}
		
		#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 -2px;
		}
		
		#navlinks {	width:100px;
					position: absolute;
					left:795px;
					top:5px;
		}
		
		#navlinks a { 	text-decoration:none;
						color:#CCC;
						font-size:11px;
		}
		
		#navlinks a:hover { 
						color:#f00;
		}
