
/* Menu size */
.tdMenuBar{
	width: 760px;
	height: 19px;
	padding: 0px;
	margin: 0px;
	border: 0px;
}

.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;
}


/* dropdown Menu */
.webfx-menu {
	position:			absolute;
	z-index:			100;
	visibility:			hidden;
	width:				100px;	
	border:				1px solid;
	padding:			0px;
}

/* ???? */
.webfx-menu-empty {
	display:			block;
	border:				1px solid white;	
	padding:			1px 5px 1px 5px;
	font-size:			10px;
	font-family:		Tahoma, Verdana, Helvetica, Sans-Serfif;
	color:				black;
}

.webfx-menu a {
	display:			block;
	width:				expression(constExpression(ieBox ? "100%": "auto"));	/* should be ignored by mz and op */	
	height:				expression(constExpression("1px"));
	overflow:			visible;		
	padding:			2px 0px 2px 5px;
	font-size:			10px;
	font-family:		Arial, Tahoma, Verdan, Helvetica, Sans-Serfif;
	text-decoration:	none;
	vertical-align:		center;
	border:				0px;}	

.webfx-menu a .arrow {
	float:			right;
	border:			0;
	width:			3px;
	margin-right:	3px;	
	margin-top:		4px;}

.webfx-menu a:hover {
	border:			0px solid;
}	

/* Espaço entre texdo do link e os [] no menu */
.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;
}


/* class da barra onde esta o menu */
.webfx-menu-bar
{
	vertical-align: middle;
	font-family:	Arial, Tahoma, Verdana, Helvetica, Sans-Serif;
	font-weight:	bold;
	font-size:		10px;
	height:			19px;
	/*padding:		expression(constExpression(ie50 ? "0px" : "2px"));*/
	padding:		0 0 0 3;
	z-index:		150;
/*	white-space:nowrap;*/
}

.webfx-menu-flags
{
	vertical-align:bottom;	
	height:			19px;
	white-space:nowrap;
}

.webfx-menu-flags a,
.webfx-menu-flags a:visited
{
	border:				0px;
	padding:			1px 1px 1px 1px; /* pading a volta do link (a branco) */		
}


.webfx-menu-bar a,
.webfx-menu-bar a:visited 
{
	vertical-align: middle;
	border:				0px;
	padding:			0px 3px 0px 3px; /* pading a volta do link (a branco) */		
	text-decoration:	none;
	/* IE5.0 Does not paint borders and padding on inline elements without a height/width */
	height:		expression(constExpression(ie50 ? "17px" : "auto"));
}

.webfx-menu-bar a:hover,
 {
/*	border-left:	1px solid rgb(234,242,255);
	border-right:	1px solid rgb(0,66,174);
	border-top:		1px solid rgb(234,242,255);
	border-bottom:	1px solid rgb(0,66,174);*/
}

.webfx-menu-bar a {
	float:			none;
}

.webfx-menu-bar a:active, 
.webfx-menu-bar a:focus
{
	vertical-align: middle;
	-moz-outline:	none;
	outline:		none;
	/*
		ie does not support outline but ie55 can hide the outline using
		a proprietary property on HTMLElement.
	*/	
	ie-dummy:		expression(this.hideFocus=true);		
	border:	0px;
}

/* barra negra do menu */
#webfx-menu-bar-1{
	height:			1px;
	font-size:		0;
	overflow:		hidden;
	padding:		0;
}

