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

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

	border-top:				1px solid darkgray;
	width:					180px;
}

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-top:				2px solid #BEBEBE;

	height:					19px;	/*	needed so IE can size the link correctly	*/
	line-height:			19px;

	padding:				0px 8px;

	white-space:			nowrap;
	
	background-color:		#9E0C03;

	background-image:		url( /site/images/nav/bg_menuitem.gif );
	background-repeat:		repeat-y;

	font-weight:			bold;
	font-size:				12px;
	color:					#aaaaaa;
}

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

ul.m1 li:first-child a
{
	border-top:				0px;
}


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







