
.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:			100;
	visibility:			hidden;
	width:				100px;
	border:				1px solid #333366;
	padding:			1px;
	background:			white;
	filter:				progid:DXImageTransform.Microsoft.Shadow(color="#777777", Direction=135, Strength=4)
						alpha(Opacity=100);
	-moz-opacity:		1.0;
}

.webfx-menu-empty {
	display:			block;
	border:				1px solid white;
	padding:			2px 5px 2px 5px;
	font-size:			8pt;
	font-family:		Arial, Verdana, Helvetica, Sans-Serif;
	color:				#333366;
}

.webfx-menu a {
	display:			block;
	width:				expression(constExpression(ieBox ? "100%": "auto"));	/* should be ignored by mz and op */
	height:				expression(constExpression("10px"));
	overflow:			visible;		
	padding:			2px 2px 2px 5px;
	font-size:			8pt;
	font-weight:		bold;
	font-family:		Arial, Verdana, Helvetica, Sans-Serif;
	text-decoration:	none;
	vertical-align:		middle;
	color:				#333366;
	border:				1px solid white;
}	

.webfx-menu a:visited,
.webfx-menu a:visited:hover {
	color:	#333366;
}

.webfx-menu a:hover, .webfx-menu a:visited:hover {
	border:			1px solid #333366;
	background:		#333366;
	color:			#ffffff;
}	

.webfx-menu a .arrow {
	float:			right;
	border:			0;
	width:			3px;
	margin-right:	3px;	margin-top:		4px;}

/* separtor */
.webfx-menu div {
	height:			0;
	height:			expression(constExpression(ieBox ? "2px" : "0"));
	border-top:		1px solid rgb(120,172,255);
	border-bottom:	1px solid rgb(234,242,255);
	overflow:		hidden;
	margin:			2px 0px 2px 0px;
	font-size:		0mm;
}

.webfx-menu-bar {
	font-family:	Arial, Verdana, Helvetica, Sans-Serif;
	font-size:		8pt;
	height:			20px;
	font-weight:	bold;
	padding:		expression(constExpression(ie50 ? "0px" : "2px"));
	padding-top:	0px;
	border:			0px solid red;
	margin-top:		expression(constExpression(ie ? "-10px" : "0px"));
}

.webfx-menu-bar a,
.webfx-menu-bar a:visited {
	border:				0px solid #333366;
	padding:			1px 5px 1px 5px;		
	color:				white;
	text-decoration:	none;
	height:				20px;
	width:				70px;
	vertical-align:middle;

	/* IE5.0 Does not paint borders and padding on inline elements without a height/width */
}

.webfx-menu-bar a:hover {
	color:					white;
	background-image:		url(../images/tab.active.png);
	background-repeat:		no-repeat;
	background-position:	expression(constExpression(ie ? "0px 10px" : "0px 0px"));
}


.webfx-menu-bar a .arrow {
	border:			0;
	float:			none;
	display:none;
}

