/* *** MODIFICATIONS TO THE ORIGINAL FILE *****

	- MODIF_1
		The table container has a Z-INDEX higher than 1
		to make sure it will be on top when the menu opens.
		
	- MODIF_2
		The table container has a top value of -1px to remove an
		unwanted line on top of the header.
	
	- MODIF_3
		.MMMIFVStyleMMMenu[####] height property changed to 
		the height of a menu item (from 16px to 24px) to 
		make sure the menu looks fine in IE.
		
	- MODIF_4
		.MMMIVStyleMMMenu[####] height property changed to 				<-- Be carefull not to confuse with MODIF_3 (the style name is different)
		the height of a menu item (from 16px to 24px) to
		make sure the menu looks fine in IE.
		
	- MODIF_5
		Added an IE Fix for the #FWTableContainer758539466
*/

td img {
/* Another Mozilla/Netscape bug with making sure our images display correctly */
	display: block;
}

#FWTableContainer758539466 {
/* The master div to make sure that our popup menus get aligned correctly.  Be careful when playing with this one. */
	position:relative;
	margin:0px;
	width:800;
	height:254px;
	text-align:left;
	
	/* TO MAKE SURE THE MENU IS ON TOP
		 REFERENCE: MODIF_1 */	
	z-index: 10;
	
	/* TO REMOVE THE LITTLE WHITE LINE
		 REFERENCE: MODIF_2 */	
	top: -1px;
}

* html #FWTableContainer758539466 { background:#000000; } /* IE FIX MODIF_5 */


