	body {
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight: lighter;
}
	
	/* 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:95px;
	position:relative;
	z-index:500;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: lighter;
	margin-top: 0;
	margin-right: 1px;
	margin-bottom: 0;
	margin-left: 1px;
	height: 65px;
		}
		
		/* this is the parent menu */
		#nav li a {
	display:block;
	font-weight:normal;
	height:41px;
	text-decoration:none;
	color:#fff;
	text-align:center;
	color:#FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	padding-top: 29px;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 5px;
		}

		#nav li a:hover {
	color:#fff;
	background-image: url(../images/menu_bg.gif);
	background-repeat: repeat-x;
		}
	
		/* you can make a different style for default selected value */
		#nav a.selected {

		}
	
		/* submenu, it's hidden by default */
		#nav ul {
	position:absolute;
	left:0;
	display:none;
	padding:0;
	list-style:none;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: -1px;
		}
		
		#nav ul li {
	width:100px;
	float:left;
	border-bottom-color: #FFF;
	height: 20px;
	text-align: center;
	display: block;
	padding-top: 1px;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
	display:block;
	height:16px;
	color:#FFF;
	font-size: 9px;
	text-align: center;
	float: none;
	background-color: #000;
	padding-top: 3px;
	padding-bottom: 1px;
	z-index: 5;
	padding-left: 1px;
		}
		
		#nav ul a:hover {
	color: #CCC;
		}

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