	/***********************************************************************************************
	
	Copyright (c) 2005 - Alf Magne Kalleland post@dhtmlgoodies.com
	
	Get this and other scripts at www.dhtmlgoodies.com
	
	You can use this script freely as long as this copyright message is kept intact.
	
	***********************************************************************************************/

	#mainMenu{
		overflow:hidden;
		/*background-color: #5373BF;*/	/* Background color of main menu */
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
		font-size:0.9em;	/* Font size of main menu items */
		position:relative;	/* Don't change this position attribute */
		top:-20px;
		height:20px;
	}

	#mainContainer{
		margin:0 auto;		
	}

	#mainMenu a{
		font-size:15;
		padding-left:5px;	/* Spaces at the left of main menu items */
		padding-right:5px;	/* Spaces at the right of main menu items */
		/* Don't change these two options */
		color:black;
		position:absolute;
		bottom:-2px;	/* Change this value to -2px if you're not using a strict doctype */
	}
	#submenu{		
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
		width:100%;	/* Don't change this option */
		top:-20px;
		height:210px;
		position:relative;
	}	
	/*
	Style attributes of active menu item 
	*/
	#mainMenu .activeMenuItem{
		/* Border options */
		border-left:1px solid #000000;

		border-top:1px solid #000000;
		border-right:1px solid #000000;		
		background-color: #5373BF;	 /*Background color #5373BF */
		
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}
	/*
	Style attributes of inactive menu items
	*/
	#mainMenu .inactiveMenuItem{	
   filter:alpha(opacity=40);
   -moz-opacity:0.4;
   opacity: 0.4;	
		color: #000;	/* Text color */
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}
































