/* 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: 80px;
	height: 38px;
	position: relative;
	z-index: 500;
	margin: 0px;
}
#nav li a.active {
	color: #FFF;
}
#nav li a:hover {
	color: #FFF;
}
/* this is the parent menu */
#nav li a {
	display: block;
	font-weight: 700;
	height: 20px;
	text-decoration: none;
	text-align: center;
	color: #00FFFF;
	padding-left: 3px;
	padding-top: 10px;
	font-size: 14px;
}
#nav li a:hover {
	color: #FFF;
}
/* 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: 5px 0 0 -1px;
	padding: 0;
	list-style: none;
	background: #FFF;
	color: #333;
}
#nav ul li {
	width: 150px;
	float: left;
	border-top: 1px solid #CCC;
	color: #0582BD;
	
}
/* display block will make the link fill the whole area of LI */
#nav ul a {
	display: block;
	color: #333;
	text-align: left;
	font-size: 11px;
	text-align: center;
}
#nav ul li a.active {
	color: #0582BD;
}
#nav ul a:hover {
	color: #0582BD;
	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;
}
