/* remove the list style */
#nav {
margin:0; 
padding:0; 
list-style:none;
width:130px;
margin-top:15px;

}	

/* make the LI display inline */
/* it's position relative so that position absolute */
/* can be used in submenu */
#nav li {
	/*float:left; 
	background:url(../images/bg_link.png) repeat-x; 
	position:relative;
	z-index:500; */
	margin:0 1px;
/*	padding:2px 0px 2px 2px;*/
	border-bottom:dotted 1px #666666;
	line-height:25px;
	padding-left:2px;
	list-style:outside;
	list-style:circle;
}

#nav li:hover {
	background:#cde0ff;
	color:#FFFFFF;
	list-style:outside;
	list-style:circle;

}
/* this is the parent menu */
#nav li a {
	/*display:block; */
	padding:0px; 
/*	font-weight:700; */  
	text-decoration:none; 
	color:#000; 
	text-align:left; 
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	display:block;
	list-style:outside;
	list-style:circle;
}

#nav li a:hover {
	color:#0a2c65;
	display:block;
	list-style:outside;
	list-style:circle;
}

/* you can make a different style for default selected value */
#nav a.selected {
	color:#282828;
}

/* 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:120px; 
	float:left; 
	border-top:1px solid #fff;
}

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

#nav li.seleced {
	display:block;  
	padding:0px; 
	color:#0000ff;
	font-weight:bold;
}
#nav li.seleced a{
	color:#ff0000;
	background:#eaeaea;
	padding-left:5px;
}
#nav ul a:hover {
	text-decoration:underline;	
}

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