		#mainMenu{
		#background-color: #FFF;	/* Background color of main menu */
		-x-system-font:none;
		font-family: Arial, sans-serif;	/* Fonts of main menu items */
		font-size:23px;	/* Font size of main menu items */
		border-bottom:5px dashed #b1c800;	/* Bottom border of main menu */
		height:30px;	/* Height of main menu */
		position:relative;	/* Don't change this position attribute */
		margin-top: 37px;
	}
	#mainMenu a{
		padding-left:32px;	/* Spaces at the left of main menu items */
		padding-right:32px;	/* Spaces at the right of main menu items */
		#font-weight:bold;
		/* Don't change these two options */
		position:absolute;
		bottom:0px;	/* Change this value to -2px if you're not using a strict doctype */
		text-decoration: none;
	}
	#submenu{		
		font-family: Arial, sans-serif;	/* Font  of sub menu items */
		#background-color:#ffffff;	/* Background color of sub menu items */
		padding-top: 5px;
		width:100%;	/* Don't change this option */
		margin-bottom: 55px;
		font-size:17px;
		color: grey;
	}	
	#submenu div{
		white-space:nowrap;	/* Don't change this option */
		
	}
	/*
	Style attributes of active menu item 
	*/
	#mainMenu .activeMenuItem{
		/* Border options */
		border-left:5px dotted #ffffff;
		border-top:5px dotted #ffffff;
		border-right:5px dotted #ffffff;		
		background-color: #b1c800;	/* Background color */
		color: #ffffff;
		font-weight: bold;
		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: #79b1d4;	/* Text color */
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}
	
	#submenu a{	
		text-decoration:underline;	/* No underline on sub menu items - use text-decoration:underline; if you want the links to be underlined */
		padding-left:10px;	/* Space at the left of each sub menu item */
		padding-right:10px;	/* Space at the right of each sub menu item */
		color: #79b1d4;	/* Text color */
		font-size:17px;
	}
	
	#submenu a:hover{
		color: #FF0000;	/* Red color when the user moves the mouse over sub menu items */
	}

