@charset "GB2312";

	#mainContainer{
		width:575px;
		height:400px;
		border:0px solid #FFFFFF;
		margin:auto;
		background-repeat:no-repeat;
		padding-top:0px;			
	}
	#mainMenu{
		background-color: #B45F04;	/* Background color of main menu */
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Fonts of main menu items */
		font-size:0.9em;	/* Font size of main menu items */
border-left:1px solid #B45F04;
border-top:0px solid #B45F04;
border-right:1px solid #B45F04;	
		border-bottom:1px solid #B45F04;	/* Bottom border of main menu */
		height:0px;	/* Height of main menu */
		position:relative;	/* Don't change this position attribute */
	}
	#mainMenu a{
float:left;
		padding-left:1px;	/* Spaces at the left of main menu items */
		padding-right:1px;	/* Spaces at the right of main menu items */
		font-weight:bold;	/* Don't change these two options */
		/* position:absolute; */
		bottom:-1px;	/* Change this value to -2px if you're not using a strict doctype */
background: #F6FFD5;
margin:1px 1px 1px 1px;
padding:2px 2px 2px 2px;
text-decoration:none;
letter-spacing: 1px;
	}
	#submenu{		
		/*font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	 Font  of sub menu items */
		background-color:#FFFFFF;	/* Background color of sub menu items */
		padding-left:20px;
		/* width:100%;	Don't change this option */
		height:270px;
	}	
	#submenu div{
		white-space:nowrap;	/* Don't change this option */
		
	}
	/*
	Style attributes of active menu item 
	*/
	#mainMenu .activeMenuItem{
		/* Border options */
		border-left:2px solid #EDA131;
		border-top:2px solid #EDA131;
		border-right:2px solid #EDA131;		
		background-color: #EDA131;	/* Background color */
		
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}
	
	#mainMenu .activeMenuItem img{
		position:absolute;
		bottom:0px;
		/* right:0px; */
	}
		
	/*
	Style attributes of inactive menu items
	*/
	#mainMenu .inactiveMenuItem{		
		color: #000000;	/* Text color */
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}
	
	#submenu a{	
		text-decoration:none;	/* No underline on sub menu items - use text-decoration:underline; if you want the links to be underlined */
		padding-left:0px;	/* Space at the left of each sub menu item */
		/*padding-right:5px;	 Space at the right of each sub menu item */
		color: #000000;	/* Text color */
		font-size:0.9em; 
	}
	
	#submenu a:hover{
		color: #0000CC;	/* Red color when the user moves the mouse over sub menu items */
	}
	