/*---------------------------------------------------------------------------------------------------------
//	Menu common properties
//-------------------------------------------------------------------------------------------------------*/
ul.m1,
ul.m1 ul
{
	list-style:				none;
	margin:					0px;
	padding:				0px;

	/*	Default menu width	*/
	width:					 140px;
}

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

	/*	IE hack	*/
	/*	prevents size of item from changing when submenu appears	*/
	float:	left;
	width:	100%;
}

ul.m1,
ul.m1 li ul
{
	position:				absolute;
	top:					0px;
	display:				none;

	/*	Default menu width (position the submenu)	*/
	left:					140px;
}


ul.m1 li a
{
	display:				block;
	text-decoration:		none;
	white-space:			nowrap;

	height:					20px;
	padding:				0px 12px 0px 3px;

	line-height:			20px;
	font-family:			lucida sans,verdana,sans-serif;
	font-size:				12px;
	color:					white;
}

/*---------------------------------------------------------------------------------------------------------
//	1st level menu custom properties
//-------------------------------------------------------------------------------------------------------*/
ul.m1
{
	width:					140px;
	border-bottom:			0px solid #188CAB;
	border-left:			14px solid #188CAB;
	background-color:		#188CAB;
	opacity:				.90;
	padding:				5px 0px;
}

li.i1
{
}

ul.m1 li a
{
	display:					block;
	text-decoration:			none;
	color:						white;
}

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

/*---------------------------------------------------------------------------------------------------------
//	2nd level menu custom properties
//-------------------------------------------------------------------------------------------------------*/
ul.m2
{
	background-color:		#D67513;

	/*	Default menu width	*/
	width:					200px!important;

	margin-top:				0px!important;
	border-top:				5px solid #D67513;
	border-bottom:			5px solid #D67513;
}

ul.m2 li a
{
	padding:				0px 15px;
	color:					white!important;
}
li.i2
{
}
ul.m2 a:hover
{
	background-color:			#D67513;
	color:						white!important;
}


#menublock
{
	border-right: 1px solid red;
}