/* CSS Document - Hafner Vineyard - Nav */
/* 
  -----------------------------------
  PopMenu Magic Style Sheet
  by Project Seven Development
  www.projectseven.com
  Menu Type: Horizontal
  Style Theme:0 -Basic Style
  -----------------------------------
*/

#p7PMnav {
	margin:0;
	padding:0;
}
/* Top level list items */
#p7PMnav li {
	list-style-type: none;
	margin:0;
	padding:0;
}
/* The menu links */
#p7PMnav a {
	display: block;
	text-decoration: none;
	color: #918576;
}

/* The sub-menu drop-down and/or flyout "boxes" */
#p7PMnav ul {
	margin:0 ;
	position: absolute;
	left: -9000px;
	z-index: 10000;
	border:2px solid #b5b1ae;
	border-top:0;
}
/* Added by KDS? This would be for the individual list items within the subnav*/
#p7PMnav ul li {
	text-align:left;
	margin:;
	list-style-type:none;
	background:#FFFFFF url(none) no-repeat;
	vertical-align:bottom;			/* eliminate those pesky I.E. gaps!! */
}
/* KDS: added this style: */
#p7PMnav ul li a {
	color:#918576;
}

/* separate styling for SUBMENU links */
/* KDS: supplied P7 selector isn't specific enough, adding our own more specific element to the following: */

#p7PMnav ul a, #p7PMnav li ul li a {
	padding: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 li ul li a:hover {
	color: #FFFFFF;
	background-color:#918576;
	padding:10px;
}
/* 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 {
	font-weight:bold;
}

/* The trigger link */
#p7PMnav ul .p7PMtrg, #p7PMnav ul .p7PMon {
	background-image:  url(../images/p7PM_dark_east.gif) !important;
	background-repeat:	no-repeat;
	background-position: right center;
}
/* The active trigger link style */
#p7PMnav .p7PMon {
	color: #ad7843;
}
/* 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: 200px;
}

/* 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;}




