
	#submenu{
	font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Font  of sub menu items */
	background-color:#000000;	/* Background color of sub menu items */
	width:80%;	/* Don't change this option */
	padding-left: 100px;
	padding-top: 5px;
	height: 26px;
	}	
	#submenu div{
		white-space:nowrap;	/* Don't change this option */
		display:none;

	}
	/*
	Style attributes of active 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: #FFFFFF;	/* Text color */
		font-size:0.9em; 
	}
	
	#submenu a:hover{
		color: #0000CC;	/* Red color when the user moves the mouse over sub menu items */
	}
	
