	#mainMenu{
		/*background-color: #999999;*/
		background-color: transparent; 	/* opacity:0.; filter: alpha(opacity=10); /* Background color of main menu */
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Fonts of main menu items */
		font-size:1em;	/* Font size of main menu items */
		
		border-bottom:1  solid #000000; /*transparent;	/* Bottom border of main menu */
		height:33px;	/* Height of main menu */		
		position:relative;	/* Don't change this position attribute */
		visibility: hidden;
		
	}
	#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;
		bottom:-2px;
		
		
	}
	#submenu{		
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Font  of sub menu items */
		font-size:1em;	/* Font size of main submenu items */
		
		border-top: 2px solid black;
		background-color: #A7ADA8;
		/*background-image: url(../img/bg.jpg); background-repeat:repeat-x; top:left;*/
		/*background-color: transparent; *//*opacity:0.3; filter: alpha(opacity=30);	/* Background color of sub menu items */
		
		visibility: hidden;
		width:100%;	/* Don't change this option */
		

		
	}
	
	html>body #clearmenu{ /* non IE browsers menu bottom spacing */
	margin-bottom: 2px;
	}
	
	#submenu div{
		white-space:nowrap;	/* Don't change this option */
		
	}
	/*
	Style attributes of active menu item 
	*/
	#mainMenu .activeMenuItem{
		/* Border options */
        /*border-bottom:1px solid #ffffff;*/
		border-left:1px solid #000000;
		border-top:1px solid #000000; 
		border-right:1px solid #000000;		
		background-color: #A7ADA8; 
		/*background-image: url(../img/bg.jpg); background-repeat:repeat-x; top:left;*/
		/*background-color: transparent;	/* Background color */
		
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}
	/*
	Style attributes of inactive menu items
	*/
	#mainMenu .inactiveMenuItem{		
		color: #ffffff;	/* 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:5px;	/* Space at the left of each sub menu item */
		padding-right:5px;	/* Space at the right of each sub menu item */
		color: #000000;	/* Text color */
		
	}
	
	#submenu a:hover{
		color:#9D0000; font-weight:bold;	/* Red color when the user moves the mouse over sub menu items */
		border-right: 1px dashed white;
		border-left: 1px dashed white;
		
	}

#mainMenu a:link {text-decoration:none; color:#ffffff; font-size:100%;}
#mainMenu a:active { text-decoration:none; color:#ffffff; font-size:100%;}
#mainMenu a:visited { text-decoration:none; color:#ffffff; font-size:100%;}