@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; 
			width:100px; 
			position:relative;
			z-index:500; 
			margin:0 1px;
			font-size:14px;
		}
		
		/* this is the parent menu */
		#nav li a {
			display:block; 
			padding:10px 5px 0px 5px; 
			font-weight:700;  
			height:24px; 
			text-decoration:none; 
			color:#333;
			
		}

		#nav li a:hover {
			color:#344e68;
			
		}
	
		/* you can make a different style for default selected value */
		#nav a.selected {
			color:#000;
		}
	
		/* submenu, it's hidden by default */
		#nav ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
			/*background-color:#6699cc;*/
			background-image:url(../images/ButDivider.jpg);
			color:#FFF;
			border-left:#225180 1px solid;
			border-right:#225180 1px solid;
			border-bottom:#225180 2px solid;
		}
		
		#nav ul li {
			width:150px; 
			float:left; 

			font-size:12px;
			color:#FFF;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			height:15px;
			padding: 8px 5px; 
			color:#FFF;
		}
		
		#nav ul a:hover {	
			background-color:#2e6ba7;
			color:#FFF;
		}

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