@charset "UTF-8";
/* CSS Document */

/* 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; 
	position:relative;
	z-index:500; 
	margin:0 1px;
}

/* this is the parent menu */
#nav li a {
	display:block;  
	height:40px; 
	line-height: 40px;
	text-decoration:none; 
	color: #ffce03;
	text-align:center; 
	padding: 0px 12px;
	font-family:  Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: bold;
}

#nav li ul li a {
	background-color: #000;
	display:block;  
	text-decoration:none; 
	color: #ffce03;
	text-align:center; 
	padding: 2px 4px;
	font-family:  Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: bold;
}

#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:-5px; 
	display:none; 
	margin:0 0 0 -1px; 
	padding:0; 
	list-style:none;
}

#nav ul li {
	width:125px; 
	float:left; 
	/*border-top:1px solid #fff;*/
}

/* display block will make the link fill the whole area of LI */
#nav ul a {
	display:block;  
	color:#666;
}


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

.top_nav ul li{
	border-right: 1px solid grey;	
}

.top_nav ul li ul li{
	border-right: none;	
	border-bottom: 1px solid grey;
}

#nav #current{
	color: white;	
}