/*this controls the parent <ul> - the top level navigation items*/
#p7PMnav {
	height: 20px;
	margin: 0;
	width: 710px;
	float: left;
	padding: 0;

}
/* this removes the bullet point on the list items */
/* it also sets the margins and padding to zero on all list items*/
#p7PMnav li {
	list-style-type: none;
	margin: 0px;
	text-transform: none;
	font-size: small;
	font-weight: bold;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
	height: 20px;
	background-color: #0057A6;
}
/* this sets the background colour and look and feel of drop downs menu surrounding area */
#p7PMnav ul {
	background-color: #999999;
	/* don't touch these last three*/
	position: absolute;
	left: -9000px;
	z-index: 10000;
}
/*makes the primary nav li items stack horizontally*/
#p7PMnav li {
	float: left;
	}

/* this controls the formatting of the links themselves*/
#p7PMnav a {
	color: #FFFFFF;
	display: block;
	text-decoration: none;
}
/* this sets the colour of the mouseover links */

#p7PMnav a:hover {
	color: #64AA3A;
}


/* ------ the current page marker style ------ */
#p7PMnav .p7PMmark { 
	color: #64AA3A; 

	}


/* ------ the trigger link styles ------- */

/*the trigger link */
#p7PMnav ul .p7PMtrg, #p7PMnav ul .p7PMon {
	color: #64AA3A; 

}
/* the active trigger link style - this is the primary nav when you hover over it */
#p7PMnav .p7PMon {
	color: #FFFFFF;
}
/*the submenu classes */
/* hides the submenu items by sending them to the left 9000px*/
#p7PMnav .p7PMhide {
	left: -9000px;
}

#p7PMnav .p7PMshow {
	left: auto;
	z-index: 20000 !important;
}
/* stops the sub menu li's from floating left - keeps them vertical*/
#p7PMnav ul li {
	float: none;
}



/* 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;}
