	/* 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:120px;
	position:relative;
	z-index:1;
		}
		
		/* this is the parent menu */
		#nav li a {
	display:block;
	height:25px;
	text-decoration:none;
	color:#fff;
	text-align:center;
	color:#333;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-attachment: scroll;
	background-image: url(../Assets/nav-base.gif);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	line-height: 25px;
	font-weight: normal;
		}

		#nav li a:hover {
		color: #666666;
		background-attachment: scroll;
		background-image: url(../Assets/nav-over.gif);
		background-repeat: no-repeat;
		background-position: left top;
		}
	
		/* 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:160px;
	float:left;
	background-color: #FFFFFF;			
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
	display:block;
	height:25px;
	color:#666;
	background-attachment: scroll;
	background-image: url(../Assets/nav-base-long.gif);
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 1px;
	text-align: left;
	padding-left: 10px;
		}
		
		#nav ul a:hover {
	color: #666666;
	background-attachment: scroll;
	background-image: url(../Assets/nav-over-long.gif);
	background-repeat: no-repeat;
	background-position: center top;
		}

		/* 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;
		}