/*---------------------------------------------------------------------------------------------------------
//	Menus
//-------------------------------------------------------------------------------------------------------*/
ul.m1,
ul.m1 ul
{
	position:				absolute;
	left:					180px;
	top:					0px;
	z-index:				5000;
	display:				none;

	list-style:				none;
	margin:					0px;
	padding:				0px 0px 9px 0px;

	border-top:				1px solid white;

	border-radius:			0px 0px 4px 4px;
	-moz-border-radius:		0px 0px 4px 4px;
	-webkit-border-radius:		0px 0px 4px 4px;

	-webkit-border-bottom-left-radius:		4px;
	-webkit-border-bottom-right-radius:		4px;
	
	width:					180px;
	background-color:		#88be5b;
}

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 #b8d89d;

	height:					24px;	/*	needed so IE can size the link correctly	*/
	line-height:			24px;

	padding:				0px 16px;

	white-space:			nowrap;
	
	font-weight:			bold;
	font-size:				12px;
	color:					white;
}

ul.m1 a:hover,
a.highlight,
a.highlight-active
{
	background-color:		#68a63e;important;
	color:					white!important;
}



/*	Makes arrow indicator for links with submenu	*/
a.showsub,
a.showsub:hover
{
	background-image:		url( /site/images/arrow0.gif );
	background-position:	center right;
	background-repeat:		no-repeat;
}

/*	Menu item mouseover	*/
a.showsub:hover
{
	background-image:		url( /site/images/arrow1.gif );
}







