	#mainMenu{
		 
			/* Background color of main menu */
			
		font-family:Arial;	/* Fonts of main menu items */
		font-size:14px;	/* Font size of main menu items */
		height:15px;
		font-weight:bold; 	/* Height of main menu */
		position:relative;
		margin-top:20px;
			/* Don't change this position attribute */
		
	}
	#mainMenu a{
		padding-left:5px;	/* Spaces at the left of main menu items */
		padding-right:5px;	/* Spaces at the right of main menu items */
		font-weight:bold;
		/* Don't change these two options */
		position:absolute;
		color: #fff6c2;
		
		
			/* Change this value to -2px if you're not using a strict doctype */
	}
	#submenu{		
		font-family: Arial;	/* Font  of sub menu items */
			/* Background color of sub menu items */
		height:15px;
		color: #eedfd0;	
		width:100%; 
		margin-bottom:17px;
		margin-top:0px; !important; margin-top:5px;/* Don't change this option */
		
	}	
	#submenu div{
		white-space:nowrap;	/* Don't change this option */
		font-family:Arial;	/* 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: #eedfd0;	/* Text color */
		font-size:13px;
		font-weight:bold;
		line-height:16px;
		position:absolute;
		
	}
	/*
	Style attributes of active menu item 
	*/
	#mainMenu .activeMenuItem{
		/* Border options */
		/*background:url(/images/bgroll.gif) top center no-repeat;*/	
		color: #a20d4c;
		text-decoration:none;
		font-size:14px;
		width:150px;
		height:20px;
		font-weight:bold;
		font-style:italic;
		font-family:Arial;/* Background color */
		
	
	
		
		margin-left:15px;
		
		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: #2f0115;
		text-decoration:none;
		font-size:14px;
		width:150px;
		font-weight:bold;
		font-style:italic;
		font-family:Arial;/* Background color */
		margin-left:15px;
		margin-bottom:3px;
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}
	#submenu a{	
		font-family:Arial;	/* No underline on sub menu items - use text-decoration:underline; if you want the links to be underlined */
		text-decoration:none;
		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: #eedfd0;	/* Text color */
		font-size:13px;
		line-height:16px;
	}
	
	#submenu a:hover{
		color: #fff6c2;	/* Red color when the user moves the mouse over sub menu items */
	}
	 
