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

<style type="text/css">
	
	/* remove the list style */
	#dp_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 */
		#dp_nav li {
			margin: 0 auto;
			z-index:500;
			
		}
		
		/* this is the parent menu */
		#dp_nav li a {
			text-decoration:none;
			background: #111;
			display: block;
			width: 170px;
			padding: 8px 4px;
		}
	
	
		/* submenu, it's hidden by default */
		#dp_nav ul {
			width: 180px;
			display:none;
			list-style:none;
			margin-left: 10px;
		}
		
		#dp_nav ul li {
			filter:alpha(opacity=85);
			-moz-opacity:0.85;
			-khtml-opacity: 0.85;
			opacity:0.85;
		}
		
		#dp_nav .ls_bord {			
			border-bottom:1px solid #222;
			-webkit-border-bottom-right-radius: 5px;
			-webkit-border-bottom-left-radius: 5px;
			-moz-border-radius-bottomright: 5px;  
			-moz-border-radius-bottomleft: 5px;  
		}
		
		/* display block will make the link fill the whole area of LI */
		#dp_nav ul a {
			color:#666;
		}
		
		#dp_nav ul a:hover {
			color: #F60;
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #dp_nav ul {
			margin:0 0 0 -2px;
		}

	</style>