.clear {clear:both}	
/* remove the list style */
#nav {
	margin:0; 
	padding:0; 
	list-style:none;
}	

ul#nav {
	margin: 150px 40px 0 0;	
	float: right;
}
	
/* 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:110px; 
	position:relative;
	z-index:500; 
	margin:0 1px;
	font-size: 14px;
	font-weight: bold;
}
	
/* this is the parent menu */
#nav li a {
	display:block; 
	padding:5px; 
	text-decoration:none; 
	text-align:center;
	color: #ffffff;
}

#nav li a:hover, #nav a.selected {
	color: #ee903c;
}

/* submenu, it's hidden by default */
#nav ul {
	background:url(../images/menuslider.png);
	position:absolute;
	top:-5px;
	left:0; 
	display:none; 
	margin:0; 
	padding:35px 0 15px 0;
	border-bottom:#888 1px solid;
	list-style:none;
}

#nav ul li {
	width:123px; 
	float:left; 
}

/* display block will make the link fill the whole area of LI */
#nav ul a {
	display:block;  
	height: 100%;
	padding: 5px; 
	color:#ffffff;
}

#nav li ul li a { font-size: 12px; }

#nav ul a:hover {
	color: #ee903c;
}

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