/*---------------------------------------------------------------------------------------------------------
//	Menus
//-------------------------------------------------------------------------------------------------------*/
ul.m1,
ul.m1 ul
{
	position:				absolute;
	left:					125px;
	top:					0px;
	display:				none;

	list-style:				none;
	margin:					0px;
	padding:				0px 11px 0px 11px;

	background-color:		#fbfdfd;
	border:					1px solid #993300;
	margin-left:			6px;
	margin-top:				-1px;
}

ul.m1 li
{
	display:				block;
	position:				relative;
	margin:					0px;
	padding:				0px;

	float:					left;
	width:					100%;
}


ul.m1 li a
{
	display:				block;
	text-decoration:		none;
	border-bottom:			1px solid #993300;

	height:					26px;	/*	needed so IE can size the link correctly	*/
	line-height:			24px;
	white-space:			nowrap;
	font-size:				11px;
	color:					#993300;
	font-weight:			bold;
	margin-bottom:			-1px;
}

ul.m1 a:hover,
a.highlight,
a.highlight-active
{
	background-color:		#fff6a4;
}



/*	Makes arrow indicator for links with submenu	*/
a.showsub,
a.showsub:hover
{
	background-image:		url( /images/arrow0.gif );
	background-position:	center right;
	background-repeat:		no-repeat;
}

/*	Menu item mouseover	*/
a.showsub:hover
{
	background-image:		url( /images/arrow1.gif );
}







