/*	SOLPARTMENU overrides for the top menu.  SOLPARTMENU is rendered with nested tables.
	This is the outermost table.  This sets the overall size.
*/
.LeftMenu_MenuContainer
{	background-color: Transparent;
	margin: 0;
	overflow: hidden;
}

/*	Each menu item is rendered as a 1-by-1 table within the outer table.
	This style is applied to the <tr> element containing the item.  Since
    the menu items do not wrap across lines, the menu size uses absolute
    font sizes so that they don't scale with the rest of the page.
*/
tr.LeftMenu_MenuBar
{
  font-family: Tahoma, Arial, Helvetica, sans-serif; 
  font-size: 10pt; 
  font-style: normal;
}

/*	This <td valign="top"> contains the text of the menu item.  Padding must go here. */
.LeftMenu_MenuBar td
{
  cursor: pointer;
  cursor: hand;
}

/*	Dynamically applied to menu items which are not under the mouse.
*/
.LeftMenu_MenuItem
{ color: #323232;
  background-color: transparent;
  text-decoration: none;
}

/*	Dynamically applied to the menu item under the mouse.
*/
.LeftMenu_MenuItemSel
{ color: #084a9b;
  background-color: transparent;
  text-decoration: underline;
}


/* Statically applied to the root menu item corresponding to an ancector of
   the current page.
*/
.LeftMenu_MenuItemAncestor
{
}

/* Statically applied to the root menu item corresponding to the current page.
*/
.LeftMenu_MenuItemActive
{
}

/* Dynamically applied to the root menu item under the mouse.
*/
.LeftMenu_MenuItemHover
{
}

.LeftMenu_MenuIcon
{	cursor: pointer; 
	cursor: hand; 
	background-color: #f0f0f0;
	text-align: center; 
	width: 15; 
}

.LeftMenu_SubMenu
{	z-index: 1000; 
	cursor: pointer; 
	cursor: hand; 
	background-color: #85b9e6;
	border-bottom: #323232 1px solid;
	border-left: #323232 1px solid;
	border-top: #323232 1px solid;
	border-right: #323232 1px solid;
	filter:progid:DXImageTransform.Microsoft.Shadow(color='DimGray', Direction=135, Strength=3);
}


