#myslidemenu {
	background-color:#86D13C;
	height:30px;
	width:960px;
}
/* remove the list style */
	#nav {
	margin:0;
	padding:0;
	list-style:none;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:14px;
}
/* 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:135px;
	background-color:#86D13C;
	position:relative;
	z-index:500;
	margin:0 1px;
}
/* this is the parent menu */
		#nav li a {
	display:block;
	padding:5px 2px 0 2px;
	font-weight:bold;
	height:24px;
	text-decoration:none;
	color:#fff;
	text-align:center;
}
#nav li a:hover {
	color:#e6e6e6;
	background-color:#578D21;
}
/* you can make a different style for default selected value */
		#nav a.selected {
	color:#fff;
}
/* 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:150px;
	float:left;
	border-top:1px solid #fff;
	font-size:13px;
}
/* display block will make the link fill the whole area of LI */
		#nav ul a {
	display:block;
	height:12px;
	padding: 5px 3px;
	color:#fff;
}
#nav ul a:hover {
	text-decoration:none;
	background-color:#578D21;
}
/* 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;
}

