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

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

	width:               180px;
	z-index:             1000;
	cursor: pointer;
}

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

	float:               left;
	width:               100%;
}


ul.m1 li a
{
	display:             block;
	background-color: black;
	text-decoration:     none;

/*	border-bottom:     1px solid darkgray;
*/
	height:              21px;	/*	needed so IE can size the link correctly	*/
	line-height:         21px;

	padding:             0px;

	white-space:         nowrap;
	
	font-family:         verdana,arial,sans-serif;
	font-size:           10px;
	color:               #aaa;
	z-index:             1010;
	cursor: pointer;
}

ul.m1 a:hover,
a.highlight,
a.highlight-active
{
/*	background-color:  rgb(119,119,119)!important;
*/	color:             #ccc!important;
}



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







