	#mainMenu{
		background-image:url(../images/phimvang_10.gif);
		background-position:top left;
		background-repeat:repeat-x;
		/*background-color: #000;	/* Background color of main menu */
		font-family: Arial, Helvetica, sans-serif;
		font-size:12px;
		height:28px;	/* Height of main menu */
		position:relative;	/* Don't change this position attribute */
		vertical-align:middle;
		border-bottom: 1px solid #000;
		
	}
	#mainMenu a{
		padding-left:15px;	/* Spaces at the left of main menu items */
		padding-right:15px;	/* Spaces at the right of main menu items */
		font-weight:bold;
		height: 30px;
		/* Don't change these two options */
		position:absolute;
		top: 2px;
		bottom: 3px;	/* Change this value to -2px if you're not using a strict doctype */
		font-weight:bold;
		text-transform:uppercase;
	}
	
	#mainMenu .activeMenuItem{
  		background-image:url('../images/tabmenu_left.gif');
  		background-position: top left;
 		 background-repeat:no-repeat;
  		cursor:pointer;  /* Cursor like a hand when the user moves the mouse over the menu item */
		font-weight:bold;
		text-transform:uppercase;
		text-decoration:none;
		color:#FC3;
} 
#submenu{	
		font-family: Arial, Helvetica, sans-serif;	/* Font  of sub menu items */
		font-size:12px;
		font-weight:bold;
		padding: 1px 0 3px 0;
		/*background-color:#E2EBED;	/* Background color of sub menu items */
		background-repeat:repeat-x;
		background-position:top;
		width:100%;	/* Don't change this option */
		background-color: #383838;
		
	}	
#submenu div{
		white-space:nowrap;	/* Don't change this option */
		padding: 3px 0;
	}
	/*
	Style attributes of active menu item 
	*/
	#mainMenu .activeMenuItem{
		/* Border options */
		border-left:none;
		border-top: none;
		border-right: none;
		background-color: #E2EBED;	/* Background color */
		
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}
	
	#mainMenu .activeMenuItem img{
		position:absolute;
		bottom:2px;
		right:0px;
	}
		
#mainMenu .inactiveMenuItem{		
		color: #000;	/* 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:5px;	/* Space at the left of each sub menu item */
		padding-right:5px;	/* Space at the right of each sub menu item */
		color: #CCC;	/* Text color */
		font-size:0.9em; 
	}
	
	#submenu a:hover{
		color: #FC3;	/* Red color when the user moves the mouse over sub menu items */
	}
	