	/* remove the list style */
	/*#navigation {
	width: 570px;
	height: 50px;
	position: relative;
	z-index: 999;
	left: 642px;
	top: -545px;
	right: 0px;
	bottom: 0px;
}*/
	#nav {
	list-style:none;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	}	
	
		/* 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: auto;
	position: relative;
	z-index: 500;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 5px;
	height: auto;
	padding: 0px;
		}
		
		/* this is the parent menu */
		#nav li a {
	display: block;
	font-weight: bold;
	height: auto;
	text-decoration: none;
	color: #fff;
	text-align: center;
	color: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	padding-top: 7px;
	padding-right: 7px;
	padding-bottom: 0;
	padding-left: 3px;
	margin-bottom: 9px;
}

		#nav li a:hover {
	color: #CCC;
		}
	
		/* you can make a different style for default selected value */
		#nav a.selected {
	color:#CCC;
		}
	
		/* submenu, it's hidden by default */
		#nav ul {
	position:absolute;
	left:0;
	display:none;
	list-style:none;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: -1px;
	background-repeat: repeat;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
		}
		
		#nav ul li {
	width:140px;
	float:left;
	background-repeat: repeat;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
	display: block;
	height: 13px;
	color: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	text-decoration: none;
	margin: 0px;
	text-align: left;
	padding-top: 5px;
	padding-right: 8px;
	padding-bottom: 5px;
	padding-left: 8px;
	background-image: url(../images/drop-back.png);
	width: 124px;
		}
		
		#nav ul a:hover {
	text-decoration:none;
	color: #4686B3;
	background-color: #000;
		}

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