/* 
  -----------------------------------
  PopMenu Magic Style Sheet
  by Project Seven Development
  www.projectseven.com
  Menu Type: Horizontal
  Style Theme:0 -Basic Style
  -----------------------------------
  
  
   NOTE FROM KDS:
   Styles in this sheet will be intended to override the main.css.
   Anything that starts with "zzz" can be considered as "commented out", and can be removed by the client.
   
*/
#p7PMnav {
	zzzmargin: 0;
	zzzpadding: 0;
	zzztext-align:left;			/* overrides main.css */
	zzzmargin-left:32px;			/* overrides main.css */
	zzzfont:8pt Verdana, Arial, Helvetica, sans-serif;
}
/* Top level list items */
#p7PMnav li {
	zzzlist-style-type: none;
	zzzmargin: 0;
	zzzpadding: 0;	
	zzzbackground-color: #5C613A;
}
/* The sub-menu drop-down and/or flyout "boxes" */
#p7PMnav ul {
	zzzmargin: 0;
	zzzpadding: 0;
	position: absolute;
	left: -9000px;
	z-index: 10000;
	border-bottom:1px solid #c9b670;
	border-left:1px solid #c9b670;
	border-right:1px solid #c9b670;		
	background-color:#edeedb;			/* fill in any gaps between subitems with children*/

}
/* The menu links */
#p7PMnav a {
	display: block;
	zzztext-decoration: none;
	zzztext-align:left;
	zzzpadding: 8px 10px;
	zzzline-height:normal;
	zzzcolor: #FFFFFF;
}
/* KDS: individual list items within the subnav */
#p7PMnav ul li {
	text-align:left;
	zzzmargin:0;
	zzzpadding:0;
	zzzpadding-left:5px;
	background-color:#edeedb;
	text-indent:10px;
	border-top:1px solid #c9b670;
	vertical-align:bottom;			/* eliminate those pesky I.E. gaps!! */
}
/* KDS: added this style: */
#p7PMnav ul li a {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:11px;
	text-decoration:none;
	zzzcolor:#f9f6e0;
	zzztext-indent:3px;
}



/* separate styling for SUBMENU links -- hmmm, doesn't seem to have intended effect? see below
#p7PMnav ul a {
	zzzcolor:#5C613A;
	margin:0;
	padding-top:4px;
	padding-bottom:4px;
	padding-right:10px;
}
*/
/* KDS: hmm, this would appear to be the same as the previous style, but is more specific? and hence, works? */
#p7PMnav li ul li a {
	color:#554a31;
	margin:0;
	padding-top:6px;
	padding-bottom:6px;
	padding-right:10px;
}


/* hovers, actives, and focuses for all links */
#p7PMnav a:hover, #p7PMnav a:active, #p7PMnav a:focus {
}
/* hovers, actives, and focuses for just the submenu links */
#p7PMnav ul a:hover, #p7PMnav ul a:active, #p7PMnav ul a:focus {
	background-color:#e2dbb4;
}
/* KDS: this seems to be more specific?: */
#p7PMnav li ul li a:hover {
	color:#da1700;
	background-color:#e2dbb4;
}





/* The current page marker ("you are here") style */
/* KDS: override so that this effect only takes place on SUBMENU... */
/*
#p7PMnav .p7PMmark {
	color: #4c254d;
	font-weight:bold;
}
*/
#p7PMnav ul .p7PMmark {
	zzzcolor: #4c254d;
	font-weight:bold;
}



/* The trigger link */
#p7PMnav ul .p7PMtrg, #p7PMnav ul .p7PMon {
	background-image:  url(../images/p7PM_light_east.gif);
	background-repeat:	no-repeat;
	background-position: right center;
}
/* The active trigger link style */
#p7PMnav .p7PMon {
	zzzbackground-color: #5C613A;
	zzzcolor: #FFFFFF;
}
/* The submenu classes */
#p7PMnav .p7PMhide {
	left: -9000px;
}
#p7PMnav .p7PMshow {
	left: auto;
	z-index: 20000 !important;
}
/* Top level menu width */
#p7PMnav li {
	float: left;
}
#p7PMnav ul li {
	float: none;
}
#p7PMnav ul, #p7PMnav ul li {
	/*
	width:auto;				-- who said you could change me to AUTO!? -- I will destroy your functionality!
	*/
	width: 220px;
}

/* KDS: not using these... */
/*
#pmmcrumb {
	font-weight: bold;
	margin-bottom: 16px;
	color: #333333;
}
#pmmcrumb a, #pmmcrumb a:visited {
	font-weight: normal;
	color: #535FAC;
}
#pmmcrumb a:hover, #pmmcrumb a:active, #pmmcrumb a:focus {
	font-weight: normal;
	color: #333333;
}
*/

/* 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. */
#p7PMnav li {width: auto;}
