/* 
  -----------------------------------
  PopMenu Magic Style Sheet
  by Project Seven Development
  www.projectseven.com
  Menu Type: Horizontal
  Style Theme:0 -Basic Style
  -----------------------------------
*/
#p7PMnav {
	float: right;
	padding-right:25px;
	list-style: none;
	background: url(../ui/main_nav_bg.gif) center top no-repeat #014b00;
}
#p7PMnav li {
	float: left;
	font-size: 90%;
	margin-right: 5px;
	list-style-type: none;
}
#p7PMnav li li {
	font-size:100%; /* fixes problem of font getting too small in nested submenus */
}
#p7PMnav ul {
	margin: 0;
	padding: 4px 10px;
	background-color: #014b00;
	border: 2px solid #fff;
	border-top:none;
	position: absolute;
	left: -9000px; /* hide submenus by default, javascript shows them on rollover */
	z-index: 10000 !important;
}
#p7PMnav ul ul {
	border-top: 2px solid #fff; /* adds in top border for nested sub menu flyouts */
}
#p7PMnav a {
	display: block;
	padding: 10px 8px 10px 12px;
	color: #fff;
	text-decoration: none;
	background: url(../ui/main_nav_pipe.gif) left no-repeat;

	line-height:1; /* needed? */
}
#p7PMnav a.first {
	background: none;
}
#p7PMnav ul li {
	padding: 0;
}
#p7PMnav ul li a {
	color: #fff;
	line-height:120%;
	padding: 6px 5px;
	background:none;
	/*border-bottom: 1px dotted #5c85ad;*/
}
#p7PMnav ul li a.last {
	border-bottom:none;
}
#p7PMnav a:hover, #p7PMnav a:active, #p7PMnav a:focus {
	letter-spacing: .01px;
	color: #d69600;
	/*background: url(../ui/nav_box_over.gif) #fff no-repeat center left;*/
}
#p7PMnav ul li a:hover {
	color:#d69600;
	background:none;
}

/* ------ the current page marker style ------ */
#p7PMnav .p7PMmark {
	color: #d69600;
	font-weight: bold;
}
/* ------ the trigger link styles ------- */

/*the trigger link */
#p7PMnav ul .p7PMtrg, #p7PMnav ul .p7PMon {
	background-image:  url(../ui/img/p7PM_dark_east.gif);
	background-repeat:	no-repeat;
	background-position: right center;
}
/* the active trigger link style */
/* this is the parent link when a drop down menu appears */
#p7PMnav .p7PMon {
	/*background-color: #3a5774;*/
	color: #d69600;
}
/*the submenu classes */

#p7PMnav .p7PMhide {
	left: -9000px;
}
#p7PMnav .p7PMshow {
	left: auto;
	z-index: 20000 !important;
}
/* Top level menu width */
#p7PMnav li {
	float: left;
}
/* must give this a width or doesn't render correctly in IE6 */
/* AND, multi-word links must use &nbsp; for spaces or links wrap in IE6 */
* html #p7PMnav li {
	width:1em;
}

#p7PMnav ul li {
	float: none;
}
/* Width for drop down menus */
#p7PMnav ul, #p7PMnav ul li {
	width: 170px;
}