
	#mainMenu{
		/*background-color: #FFF;	 Background color of main menu */
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Fonts of main menu items */
		font-size:13px !important;	/* Font size of main menu items */
		/*border-bottom:1px solid #000000;	 Bottom border of main menu */
		height:30px;	/* Height of main menu */
		position:relative;	/* Don't change this position attribute */
		margin-bottom:1px;
	
	}
	#mainMenu a{
		color:#FFFFFF !important;
		padding-left:10px;	/* Spaces at the left of main menu items */
		padding-right:10px;	/* Spaces at the right of main menu items */
		font-weight:bold;
		/* Don't change these two options */
		position:absolute;
		bottom:-1px;
		line-height:25px;
		background-image:url('../images/menu/green_tab.png');
		background-repeat:no-repeat;
		width:110px;
		text-align: center;
	/*		margin-left:5px !important;*/
		margin-right:0px !important;
		margin-bottom:1px;
		font-size:13px !important;
	}
	#submenu{
	font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Font  of sub menu items */
	/*background-color:#CC6600;	 Background color of sub menu items */
	width:100%;	/* Don't change this option */
	background-image:url('../images/menu/submenubg.gif');
	background-repeat:repeat-x;
	line-height: 31px;
	}	
	#submenu div{
		white-space:nowrap;	/* Don't change this option */
		
	}
	/*
	Style attributes of active menu item 
	*/
	#mainMenu .activeMenuItem{
		/* Border options */

		
		background-image:url('../images/menu/gri_tab.png');
		background-position:bottom left;
		background-repeat:no-repeat;
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
		
		margin-bottom:-1px !important;
		line-height: 27px !important;
	}
	#mainMenu .activeMenuItem img{
		position:absolute;
		bottom:0px;
		right:0px;
	}
	/*
	Style attributes of inactive menu items
	*/
	#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:15px;	/* Space at the left of each sub menu item */
		padding-right:5px;	/* Space at the right of each sub menu item */
		color: #333;	/* Text color */
		font-size:0.9em; 
		background-image: url(../images/menu/bull_off.png);
		background-repeat:no-repeat;
		background-position: left;
	}
	
	#submenu a:hover{
		color: #215405;	/* Red color when the user moves the mouse over sub menu items */
		background-image: url(../images/menu/bull.png);
		background-repeat:no-repeat;
		background-position: left;
		
	}