/***********************************************
** THIS IS WHERE YOU CHANGE COLORS/PADDING/STYLE new
***********************************************/
	
	/***********
	** SUB MENUS
	***********/
	.menulist ul a{						/*** THIS SETTING IS CRUCIAL!!!! ***/
		border:1px solid #586456;
		color:#FBB829;
		background-color:#0E4EAD;
		font-size:11px;
		font-weight:bold;
		text-decoration:none;
		width:150px;
		_width:220px;
	}
	.menulist ul a:hover, .menulist ul a.highlighted:hover, .menulist ul a:focus{
		background-color:#FBB829;
		color:#0B108C;
		text-decoration:none;
	}
	.menulist ul a.highlighted{
		background-color:#107FC9;
		color:#FBB829;
	}
	
/*******************************************
** THIS IS WHERE YOU CHANGE POSITIONING/SIZE 
*******************************************/

	/*****************************************************
	** All <ul> tags in the menu including the first level 
	*****************************************************/
	.menulist, .menulist ul{
		list-style:none;
		margin:0;
		padding:0;
		position:relative;
		z-index:1000000;
	}
	
	/*************************************************************************************** 
	** Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent 
	***************************************************************************************/
	.menulist ul{
		display:none;
		position:absolute;
		left:0;
		margin-top:35px; 
	}
	.menulist ul li{
		display:block;
		margin:0;
	}
	
	/**************************************************************************** 
	** Second and third etc. level submenus - position across from parent instead 
	****************************************************************************/
	.menulist ul ul{
		top:0; 
		margin-top:0;
		left:177px;
		_left:220px;
		width:290px;
	}
	.menulist ul li ul li a{
		width:330px;
		_width:350px;
	}

/********************************************
** GENERALLY NO NEED TO EDIT BELOW THIS POINT
********************************************/
	.menulist li{ float:left; display:block; position:relative; margin-right -1px; }
	.menulist ul li{ float:none; margin:0; margin-bottom:-1px; }
	.menulist ul>li:last-child{ margin-bottom:1px; /* Mozilla fix */ }
	.menulist a{ display:block; }
	.menulist a .subind{ display:none; }
	.menulist ul a .subind{ display:block; float:right; }
	.menulist a{ float:left; }
	.menulist ul a{ float:none; }
	.menulist a{ float:none; }
	*:first-child+html .menulist ul li{ float:left; width:100%; }
	* html .menulist ul li{ float:left; height:1%; }
	* html .menulist ul a{ height:1%; }