/*****************************************************************
File name:	main_pages_menu_layout_FF.css
Directory:	f:\MALLS\theintegralcenter\CSS FILES	
Description:	This CSS file provides menu classes and attributes
				for main pages in Firefox browsers
Contents:		I.	General Menu Classes
				II.	Menubar Classes

Work Required:	

Coded by: 	Project Seven Development
Edited by:	Zachary Smith
Created:	June 25, 2007

Comments Updated:	June 27, 2007
	By:		Z.S.
****************************************************************/

/*(original header)*/
/* 
  ------------------------------------
  PVII Menu CSS Express Drop-Down Menu
  by Project Seven Development
  www.projectseven.com
  ------------------------------------
*/

/***GENERAL MENU CLASSES***/
#container /*(not sure if necessary)*/
{
	margin: 0px;
	padding: 0px;
	width: 800px;
	margin: 0px auto;
	background-color: #587C90;
	border-bottom: solid 1px black;
}

#menuwrapper /*(box that contains menu)*/
{
	float			:right;
	margin-top		:-33px;
	height:30px;
	z-index:20;
}


.clearit /*(Not sure what this does...implemented at end of menu code)*/
{
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}

/***MENUBAR CLASSES***/  /*(don't edit these...at least not too much)*/
#p7menubar, #p7menubar ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
}

#p7menubar a {
	display: block;
	text-decoration: none;
	padding: 5px 20px 5px 10px;
	font-size: 12pt;
	background-color	:#B4C9CC;
	color				:#000000;
}


#p7menubar a.trigger {
	padding: 5px 16px 5px 10px;
	background-image: url(../RESOURCES/ART/arrow.gif);
	background-repeat: no-repeat;
	background-position: right center;
	border-left:2px solid #000000;
	border-top:2px solid #000000;
}


#p7menubar li {
	float: left;
	width: 9em;
}


#p7menubar li ul, #p7menubar ul li  {
	width: 15em;
}


#p7menubar ul li a  {
	color: #328387;
	border-right: 0;
	padding: 3px 12px 3px 16px;
	border-left:2px solid #000000;
	border-right:2px solid #000000;
	border-bottom:2px solid #000000;
}


#p7menubar li ul {
	position: absolute;
	display: none;
	background-color: #B4C9CC;
	border-top: 2px solid #000000;
}


#p7menubar li:hover a, #p7menubar a:focus,
#p7menubar a:active, #p7menubar li.p7hvr a {
	color: white;
	background-color: #328387;
}


#p7menubar li:hover ul, #p7menubar li.p7hvr ul {
	display: block;
}


#p7menubar li:hover ul a, #p7menubar li.p7hvr ul a {
	color: #000000;
	background-color: transparent;
}


#p7menubar ul a:hover {
	background-color: #328387!important;
	color: #FFFFFF!important;
}
/* The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width.
Do not edit this rule in any way. */
#p7menubar li {width: auto;}
