/* menuSub was added so submenus act differently than main menu */

table.menu	{
	position: absolute;
	border: 1px solid white;
	cursor: pointer;
	cursor: hand;
	visibility: hidden;
}

table.menuSub	{
	position: absolute;
	border: 1px solid white;
	cursor: pointer;
	cursor: hand;
	visibility: hidden;
}

#mainmenu	{
	position:static;
}
table.menu td	{
	color: #B22222;            /* Must be the same as tdColor in the menu_script.js */
/* 	background-color: #FFFFFF; */  /* Must be the same as tdBgColor in the menu_script.js */
	border: 0px;
	padding: 0px 8px 2px;
	font-family: Arial;
	font-size: 10pt;
	font-weight: bold;
	white-space: nowrap;
}

table.menuSub td	{
	color: #B22222;            /* Must be the same as tdColor in the menu_script.js */
 	background-color: #FFFFFF;   /* Must be the same as tdBgColor in the menu_script.js */
	border: 0px;
	padding: 0px 8px 2px;
	font-family: Arial;
	font-size: 10pt;
	font-weight: bold;
	white-space: nowrap;
}
#mainmenu td	{
	padding-right: 8px;
}
span.arrow	{
	position: relative;
	left: 92%;
	font-family: "Wingdings 3";
	font-size: 8pt;
	margin: 0px;
}



