/* CSS Document */

#menu_box {
	margin-top: 69px;
}

#nav {
	margin:0;
	padding:0; 
	list-style:none;
	float: left;
	z-index: 110;
}	
	
	/* make the LI display inline */
	/* it's position relative so that position absolute */
	/* can be used in submenu */
	#nav li {
		float:left;   
		position:relative;
		z-index:500; 
		margin:0 1px;
	}
		
	/* this is the parent menu */
	#nav li a {
		display:block; 
		font-weight:700;  
		padding: 11px 40px 9px; /* FOR 6 ELEMENTS IN THE MENU padding: 11px 24px 9px; */
		text-decoration:none; 
		color:#fff; 
		text-align:center; 
	}

	#nav li:hover {		
		background: #223332;
	}
	
	/* 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; 
			left:0; 
			display:none; 
			margin:0 0 0 0px; 
			padding:0 0 4px 0; 
			list-style:none;
			background-color: #223332;
			-moz-border-radius-bottomleft: 8px;
			-webkit-border-bottom-left-radius: 8px;
    		-moz-border-radius-bottomright: 8px;
			-webkit-border-bottom-right-radius: 8px;
		}
		
		#nav ul li {
			text-align: left;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;
			width: 180px;
			height:15px;
			color:#FFF;
			text-align: left;
		}
		
		#nav ul a:hover {
			background-color: #112221;	
		}

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

#nav li.selected {
	background-color: #0CC;
}

#home a{
	background-image: url(../images/sprite_icon.png);
	background-position: 0 -39px;
	background-repeat: no-repeat;
	width: 21px;
	height: 19px;
	display: block;
	float: left;
	width: 70px;
	height: 39px;
	margin-left: 15px;
	//margin-top: -1px;
}

#home a:hover{
	background-image: url(../images/sprite_icon.png);	
	background-position: 0 0;
	background-repeat: no-repeat;
}
