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


	
	
	/* remove the list style */
	#nav {
		 width:920px; height:33px; background:url(../images/nav-bg.png) repeat-x;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav li {
			float:left; 
			display:block; 
			position:relative;
			z-index:500; 
			
		}
		
		/* this is the parent menu */
		#nav li a {  font-size:14px; color:#fff; padding:8px 41px; text-transform:uppercase;  display:block;
			
			
		}

		#nav li a:hover, #nav li a.active {
			color:#fff;
			background:url(../images/hover-bg.png) repeat-x;
		}
	
		/* you can make a different style for default selected value */
		#nav a.selected {
			color:#f00;
		}
	
		/* submenu, it's hidden by default */
		#nav ul{ 
			position:absolute; 
		
			display:none;
			left:0; 		 
			padding:0; 
			list-style:none;
			background:#2074d9;
			text-transform:capitalize;
		}
		
		
		#nav.last-menu-itm{
			width:221px;
			right:0;
			position:absolute;
			padding:0px; 
			display:none;
			list-style:none;
			background:#26abe3;
			
			}
			
			#nav ul.last-menu-itm li{ width:221px;}
		 
		
		#nav ul li { width:221px;
		 
			 
			border-bottom:1px solid #fff;
			
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			
			padding: 5px 10px; 
			color:#fff;
			font-size:10px;
			text-transform:capitalize;
			font-weight:bold;
		}
		
	
		
	

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		
		
		
	
	