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

	list-style:  none;
	margin:      0px;
	padding:     0px;
	width:       500px;
	padding-top: 6px;
	float:       left;
}

ul.m1 li
{
	height:		 32px;
	position:    relative;
	margin:      0px;
	padding:     0px;
	float:       left;
}


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

	height:					32px;	/*	needed so IE can size the link correctly	*/
	line-height:			32px;
	vertical-align: center;

	padding:				0px 8px;

	white-space:			nowrap;
	
	font-family:			georgia, serif;
	font-size:				12px;
	color:					#431D04;
	font-weight: bold;
	margin-right:1px;
}

ul.hover-active, ul.active
{
	display: block;
}

ul.m1 a:hover,
ul.m1 li.active a
{
	background-color:		#a65b09!important;
	color:					white!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 );
}








