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

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

	width:					110px;
	border-bottom:			none;
	background-color:		rgb(201,203,204);
	border-left:			9px solid white;
}

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

	float:					left;
	width:					100%;
}


ul.m1 li a
{
	/*
	display:				block;
	text-decoration:		none;


	height:					25px;
	line-height:			25px;

	padding:				0px 8px;

	white-space:			nowrap;
	
	font-family:			"Trebuchet MS", verdana,arial,sans serif;
	font-size:				11px;
	color:					black;
	*/
	display:			block;
	width:				auto;
	height:				28px;
	padding:			0px 8px;
	text-align:			center;
	line-height:		28px;
	white-space:		nowrap;
	font-family:		verdana,arial,sans serif;
	font-size:			9px;
	text-decoration:	none;
	color:				black;
}

ul.m1 a:hover,
ul.m1 a.highlight,
ul.m1 a.active
{
	background-color:	rgb(128,127,131);
	color:				white;
	font-weight:		bold;
}



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







