@charset "gb2312";
/* CSS Document */

#navMenu {
	margin:0; 
	padding:0;
	list-style:none;	
	font-family:arial;
	text-align:center;
	line-height:100px;
}

	#navMenu li {
		float:left;	
		background:url(imagesdefault.gif) no-repeat center center;	/* default background image	*/
		width:85px;							/* width and height of the menu item */
		height:100px;
		position:relative;			/* must set it as relative, because .hover class top and left with absolute position will be positioned according to li.	*/
	}

	#navMenu li a {
	z-index:20;		/* z-index must be higher than .hover class */
	display:block;	/* display as block and set the height according to the height of the menu to make the whole LI clickable	*/
	height:100px;
	position:relative;
	color:#FFFFFF;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	letter-spacing: -1px;
	}

 	#navMenu li .hover {
		background:url(imagesover.gif) no-repeat center center;		/* mouseover image	*/
		position:absolute;	/* must be postion absolute 	*/
		width:85px;	/*	width, height, left and top to fill the whole LI item	*/
		height:100px;
		left:0; 
		top:0;	
		z-index:0;		/* display under the Anchor tag	*/
		display:none;	/* hide it by default	*/
	}	

	#navMenu li.selected {
		background:url(imagesdefault.gif) no-repeat center center;	/* selected image	*/
	}
	
	
	#navMenu_2 {
	margin:0; 
	padding:0;
	list-style:none;	
	font-family:arial;
	text-align:center;
	line-height:30px;

   
	color:#000;
}

	#navMenu_2 li {
		float:left;
		border-bottom:1px dashed #999;
		
		
		width:240px;							/* width and height of the menu item */
		height:35px;
		position:relative;			/* must set it as relative, because .hover class top and left with absolute position will be positioned according to li.	*/
	}

	#navMenu_2 li a {
	z-index:20;		/* z-index must be higher than .hover class */
	display:block;	/* display as block and set the height according to the height of the menu to make the whole LI clickable	*/
	height:30px;
	position:relative;
	color:#000000;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	letter-spacing: -1px;
	}

#navMenu_2 li a:hover {
	z-index:20;		/* z-index must be higher than .hover class */
	display:block;	/* display as block and set the height according to the height of the menu to make the whole LI clickable	*/
	height:30px;
	position:relative;
	color:#ffffff;

	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	letter-spacing: -1px;
	background-color:#36566e;
	}
	
 	#navMenu_2 li .hover {
		text-decoration:underline;
		background-color:#963;
		 
		position:absolute;	/* must be postion absolute 	*/
		width:240px;	/*	width, height, left and top to fill the whole LI item	*/
		height:30px;
		left:0; 
		top:0;	
		z-index:0;		/* display under the Anchor tag	*/
		display:none;	/* hide it by default	*/
	}	

	
