/* CSS Document */

.clear {clear:both}

#navbar {
	width:780px;
}

/* navigation style */
/* remove the list style */
#nav {
	font-family:Arial, Helvetica, sans-serif;
    font-size:.7em;
    font-weight:bold;
	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:inline; 
		width:193px; 
		background:#00388e; 
		position:relative;
		margin:0 1px;
		z-index:500;
	}
		
	/* this is the parent menu */
	#nav li a {
		display:block; 
		padding:9px 5px 0 5px; 
		font-weight:700;
		height:23px; 
		text-decoration:none; 
		color:#fff; 
		text-align:center;
		background:#00388e;
	}

	#nav li a:hover {
		color:#fff;
		background:#ea0000;
	}
	
	/* you can make a different style for default selected value */
	#nav a.selected {
		color:#fff;
	}
	
		/* submenu, it's hidden by default */
		#nav ul {
			width:194px;
			position:absolute;
			display:none;
			list-style:none;
			z-index:1;
		}
		
		#nav ul li {
			width:194px; 
			float:left; 
			border-top:2px solid #fff;
			display:inline; 
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			height:15px;
			padding:9px 3px; 
			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;
		}
