	#mainMenu{
		background-color: #FFF;	/* Background color of main menu */
		background-image:url('/images/menu_bkgnd.png');
		background-repeat:repeat-x;
		text-align:center;
		border-bottom:0px solid #000000;	/* Bottom border of main menu */
		height:80px;	/* Height of main menu */		
		position:relative;	/* Don't change this position attribute */
	}
	#mainMenu a{
		padding-left:0px;	/* Spaces at the left of main menu items */
		padding-right:0px;	/* Spaces at the right of main menu items */
		font-weight:bold;
		font-family: Tahoma, Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Fonts of main menu items */
		font-size:13px;	/* Font size of main menu items */
		/* Don't change these two options */
		position:absolute;
		/*bottom:-1px;*/	/* Change this value to -2px if you're not using a strict doctype */
		width:126px;
		height:80px;
/*		padding-top:40px;*/
	}
	#mainMenu a:hover{
		text-decoration:none;
		/*height:45px;
		padding-top:35px;*/
	}
	#submenu{		
		font-family: Tahoma, Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Font  of sub menu items */
		
		/*background-color:#E2EBED;*/	/* Background color of sub menu items */
		
		width:725px;	/* Don't change this option */
		height:37px;
		/*padding-left:30px;*/
		background-image:url('/images/submenu.png');
		background-repeat:repeat-x;
	}	
	#submenu div{
		white-space:nowrap;	/* Don't change this option */
		padding-top:10px;
	}
	/*
	Style attributes of active menu item 
	*/
	#mainMenu .activeMenuItem{
		/* Border options */
		height:80px;
		/*border-left:0px solid #000000;
		border-top:0px solid #000000;
		border-right:0px solid #000000;		
		background-color: #5F6366;	*//* Background color */
		color: #FFFFFF;
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
		background-image:url(/images/menu_cell_highlight2.png);
		background-repeat:repeat-y;
	}
	
	#mainMenu .activeMenuItem img{
		position:absolute;
		bottom:0px;
		right:0px;
	}
		
	/*
	Style attributes of inactive menu items
	*/
	#mainMenu .inactiveMenuItem{		
		color: #643E31;	/* Text color */
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
		background-image:url(/images/menu_cell.png);
	}
	
	#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:25px;	/* Space at the left of each sub menu item */
		padding-right:25px;	/* Space at the right of each sub menu item */
		color: #643E31;	/* Text color */
		font-size:13px;
	}
	
	#submenu a:hover{
		color: #DAA32C;	/* Red color when the user moves the mouse over sub menu items */
		font-size:14px;
	}
	