/*---------------------------------------------------------------------------------------------------------
//	Menus
//-------------------------------------------------------------------------------------------------------*/
ul.m1,
ul.m1 ul
{
	position:				absolute;
	left:					180px;
	top:					0px;
	display:				none;

	list-style:				none;
	margin:					0px;
	padding:				0px;

	width:					180px;
	background-color:		white;
	margin-top:				-2px;
	background-image:		url(/images/menu-bg.gif);
	background-repeat:		repeat-x;
	opacity:				0.9;
	filter:					alpha(opacity=90);
	padding:				10px 0px;
	z-index:				100;
}

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

	float:					left;
	width:					100%;
}


ul.m1 li a
{
	display:				block;
	text-decoration:		none;
	text-align:				left;

	padding:				7px 10px 7px 10px;
	line-height:			13px;

	white-space:			nowrap;
	
	font-size:				10px;
	color:					black;
}

ul.m1 a:hover,
a.highlight,
a.highlight-active
{
	color:					#3f56cc;
}



/*	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 );
}








