	#mainMenu{
		background-color: #FFF;	/* Background color of main menu */
		font-family: tahoma;	/* Fonts of main menu items */
		font-size:10px;	/* Font size of main menu items */
		height:19px;/* Height of main menu */	
		text-align:center;	
		position:relative;/* Don't change this position attribute */
		text-decoration:none;
		width:104px;
	}
	#mainMenu a{
		padding-left:2px;	/* Spaces at the left of main menu items */
		padding-right:2px;	/* Spaces at the right of main menu items */
		font-weight:bolder;
		text-align:center;
		background-image:url(../images/white_but.gif);
		background-repeat:no-repeat;
		height:15px;
		width:104px;
		padding-top:4px;		/* Don't change these two options */
		position:absolute;
		bottom:-1px;
		text-decoration:none;	/* Change this value to -2px if you're not using a strict doctype */
	}
		
	#submenu{		
		font-family: tahoma;
		border-top:4px solid #fe830b;	/* Font  of sub menu items */
		background:#f4a65a;	/* Background color of sub menu items */
		border-bottom:#000000;
		border-bottom-style:solid;
		border-bottom-width:1px;
		height:30px;
		width:100%;	/* Don't change this option */
		
	}	
	#submenu div{
		white-space:nowrap;	/* Don't change this option */
		
	}
	/*
	Style attributes of active menu item 
	*/
	
	#mainMenu .activeMenuItem{
		/* Border options */
		padding-left:2px;	/* Spaces at the left of main menu items */
		padding-right:1px;	/* Spaces at the right of main menu items */
		font-weight:bolder;
		text-align:center;
		background-image:url(../images/blue_button.gif);
		background-repeat:no-repeat;
		height:15px;
		padding-top:4px;
		position:absolute;
		bottom:-1px;		
		cursor:pointer;	
		text-decoration:none;
		color:#FFFFFF;/* 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: #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-right:5px;	/* Space at the left of each sub menu item */
		padding-left:20px;		 /* Space at the right of each sub menu item */
		color: #000;	/* Text color */
		font-size:11px;
		font-weight:normal;
		background:url(../images/0037_bullet.png) no-repeat left;
	}
	
	#submenu a:hover{
		color: #FF0000;
		padding-left:20px;	/* Space at the left of each sub menu item */
		padding-right:5px;
		background:url(../images/0037_bullet.png) no-repeat left;	/* Red color when the user moves the mouse over sub menu items */
	}

