@charset "utf-8";
/* CSS Document */

/* Outer container for the main menu.  Sets the container to position relative and
	a high z-index to ensure that the main menu is always sitting over other AP elemetns
	the min-height and height declarations set the box's minimum height so that it shows
	in the template.  The !important is a IE6 hack.  IE6 thinks height = min-height and ignores
	the !important declaration.  Thus all browsers except IE6 get height auto and IE6 gets 30px */
#mainMenu {
	background-color:#3D3E3E;
	position: relative;
	z-index: 5000;
}

