/*---------------------------------------------------------------------------------------------------------
//	Menu common properties
//-------------------------------------------------------------------------------------------------------*/
ul.m1,
ul.m1 ul
{
	list-style:				none;
	margin:					0px;
	padding:				0px;

	/*	Default menu width	*/
	width:					 140px;

	background-color:		white;
	border-top:				11px solid #082F59;
}

ul.m1 li
{
	display:				block;
	position:				relative;
	margin:					0px;
	padding:				0px;

	/*	IE hack	*/
	/*	prevents size of item from changing when submenu appears	*/
	float:	left;
	width:	100%;
}

ul.m1,
ul.m1 li ul
{
	position:				absolute;
	top:					0px;
	display:				none;

	/*	Default menu width (position the submenu)	*/
	left:					140px;
}


ul.m1 li a
{
	display:				block;
	text-decoration:		none;
	white-space:			nowrap;

	height:					22px;
	padding:				0px 12px;
	line-height:			22px;
	font-size:				10px;
	color:					#B1AC69;
	background-color:		#F7F9EB;  /* or F0F3D8 or E9EDC4 */
}

/*---------------------------------------------------------------------------------------------------------
//	1st level menu custom properties
//-------------------------------------------------------------------------------------------------------*/
ul.m1
{
	width:					140px;
}

li.i1
{
}

ul.m1 li a
{
	display:					block;
	text-decoration:			none;
	border-bottom:				1px solid #B1AC69;
	font-family:				verdana,sans-serif;
	font-weight:				bold;
}

ul.m1 a:hover,
a.highlight,
a.highlight-active
{
	background-color:			#B1AC69;
	color:						white!important;
}

/*---------------------------------------------------------------------------------------------------------
//	2nd level menu custom properties
//-------------------------------------------------------------------------------------------------------*/
ul.m2
{
	/*	Default menu width	*/
	width:					200px!important;

	border-top:				0px!important;
}

ul.m2 li a
{
}
li.i2
{
}





