
.webfx-menu, .webfx-menu * {
	/*
	Set the box sizing to content box
	in the future when IE6 supports box-sizing
	there will be an issue to fix the sizes

	There is probably an issue with IE5 mac now
	because IE5 uses content-box but the script
	assumes all versions of IE uses border-box.

	At the time of this writing mozilla did not support
	box-sizing for absolute positioned element.

	Opera only supports content-box
	*/
	box-sizing:			content-box;
	-moz-box-sizing:	content-box;
}

.webfx-menu {
	position:			absolute;
	z-index:			300;
	visibility:			hidden;
	width:				150px;	
	border:				1px solid #B3B3B3;
	padding:			1px;
	background:			white;
}

.webfx-menu-empty {
	display:			block;
	border:				1px solid white;	
	padding:			2px 2px 2px 2px;
	font-size:			11px;
	font-family:		Tahoma, Verdan, Helvetica, Sans-Serfif;
	color:				black;
}

.webfx-menu a 
{
	width:				150px;	
	text-align:			left;
	display:			block;
	overflow:			visible;		
	padding:			2px;
	font-size:			11px;
	font-family:		Tahoma, Verdana, Helvetica, Sans-Serfif;
	text-decoration:	none;
	vertical-align:		center;
	color:				black;
	border:				1px solid white;
}	

.webfx-menu a:visited,
.webfx-menu a:visited:hover {
	color:	black;
}

.webfx-menu a:hover {
	color:			black;
	background:		#E9ECEF;
	border:			1px solid #BABABA;
}	

/* separtor */
.webfx-menu div {
	width:			150px;	
	border-bottom:	1px solid #BABABA;
	overflow:		hidden;
	font-size:		0mm;
	margin-bottom:	2px;
}

.webfx-menu-bar {
	padding:		2px;
	font-family:	Verdana, Helvetica, Sans-Serif;
	font-size:		11px;
}

.webfx-menu-bar a,
.webfx-menu-bar a:visited,
.webfx-menu-bar a:active,
.webfx-menu-bar a:focus {
	overflow:			visible;		
	padding:			3px;
	padding-left:		6px;
	padding-right:		6px;
	font-size:			11px;
	font-family:		Tahoma, Verdana, Helvetica, Sans-Serfif;
	text-decoration:	none;
	vertical-align:		center;
	color:				black;
	border:				1px solid #E9ECEF;
	border-left:		1px solid #BABABA;
}

.webfx-menu-bar a:hover {
	color:			black;
	background:		#E9ECEF;
	border:			1px solid #BABABA;
}
