/* CSS Document */

	
	/* remove the list style */
	#nav {
		margin:0; 
		padding:0; 
		list-style:none;
		font-size:12px;
		font-family:Arial, Helvetica, sans-serif;
		
	}	
	
		/* 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:120px; 
			background:url(../images/bgmenubar.gif) repeat-x;
			position:relative;
			z-index:500; 
			margin:0 0px;
			text-transform:uppercase;
			font-weight:bold;
		}
		
		/* this is the parent menu */
		#nav li a {
			display:block; 
			padding:10px 5px 0 5px; 
			font-weight:700;  
			height:26px; 
			text-decoration:none; 
			color:#fff; 
			text-align:center; 
			
		}

		#nav li a:hover {
			color:#FFFF00;
			
		}
		#nav #linemenu{
			width:2px;
		}
		/* you can make a different style for default selected value */
		#nav a.selected {
			color:#FFFF00;
		}
	
		/* submenu, it's hidden by default */
		#nav ul {
			background:transparent;
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
			background-color:#2662ea;
			border-left:solid #0145ba 5px;
			border-bottom:solid #0145ba 2px;
			border-right:solid 1px #0145ba;
			
			
		}
		
		#nav ul li {
			
			float:left; 
			background:transparent;
			text-transform:none;
			text-align:left;
			width:150px;
			
		}
		#nav ul li a:hover{
			background-color:#2c91f5;
			
		}
		#nav ul #binh {
			background:url(../images/linemenuleft.gif) repeat-x; height:2px;
		}
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			height:15px;
			padding: 5px 0px; 
			color:#FFFFFF;
			text-decoration:none;
			text-align:left;
			padding-left:5px;
				
		}
		
		#nav ul a:hover {
			text-decoration:none;	
			color:#FFFF00;
		}

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

