body {
font-family:arial;
font-size:11px;
}
/* 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: 180px;
	position: relative;
	z-index: 500;
	margin: 0 1px;
}
/* this is the parent menu */
#nav li a {
	display: block;
	padding: 8px 5px 0 5px;
	font-weight: 700;
	height: 20px;
	text-decoration: none;
	font-size: 11px;
	letter-spacing: 0px;
	color: #000000;
	text-align: left;
}
#nav li a:hover {
	color: #000000; /* 36424a */
}
/* you can make a different style for default selected value */
#nav a.selected {
	color: #0053A0;
}
/* 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: 180px;
	float: left;/*border-top:1px dotted #C9B57C;*/
}
/* display block will make the link fill the whole area of LI */
#nav ul a {
	display: block;
	height: 10px;
	padding: 7px 5px;
	line-height: 10px;
	color: #000000;
	background: #fff; /*#505F76;*/
	border-left: 1px solid #d9d9d9;
	border-right: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
	letter-spacing: 0px;
	font-size: 11px;
}
#nav ul a:hover {
	display: block;
	background: #d9d9d9;
	/*border-bottom:1px dotted #C9B57C; */
	color: #000000; /*#C9B57C;*/
}
/* 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;
}